#include <WebElement.h>
Public Member Functions | |
std::string | get_pix_left () |
std::string | get_pix_top () |
std::string | get_url () |
virtual void | printHTML (xgi::Output *out)=0 |
WebElement (std::string the_url, std::string top, std::string left) | |
virtual | ~WebElement () |
Private Attributes | |
std::string | pix_left |
position in pixels (from left) | |
std::string | pix_top |
position in pixels (from top) | |
std::string | url |
The url of the application. |
Definition at line 8 of file WebElement.h.
WebElement::WebElement | ( | std::string | the_url, |
std::string | top, | ||
std::string | left | ||
) | [inline] |
virtual WebElement::~WebElement | ( | ) | [inline, virtual] |
Definition at line 28 of file WebElement.h.
{ }
std::string WebElement::get_pix_left | ( | ) | [inline] |
Definition at line 38 of file WebElement.h.
References pix_left.
Referenced by ConfigBox::printHTML(), GifDisplay::printHTML(), HTMLLink::printHTML(), Navigator::printHTML(), ContentViewer::printHTML(), Button::printHTML(), and Select::printHTML().
{ return pix_left; }
std::string WebElement::get_pix_top | ( | ) | [inline] |
Definition at line 37 of file WebElement.h.
References pix_top.
Referenced by ConfigBox::printHTML(), GifDisplay::printHTML(), HTMLLink::printHTML(), Navigator::printHTML(), ContentViewer::printHTML(), Button::printHTML(), and Select::printHTML().
{ return pix_top; }
std::string WebElement::get_url | ( | ) | [inline] |
Definition at line 32 of file WebElement.h.
References url.
Referenced by ConfigBox::printHTML(), Button::printHTML(), and Select::printHTML().
{ return url; }
virtual void WebElement::printHTML | ( | xgi::Output * | out | ) | [pure virtual] |
Implemented in Button, ConfigBox, ContentViewer, GifDisplay, HTMLLink, Navigator, and Select.
std::string WebElement::pix_left [private] |
position in pixels (from left)
Definition at line 17 of file WebElement.h.
Referenced by get_pix_left(), and WebElement().
std::string WebElement::pix_top [private] |
position in pixels (from top)
Definition at line 15 of file WebElement.h.
Referenced by get_pix_top(), and WebElement().
std::string WebElement::url [private] |
The url of the application.
Definition at line 13 of file WebElement.h.
Referenced by get_url(), and WebElement().