SCV  4.2.1
Simple Components for Visual
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
scv::Component Class Referenceabstract

#include <Component.h>

Inheritance diagram for scv::Component:
scv::SCVCallbacks scv::Canvas scv::GenericTree scv::InternalFrame scv::Label scv::Panel scv::ScrollComponent scv::Separator scv::Slider scv::TabbedPane scv::TextBox

Public Types

enum  Type {
  NONE, PANEL, COLORPICKER, PROGRESSBAR,
  SCROLL, SLIDER, SPINNER, BUTTON,
  CHECKBOX, RADIOBUTTON, TOGGLEBUTTON, TEXTFIELD,
  TEXTBOX, SEPARATOR, WINDOW, MENUBAR,
  TABBEDPANE, SCROLLCOMPONENT, IMAGE, TABLE,
  COMBOBOX, CANVAS, TREEVIEW, LABEL,
  CONTEXTMENU, GENERICTREE, NOFWIDGETS
}
 
typedef std::list< Component * > List
 

Public Member Functions

 Component (const scv::Point &p1, const scv::Point &p2)
 
virtual ~Component (void)
 
virtual Point getRelativePosition (void) const
 
virtual void setRelativePosition (const Point &position)
 
virtual Point getAbsolutePosition (void) const
 
virtual void setAbsolutePosition (const Point &position)
 
virtual int getWidth (void) const
 
virtual void setWidth (int width)
 
virtual int getHeight (void) const
 
virtual void setHeight (int height)
 
virtual Point getSize (void) const
 
virtual void setSize (int width, int height)
 
virtual void setMinimumSize (const scv::Point &size)
 
virtual Point getMinimumSize (void) const
 
virtual void setPreferredSize (const scv::Point &size)
 
virtual Point getPreferredSize (void) const
 
virtual void setMaximumSize (const scv::Point &size)
 
virtual Point getMaximumSize (void) const
 
virtual bool isOvered (void) const
 
virtual bool isHolded (void) const
 
virtual bool isDragging (void) const
 
virtual bool isResizing (void) const
 
virtual bool isFocused (void) const
 
virtual void setDraggable (bool state)
 
virtual bool isDraggable (void) const
 
virtual void setResizable (bool state)
 
virtual bool isResizable (void) const
 
virtual void setVisible (bool state)
 
virtual bool isVisible (void) const
 
ContextMenugetContextMenu (void) const
 
virtual void registerContextMenu (ContextMenu *contextMenu)
 
virtual void unregisterContextMenu (void)
 
virtual bool isInside (const Point &evtPosition) const
 
virtual bool getCallbacksStatus (void) const
 
virtual void setCallbacksStatus (bool state)
 
virtual Scissor::Info getParentScissor (void) const
 
virtual Scissor::Info getScissor (void) const
 
virtual void processMouse (const scv::MouseEvent &evt)
 
virtual void processKey (const scv::KeyEvent &evt)
 
virtual void display (void)=0
 
Type getType (void)
 
void setType (Type type)
 
void setParent (Component *parent)
 
ComponentgetParent (void) const
 
const Component::ListgetChildren (void) const
 
virtual void addChild (Component *object)
 
virtual void removeChild (Component *object)
 
virtual void removeAllChild (void)
 
virtual ComponentgetChild (int index) const
 
void pullChildToTop (Component *child)
 
bool hasChild (Component *child) const
 
- Public Member Functions inherited from scv::SCVCallbacks
virtual ~SCVCallbacks ()
 
virtual void onMouseClick (const scv::MouseEvent &evt)
 
virtual void onMouseHold (const scv::MouseEvent &evt)
 
virtual void onMouseOver (const scv::MouseEvent &evt)
 
virtual void onMouseUp (const scv::MouseEvent &evt)
 
virtual void onMouseWheel (const scv::MouseEvent &evt)
 
virtual void onKeyPressed (const scv::KeyEvent &evt)
 
virtual void onKeyUp (const scv::KeyEvent &evt)
 
virtual void onSizeChange (void)
 
virtual void onPositionChange (void)
 

Public Attributes

Component::List _children
 

Protected Types

enum  Side { LEFT, RIGHT, TOP, BOTTOM }
 

Protected Member Functions

void setResizingCursor (void)
 
bool isInsideSide (Component::Side side, const Point &evtPosition)
 

Protected Attributes

Component_parent
 
Type _type
 
Point _p1
 
Point _p2
 
Point _clickDiff
 
Point _minimumSize
 
Point _preferredSize
 
Point _maximumSize
 
bool _receivingCallbacks
 
bool _isResizable
 
bool _isResizing
 
bool _isHResizable
 
bool _isVResizable
 
bool _isDraggable
 
bool _isDragging
 
bool _isOvered
 
bool _isHolded
 
bool _isVisible
 
std::vector< bool > _resizing
 
ContextMenu_contextMenu
 

Static Protected Attributes

static const int s_mouseBacklash = 4
 

Member Typedef Documentation

typedef std::list<Component*> scv::Component::List

Member Enumeration Documentation

enum scv::Component::Side
protected
Enumerator:
LEFT 
RIGHT 
TOP 
BOTTOM 
Enumerator:
NONE 
PANEL 
COLORPICKER 
PROGRESSBAR 
SCROLL 
SLIDER 
SPINNER 
BUTTON 
CHECKBOX 
RADIOBUTTON 
TOGGLEBUTTON 
TEXTFIELD 
TEXTBOX 
SEPARATOR 
WINDOW 
MENUBAR 
TABBEDPANE 
SCROLLCOMPONENT 
IMAGE 
TABLE 
COMBOBOX 
CANVAS 
TREEVIEW 
LABEL 
CONTEXTMENU 
GENERICTREE 
NOFWIDGETS 

Constructor & Destructor Documentation

scv::Component::Component ( const scv::Point p1,
const scv::Point p2 
)
scv::Component::~Component ( void  )
virtual

Member Function Documentation

void scv::Component::addChild ( Component object)
virtual

Reimplemented in scv::Panel, and scv::TabbedPane.

Point scv::Component::getAbsolutePosition ( void  ) const
virtual
bool scv::Component::getCallbacksStatus ( void  ) const
virtual
Component * scv::Component::getChild ( int  index) const
virtual
const Component::List & scv::Component::getChildren ( void  ) const
inline
ContextMenu * scv::Component::getContextMenu ( void  ) const
inline
int scv::Component::getHeight ( void  ) const
inlinevirtual
Point scv::Component::getMaximumSize ( void  ) const
virtual

Reimplemented in scv::Panel.

Point scv::Component::getMinimumSize ( void  ) const
virtual

Reimplemented in scv::Panel.

Component * scv::Component::getParent ( void  ) const
inline
Scissor::Info scv::Component::getParentScissor ( void  ) const
virtual
Point scv::Component::getPreferredSize ( void  ) const
virtual

Reimplemented in scv::Panel.

Point scv::Component::getRelativePosition ( void  ) const
virtual
Scissor::Info scv::Component::getScissor ( void  ) const
virtual
Point scv::Component::getSize ( void  ) const
inlinevirtual
Component::Type scv::Component::getType ( void  )
int scv::Component::getWidth ( void  ) const
inlinevirtual
bool scv::Component::hasChild ( Component child) const
bool scv::Component::isDraggable ( void  ) const
inlinevirtual
bool scv::Component::isDragging ( void  ) const
inlinevirtual
bool scv::Component::isFocused ( void  ) const
virtual
bool scv::Component::isHolded ( void  ) const
inlinevirtual
bool scv::Component::isInside ( const Point evtPosition) const
virtual
bool scv::Component::isInsideSide ( Component::Side  side,
const Point evtPosition 
)
protected
bool scv::Component::isOvered ( void  ) const
inlinevirtual
bool scv::Component::isResizable ( void  ) const
inlinevirtual
bool scv::Component::isResizing ( void  ) const
inlinevirtual
bool scv::Component::isVisible ( void  ) const
inlinevirtual
void scv::Component::pullChildToTop ( Component child)
void scv::Component::registerContextMenu ( ContextMenu contextMenu)
virtual
void scv::Component::removeAllChild ( void  )
virtual
void scv::Component::removeChild ( Component object)
virtual

Reimplemented in scv::Panel, and scv::TabbedPane.

void scv::Component::setAbsolutePosition ( const Point position)
virtual
void scv::Component::setCallbacksStatus ( bool  state)
virtual
void scv::Component::setDraggable ( bool  state)
inlinevirtual

Reimplemented in scv::Table.

void scv::Component::setHeight ( int  height)
virtual
void scv::Component::setMaximumSize ( const scv::Point size)
virtual
void scv::Component::setMinimumSize ( const scv::Point size)
virtual
void scv::Component::setParent ( Component parent)
void scv::Component::setPreferredSize ( const scv::Point size)
virtual
void scv::Component::setRelativePosition ( const Point position)
virtual
void scv::Component::setResizable ( bool  state)
inlinevirtual

Reimplemented in scv::Table.

void scv::Component::setResizingCursor ( void  )
protected
void scv::Component::setSize ( int  width,
int  height 
)
inlinevirtual
void scv::Component::setType ( Type  type)
void scv::Component::setVisible ( bool  state)
inlinevirtual

Reimplemented in scv::InternalFrame.

void scv::Component::setWidth ( int  width)
virtual

Reimplemented in scv::TextBox, scv::Label, and scv::ScrollComponent.

void scv::Component::unregisterContextMenu ( void  )
virtual

Member Data Documentation

Component::List scv::Component::_children
Point scv::Component::_clickDiff
protected
ContextMenu* scv::Component::_contextMenu
protected
bool scv::Component::_isDraggable
protected
bool scv::Component::_isDragging
protected
bool scv::Component::_isHolded
protected
bool scv::Component::_isHResizable
protected
bool scv::Component::_isOvered
protected
bool scv::Component::_isResizable
protected
bool scv::Component::_isResizing
protected
bool scv::Component::_isVisible
protected
bool scv::Component::_isVResizable
protected
Point scv::Component::_maximumSize
protected
Point scv::Component::_minimumSize
protected
Point scv::Component::_p1
protected
Point scv::Component::_p2
protected
Component* scv::Component::_parent
protected
Point scv::Component::_preferredSize
protected
bool scv::Component::_receivingCallbacks
protected
std::vector<bool> scv::Component::_resizing
protected
Type scv::Component::_type
protected
const int scv::Component::s_mouseBacklash = 4
staticprotected

The documentation for this class was generated from the following files: