wxShapeFramework
1.13.0 beta
|
Class encapsulating fixed connection point assignable to shapes. The assigned fixed connection points are the only places where connected lines can start/end. More...
#include <ShapeDockpoint.h>
Public Types | |
enum | CPTYPE { cpUNDEF , cpTOPLEFT , cpTOPMIDDLE , cpTOPRIGHT , cpCENTERLEFT , cpCENTERMIDDLE , cpCENTERRIGHT , cpBOTTOMLEFT , cpBOTTOMMIDDLE , cpBOTTOMRIGHT , cpCUSTOM } |
Connection point type. More... | |
enum | CPORTHODIR { cpdUNDEF , cpdHORIZONTAL , cpdVERTICAL } |
Direction of orthogonal connection. More... | |
![]() | |
enum | SEARCHMODE { searchDFS , searchBFS } |
Public Member Functions | |
XS_DECLARE_CLONABLE_CLASS (wxSFConnectionPoint) | |
wxSFConnectionPoint () | |
Basic constructor. More... | |
wxSFConnectionPoint (wxSFShapeBase *parent, CPTYPE type) | |
Enhanced constructor. More... | |
wxSFConnectionPoint (wxSFShapeBase *parent, const wxRealPoint &relpos, long id=-1) | |
Enhanced constructor. More... | |
wxSFConnectionPoint (const wxSFConnectionPoint &obj) | |
Copy constructor. More... | |
virtual | ~wxSFConnectionPoint () |
Destructor. More... | |
CPTYPE | GetType () const |
Get connection point type. More... | |
void | SetOrthoDirection (const CPORTHODIR &dir) |
Set direction of orthogonal line's connection. More... | |
const CPORTHODIR & | GetOrthoDirection () const |
Get direction of orthogonal line's connection. More... | |
void | SetParentShape (wxSFShapeBase *parent) |
Set parent shape. More... | |
wxSFShapeBase * | GetParentShape () const |
Get parent shape. More... | |
void | SetRelativePosition (const wxRealPoint &relpos) |
Set relative position of custom connection point. More... | |
const wxRealPoint & | GetRelativePosition () const |
Get relative position of custom connection point. More... | |
wxRealPoint | GetConnectionPoint () const |
Get absolute position of the connection point. More... | |
virtual bool | Contains (const wxPoint &pos) const |
Find out whether given point is inside the connection point. More... | |
void | Draw (wxDC &dc) |
Draw connection point. More... | |
void | Refresh () |
Refresh (repaint) the dock point. More... | |
![]() | |
XS_DECLARE_CLONABLE_CLASS (xsSerializable) | |
xsSerializable () | |
Constructor. More... | |
xsSerializable (const xsSerializable &obj) | |
Copy constructor. More... | |
~xsSerializable () | |
Destructor. More... | |
xsSerializable * | GetParent () |
Get serializable parent object. More... | |
wxXmlSerializer * | GetParentManager () |
Get parent data manager (instance of wxXmlSerializer). More... | |
xsSerializable * | GetFirstChild () |
Get first serializable child object. More... | |
xsSerializable * | GetFirstChild (wxClassInfo *type) |
Get first serializable child object of given type. More... | |
xsSerializable * | GetLastChild () |
Get last serializable child object. More... | |
xsSerializable * | GetLastChild (wxClassInfo *type) |
Get last serializable child object of given type. More... | |
xsSerializable * | GetSibbling () |
Get next serializable sibbling object. More... | |
xsSerializable * | GetSibbling (wxClassInfo *type) |
Get next serializable sibbling object of given type. More... | |
xsSerializable * | GetChild (long id, bool recursive=xsNORECURSIVE) |
Get child item with given ID if exists. More... | |
bool | HasChildren () const |
Function finds out whether this serializable item has some children. More... | |
SerializableList & | GetChildrenList () |
Get list of children (serializable objects) of this object. More... | |
void | GetChildren (wxClassInfo *type, SerializableList &list) |
Get children of given type. More... | |
void | GetChildrenRecursively (wxClassInfo *type, SerializableList &list, SEARCHMODE mode=searchBFS) |
Get all children of given type recursively (i.e. children of children of .... ). More... | |
SerializableList::compatibility_iterator | GetFirstChildNode () const |
Get pointer to list node containing first serializable child object. More... | |
SerializableList::compatibility_iterator | GetLastChildNode () const |
Get pointer to list node containing last serializable child object. More... | |
void | SetParent (xsSerializable *parent) |
Set serializable parent object. More... | |
void | SetParentManager (wxXmlSerializer *parent) |
Set parent data manager. More... | |
xsSerializable * | AddChild (xsSerializable *child) |
Add serializable child object to this object. More... | |
xsSerializable * | InsertChild (size_t pos, xsSerializable *child) |
Insert serializable child object to this object at given position. More... | |
void | RemoveChild (xsSerializable *child) |
Remove serializable child item from this object (the child item will be destroyed). More... | |
void | RemoveChildren () |
Remove all child items (all items will be destroyed). More... | |
void | Reparent (xsSerializable *parent) |
Assign this object as a child to given parent object. More... | |
void | SetId (long id) |
Set ID of this object. Can be used for further objects' handling by wxXmlSerializer class (default ID value is -1). This functions should NOT be used directly; it is called by wxXmlSerializer object in the case that this serializable object is attached to another one (or directly to root node of wxXmlSerializer) by wxXmlSerializer::AddItem() member function. More... | |
long | GetId () const |
Get object ID. More... | |
wxXmlNode * | SerializeObject (wxXmlNode *node) |
Create new 'object' XML node and serialize all marked class data members (properties) into it. More... | |
void | DeserializeObject (wxXmlNode *node) |
Deserialize marked class data members (properties) from appropriate fields of given parent 'object' XML node. More... | |
void | AddProperty (xsProperty *property) |
Add new property to the property list. More... | |
void | RemoveProperty (xsProperty *property) |
Remove given property from the property list. More... | |
xsProperty * | GetProperty (const wxString &field) |
Get serialized property of given name. More... | |
PropertyList & | GetProperties () |
Get reference to properties list. More... | |
void | EnablePropertySerialization (const wxString &field, bool enab) |
Enable/disable serialization of given property. More... | |
bool | IsPropertySerialized (const wxString &field) |
Returns information whether the given property is serialized or not. More... | |
void | EnableSerialization (bool enab) |
Enable/disable object serialization. More... | |
bool | IsSerialized () const |
Returns information whether the object can be serialized or not. More... | |
void | EnableCloning (bool enab) |
Enable/disable object cloning. More... | |
bool | IsCloningEnabled () const |
Returns information whether the object can be cloned or not. More... | |
xsSerializable * | operator<< (xsSerializable *child) |
Add serializable child object to this object. More... | |
Protected Member Functions | |
virtual void | DrawNormal (wxDC &dc) |
Draw the connection point in the normal way. The function can be overrided if neccessary. More... | |
virtual void | DrawHover (wxDC &dc) |
Draw the connection point in the hower mode (the mouse cursor is above the shape). The function can be overrided if neccessary. More... | |
![]() | |
void | InitChild (xsSerializable *child) |
Initialize new child object. More... | |
virtual wxXmlNode * | Serialize (wxXmlNode *node) |
Serialize stored properties to the given XML node. The serialization routine is automatically called by the framework and cares about serialization of all defined properties. More... | |
virtual void | Deserialize (wxXmlNode *node) |
Deserialize object properties from the given XML node. The routine is automatically called by the framework and cares about deserialization of all defined properties. More... | |
Private Member Functions | |
void | _OnMouseMove (const wxPoint &pos) |
Event handler called when the mouse pointer is moving above shape canvas. More... | |
void | MarkSerializableDataMembers () |
Private Attributes | |
CPTYPE | m_nType |
CPORTHODIR | m_nOrthoDir |
wxSFShapeBase * | m_pParentShape |
bool | m_fMouseOver |
wxRealPoint | m_nRelPosition |
Friends | |
class | wxSFShapeBase |
Additional Inherited Members | |
![]() | |
PropertyList | m_lstProperties |
List of serialized properties. More... | |
SerializableList | m_lstChildItems |
List of child objects. More... | |
xsSerializable * | m_pParentItem |
Pointer to parent serializable object. More... | |
wxXmlSerializer * | m_pParentManager |
Pointer to parent data manager. More... | |
bool | m_fSerialize |
Object serialization flag. More... | |
bool | m_fClone |
Object cloning flag. More... | |
Class encapsulating fixed connection point assignable to shapes. The assigned fixed connection points are the only places where connected lines can start/end.
wxSFConnectionPoint::wxSFConnectionPoint | ( | ) |
Basic constructor.
wxSFConnectionPoint::wxSFConnectionPoint | ( | wxSFShapeBase * | parent, |
CPTYPE | type | ||
) |
Enhanced constructor.
parent | Pointer to parent shape |
type | Connection point type |
wxSFConnectionPoint::wxSFConnectionPoint | ( | wxSFShapeBase * | parent, |
const wxRealPoint & | relpos, | ||
long | id = -1 |
||
) |
Enhanced constructor.
parent | Pointer to parent shape |
relpos | Relative position in percentages |
id | Connection point ID |
wxSFConnectionPoint::wxSFConnectionPoint | ( | const wxSFConnectionPoint & | obj | ) |
Copy constructor.
obj | Reference to source object |
|
inlinevirtual |
Destructor.
|
private |
Event handler called when the mouse pointer is moving above shape canvas.
pos | Current mouse position |
|
virtual |
Find out whether given point is inside the connection point.
pos | Examined point |
void wxSFConnectionPoint::Draw | ( | wxDC & | dc | ) |
Draw connection point.
dc | Device context where the handle will be drawn |
|
protectedvirtual |
Draw the connection point in the hower mode (the mouse cursor is above the shape). The function can be overrided if neccessary.
dc | Reference to device context where the shape will be drawn to |
|
protectedvirtual |
Draw the connection point in the normal way. The function can be overrided if neccessary.
dc | Reference to device context where the shape will be drawn to |
wxRealPoint wxSFConnectionPoint::GetConnectionPoint | ( | ) | const |
Get absolute position of the connection point.
|
inline |
|
inline |
Get parent shape.
|
inline |
Get relative position of custom connection point.
|
inline |
Get connection point type.
|
private |
void wxSFConnectionPoint::Refresh | ( | ) |
Refresh (repaint) the dock point.
|
inline |
|
inline |
Set parent shape.
parent | Pointer to parent shape |
|
inline |
Set relative position of custom connection point.
relpos | Relative position in percetnages |
wxSFConnectionPoint::XS_DECLARE_CLONABLE_CLASS | ( | wxSFConnectionPoint | ) |
|
friend |
|
private |
|
private |
|
private |
|
private |
|
private |