OpenASIP
2.0
|
#include <UnitContainerFigure.hh>
Public Member Functions | |
UnitContainerFigure () | |
virtual | ~UnitContainerFigure () |
Public Member Functions inherited from Figure | |
Figure () | |
virtual | ~Figure () |
wxPoint | location () const |
void | setLocation (wxPoint point) |
void | setX (int x) |
void | setY (int y) |
void | setPreferredX (int x) |
bool | xSet () const |
void | clearXSetFlag () |
virtual wxRect | bounds () const |
virtual wxRect | virtualBounds () const |
void | setBounds (wxSize bounds) |
void | setWidth (int width) |
void | setHeight (int height) |
virtual void | addChild (Figure *child) |
int | childCount () const |
Figure * | child (int index) const |
virtual void | layout (wxDC *dc) |
virtual void | draw (wxDC *dc) |
void | highlight (const wxColour &colour) |
void | clearHighlight () |
void | setOptions (MachineCanvasOptions *options) |
MachineCanvasOptions * | options () |
Protected Member Functions | |
virtual void | layoutSelf (wxDC *) |
virtual void | layoutChildren (wxDC *) |
Protected Member Functions inherited from Figure | |
virtual void | drawSelf (wxDC *dc) |
void | drawChildren (wxDC *dc) |
Private Member Functions | |
UnitContainerFigure & | operator= (UnitContainerFigure &old) |
Assignment not allowed. More... | |
UnitContainerFigure (UnitContainerFigure &old) | |
Copying not allowed. More... | |
Additional Inherited Members | |
Protected Attributes inherited from Figure | |
wxPoint | location_ |
Top-left location of the Figure's bounding rectangle. More... | |
wxSize | size_ |
wxSize of the Figure's bounding rectangle. More... | |
wxSize | minSize_ |
Figure's minimum size. More... | |
std::vector< Figure * > | children_ |
Figure's children. More... | |
bool | xSet_ |
Tells if x-coordinate has been fixed. More... | |
bool | laidOut_ |
Tells whether the Figure and its children have been laid out or not. More... | |
bool | drawn_ |
Tells whether the Figure and its children have been drawn or not. More... | |
wxColour | highlight_ |
Highlight colour. More... | |
bool | highlighted_ |
Tells if the figure is highlighted. More... | |
MachineCanvasOptions * | options_ |
Options which are used for customizing figures. More... | |
Figure of a container EditPart for units.
Definition at line 46 of file UnitContainerFigure.hh.
UnitContainerFigure::UnitContainerFigure | ( | ) |
|
virtual |
|
private |
Copying not allowed.
|
protectedvirtual |
Lays out the units in a row, spaced evenly.
dc | Device context. |
Reimplemented from Figure.
Definition at line 59 of file UnitContainerFigure.cc.
References Figure::children_, Figure::location_, MachineCanvasLayoutConstraints::UNIT_SPACE, and Figure::xSet().
|
protectedvirtual |
Calculates and sets the size of the container.
Depends on the amount and position of the units.
Reimplemented from Figure.
Definition at line 87 of file UnitContainerFigure.cc.
References Figure::bounds(), Figure::children_, Figure::location(), Figure::location_, and Figure::size_.
|
private |
Assignment not allowed.