1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxCompositeShape
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _OGL_COMPOSIT_H_
13 #define _OGL_COMPOSIT_H_
16 #pragma interface "composit.h"
19 class wxDivisionShape
;
20 class wxOGLConstraint
;
23 * A composite object is an invisible rectangle surrounding all children
27 class wxCompositeShape
: public wxRectangleShape
29 DECLARE_DYNAMIC_CLASS(wxCompositeShape
)
35 void OnDraw(wxDC
& dc
);
36 void OnDrawContents(wxDC
& dc
);
37 void OnErase(wxDC
& dc
);
38 bool OnMovePre(wxDC
& dc
, double x
, double y
, double oldX
, double oldY
, bool display
= TRUE
);
39 void OnDragLeft(bool draw
, double x
, double y
, int keys
, int attachment
= 0);
40 void OnBeginDragLeft(double x
, double y
, int keys
, int attachment
= 0);
41 void OnEndDragLeft(double x
, double y
, int keys
, int attachment
= 0);
43 void OnRightClick(double x
, double y
, int keys
, int attachment
= 0);
45 void SetSize(double w
, double h
, bool recursive
= TRUE
);
47 // Returns TRUE if it settled down
51 void AddChild(wxShape
*child
, wxShape
*addAfter
= NULL
);
52 void RemoveChild(wxShape
*child
);
54 wxOGLConstraint
*AddConstraint(wxOGLConstraint
*constraint
);
55 wxOGLConstraint
*AddConstraint(int type
, wxShape
*constraining
, wxList
& constrained
);
56 wxOGLConstraint
*AddConstraint(int type
, wxShape
*constraining
, wxShape
*constrained
);
58 void DeleteConstraint(wxOGLConstraint
*constraint
);
60 // Delete constraints that involve this child.
61 void DeleteConstraintsInvolvingChild(wxShape
*child
);
63 // Remove the image from any constraints involving it, but DON'T
64 // remove any constraints.
65 void RemoveChildFromConstraints(wxShape
*child
);
67 // Find constraint, also returning actual composite the constraint was in,
68 // in case it had to find it recursively.
69 wxOGLConstraint
*FindConstraint(long id
, wxCompositeShape
**actualComposite
= NULL
);
71 // Returns TRUE if something changed
74 // Make this composite into a container by creating one wxDivisionShape
77 // Calculates size and position of composite object based on children
81 void WriteAttributes(wxExpr
*clause
);
82 void ReadAttributes(wxExpr
*clause
);
83 // In case the object has constraints it needs to read in in a different pass
84 void ReadConstraints(wxExpr
*clause
, wxExprDatabase
*database
);
86 // Does the copying for this object
87 void Copy(wxShape
& copy
);
89 virtual wxDivisionShape
*OnCreateDivision();
91 // Finds the image used to visualize a container. This is any child
92 // of the composite that is not in the divisions list.
93 wxShape
*FindContainerImage();
95 // Returns TRUE if division is a descendant of this container
96 bool ContainsDivision(wxDivisionShape
*division
);
98 inline wxList
& GetDivisions() const { return (wxList
&) m_divisions
; }
99 inline wxList
& GetConstraints() const { return (wxList
&) m_constraints
; }
104 wxList m_constraints
;
105 wxList m_divisions
; // In case it's a container
109 * A division object is a composite with special properties,
110 * to be used for containment. It's a subdivision of a container.
111 * A containing node image consists of a composite with a main child shape
112 * such as rounded rectangle, plus a list of division objects.
113 * It needs to be a composite because a division contains pieces
115 * NOTE a container has at least one wxDivisionShape for consistency.
116 * This can be subdivided, so it turns into two objects, then each of
117 * these can be subdivided, etc.
119 #define DIVISION_SIDE_NONE 0
120 #define DIVISION_SIDE_LEFT 1
121 #define DIVISION_SIDE_TOP 2
122 #define DIVISION_SIDE_RIGHT 3
123 #define DIVISION_SIDE_BOTTOM 4
125 class wxDivisionShape
: public wxCompositeShape
127 DECLARE_DYNAMIC_CLASS(wxDivisionShape
)
133 void OnDraw(wxDC
& dc
);
134 void OnDrawContents(wxDC
& dc
);
135 bool OnMovePre(wxDC
& dc
, double x
, double y
, double oldX
, double oldY
, bool display
= TRUE
);
136 void OnDragLeft(bool draw
, double x
, double y
, int keys
, int attachment
= 0);
137 void OnBeginDragLeft(double x
, double y
, int keys
, int attachment
= 0);
138 void OnEndDragLeft(double x
, double y
, int keys
, int attachment
= 0);
140 void OnRightClick(double x
, double y
, int keys
= 0, int attachment
= 0);
142 // Don't want this kind of composite to resize its subdiagrams, so
143 // override composite's SetSize.
144 void SetSize(double w
, double h
, bool recursive
= TRUE
);
146 // Similarly for calculating size: it's fixed at whatever SetSize
147 // set it to, not in terms of children.
148 void CalculateSize();
150 void MakeControlPoints();
151 void ResetControlPoints();
152 void MakeMandatoryControlPoints();
153 void ResetMandatoryControlPoints();
156 void WriteAttributes(wxExpr
*clause
);
157 void ReadAttributes(wxExpr
*clause
);
159 // Does the copying for this object
160 void Copy(wxShape
& copy
);
162 // Divide horizontally (wxHORIZONTAL) or vertically (wxVERTICAL)
163 bool Divide(int direction
);
165 // Resize adjoining divisions at the given side. If test is TRUE,
166 // just see whether it's possible for each adjoining region,
167 // returning FALSE if it's not.
168 bool ResizeAdjoining(int side
, double newPos
, bool test
);
170 // Adjust a side, returning FALSE if it's not physically possible.
171 bool AdjustLeft(double left
, bool test
);
172 bool AdjustTop(double top
, bool test
);
173 bool AdjustRight(double right
, bool test
);
174 bool AdjustBottom(double bottom
, bool test
);
176 // Edit style of left or top side
177 void EditEdge(int side
);
180 void PopupMenu(double x
, double y
);
182 inline void SetLeftSide(wxDivisionShape
*shape
) { m_leftSide
= shape
; }
183 inline void SetTopSide(wxDivisionShape
*shape
) { m_topSide
= shape
; }
184 inline void SetRightSide(wxDivisionShape
*shape
) { m_rightSide
= shape
; }
185 inline void SetBottomSide(wxDivisionShape
*shape
) { m_bottomSide
= shape
; }
186 inline wxDivisionShape
*GetLeftSide() const { return m_leftSide
; }
187 inline wxDivisionShape
*GetTopSide() const { return m_topSide
; }
188 inline wxDivisionShape
*GetRightSide() const { return m_rightSide
; }
189 inline wxDivisionShape
*GetBottomSide() const { return m_bottomSide
; }
191 inline void SetHandleSide(int side
) { m_handleSide
= side
; }
192 inline int GetHandleSide() const { return m_handleSide
; }
194 inline void SetLeftSidePen(wxPen
*pen
) { m_leftSidePen
= pen
; }
195 inline wxPen
*GetLeftSidePen() const { return m_leftSidePen
; }
196 inline void SetTopSidePen(wxPen
*pen
) { m_topSidePen
= pen
; }
197 inline wxPen
*GetTopSidePen() const { return m_topSidePen
; }
199 void SetLeftSideColour(const wxString
& colour
);
200 void SetTopSideColour(const wxString
& colour
);
201 void SetLeftSideStyle(const wxString
& style
);
202 void SetTopSideStyle(const wxString
& style
);
204 inline wxString
GetLeftSideColour() const { return m_leftSideColour
; }
205 inline wxString
GetTopSideColour() const { return m_topSideColour
; }
206 inline wxString
GetLeftSideStyle() const { return m_leftSideStyle
; }
207 inline wxString
GetTopSideStyle() const { return m_topSideStyle
; }
210 // Adjoining divisions. NULL indicates edge
211 // of container, and that side shouldn't be
213 wxDivisionShape
* m_leftSide
;
214 wxDivisionShape
* m_rightSide
;
215 wxDivisionShape
* m_topSide
;
216 wxDivisionShape
* m_bottomSide
;
218 int m_handleSide
; // Side at which handle is legal
220 wxPen
* m_leftSidePen
;
222 wxString m_leftSideColour
;
223 wxString m_topSideColour
;
224 wxString m_leftSideStyle
;
225 wxString m_topSideStyle
;
229 #define DIVISION_MENU_SPLIT_HORIZONTALLY 1
230 #define DIVISION_MENU_SPLIT_VERTICALLY 2
231 #define DIVISION_MENU_EDIT_LEFT_EDGE 3
232 #define DIVISION_MENU_EDIT_TOP_EDGE 4
233 #define DIVISION_MENU_EDIT_RIGHT_EDGE 5
234 #define DIVISION_MENU_EDIT_BOTTOM_EDGE 6
235 #define DIVISION_MENU_DELETE_ALL 7