|
OpenASIP 2.2
|
#include <UnknownSocketFigure.hh>


Public Member Functions | |
| UnknownSocketFigure () | |
| virtual | ~UnknownSocketFigure () |
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 | drawSelf (wxDC *dc) |
Protected Member Functions inherited from Figure | |
| void | drawChildren (wxDC *dc) |
| virtual void | layoutSelf (wxDC *) |
| virtual void | layoutChildren (wxDC *) |
Private Member Functions | |
| UnknownSocketFigure & | operator= (UnknownSocketFigure &old) |
| Assignment not allowed. | |
| UnknownSocketFigure (UnknownSocketFigure &old) | |
| Copying not allowed. | |
Static Private Attributes | |
| static const wxColour | DEFAULT_COLOUR = wxColour(0, 0, 0) |
| Default colour for the figure. | |
| static const wxColour | DEFAULT_BG_COLOUR |
| Default background colour for the figure. | |
Additional Inherited Members | |
Protected Attributes inherited from Figure | |
| wxPoint | location_ |
| Top-left location of the Figure's bounding rectangle. | |
| wxSize | size_ |
| wxSize of the Figure's bounding rectangle. | |
| wxSize | minSize_ |
| Figure's minimum size. | |
| std::vector< Figure * > | children_ |
| Figure's children. | |
| bool | xSet_ |
| Tells if x-coordinate has been fixed. | |
| bool | laidOut_ |
| Tells whether the Figure and its children have been laid out or not. | |
| bool | drawn_ |
| Tells whether the Figure and its children have been drawn or not. | |
| wxColour | highlight_ |
| Highlight colour. | |
| bool | highlighted_ |
| Tells if the figure is highlighted. | |
| MachineCanvasOptions * | options_ |
| Options which are used for customizing figures. | |
Figure of a socket with unknown direction.
Definition at line 46 of file UnknownSocketFigure.hh.
| UnknownSocketFigure::UnknownSocketFigure | ( | ) |
The Constructor.
Definition at line 44 of file UnknownSocketFigure.cc.
References Figure::size_, MachineCanvasLayoutConstraints::SOCKET_HEIGHT, and MachineCanvasLayoutConstraints::SOCKET_WIDTH.
|
virtual |
|
private |
Copying not allowed.
|
protectedvirtual |
Draws the socket's Figure on the given device context.
| dc | The device context. |
Reimplemented from Figure.
Definition at line 62 of file UnknownSocketFigure.cc.
References DEFAULT_BG_COLOUR, DEFAULT_COLOUR, Figure::location_, and Figure::size_.
|
private |
Assignment not allowed.
|
staticprivate |
Default background colour for the figure.
Definition at line 63 of file UnknownSocketFigure.hh.
Referenced by drawSelf().
|
staticprivate |
Default colour for the figure.
Definition at line 61 of file UnknownSocketFigure.hh.
Referenced by drawSelf().