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_
15 #if defined(__GNUG__) && !defined(__APPLE__)
16 #pragma interface "composit.h"
20 class WXDLLIMPEXP_OGL wxDivisionShape
;
21 class WXDLLIMPEXP_OGL wxOGLConstraint
;
24 * A composite object is an invisible rectangle surrounding all children
28 class WXDLLIMPEXP_OGL wxCompositeShape
: public wxRectangleShape
30 DECLARE_DYNAMIC_CLASS(wxCompositeShape
)
36 void OnDraw(wxDC
& dc
);
37 void OnDrawContents(wxDC
& dc
);
38 void OnErase(wxDC
& dc
);
39 bool OnMovePre(wxDC
& dc
, double x
, double y
, double oldX
, double oldY
, bool display
= TRUE
);
40 void OnDragLeft(bool draw
, double x
, double y
, int keys
, int attachment
= 0);
41 void OnBeginDragLeft(double x
, double y
, int keys
, int attachment
= 0);
42 void OnEndDragLeft(double x
, double y
, int keys
, int attachment
= 0);
44 void OnRightClick(double x
, double y
, int keys
, int attachment
= 0);
46 void SetSize(double w
, double h
, bool recursive
= TRUE
);
48 // Returns TRUE if it settled down
52 void AddChild(wxShape
*child
, wxShape
*addAfter
= NULL
);
53 void RemoveChild(wxShape
*child
);
55 wxOGLConstraint
*AddConstraint(wxOGLConstraint
*constraint
);
56 wxOGLConstraint
*AddConstraint(int type
, wxShape
*constraining
, wxList
& constrained
);
57 wxOGLConstraint
*AddConstraint(int type
, wxShape
*constraining
, wxShape
*constrained
);
59 void DeleteConstraint(wxOGLConstraint
*constraint
);
61 // Delete constraints that involve this child.
62 void DeleteConstraintsInvolvingChild(wxShape
*child
);
64 // Remove the image from any constraints involving it, but DON'T
65 // remove any constraints.
66 void RemoveChildFromConstraints(wxShape
*child
);
68 // Find constraint, also returning actual composite the constraint was in,
69 // in case it had to find it recursively.
70 wxOGLConstraint
*FindConstraint(long id
, wxCompositeShape
**actualComposite
= NULL
);
72 // Returns TRUE if something changed
75 // Make this composite into a container by creating one wxDivisionShape
78 // Calculates size and position of composite object based on children
82 void WriteAttributes(wxExpr
*clause
);
83 void ReadAttributes(wxExpr
*clause
);
84 // In case the object has constraints it needs to read in in a different pass
85 void ReadConstraints(wxExpr
*clause
, wxExprDatabase
*database
);
87 // Does the copying for this object
88 void Copy(wxShape
& copy
);
90 virtual wxDivisionShape
*OnCreateDivision();
92 // Finds the image used to visualize a container. This is any child
93 // of the composite that is not in the divisions list.
94 wxShape
*FindContainerImage();
96 // Returns TRUE if division is a descendant of this container
97 bool ContainsDivision(wxDivisionShape
*division
);
99 inline wxList
& GetDivisions() const { return (wxList
&) m_divisions
; }
100 inline wxList
& GetConstraints() const { return (wxList
&) m_constraints
; }
105 wxList m_constraints
;
106 wxList m_divisions
; // In case it's a container
110 * A division object is a composite with special properties,
111 * to be used for containment. It's a subdivision of a container.
112 * A containing node image consists of a composite with a main child shape
113 * such as rounded rectangle, plus a list of division objects.
114 * It needs to be a composite because a division contains pieces
116 * NOTE a container has at least one wxDivisionShape for consistency.
117 * This can be subdivided, so it turns into two objects, then each of
118 * these can be subdivided, etc.
120 #define DIVISION_SIDE_NONE 0
121 #define DIVISION_SIDE_LEFT 1
122 #define DIVISION_SIDE_TOP 2
123 #define DIVISION_SIDE_RIGHT 3
124 #define DIVISION_SIDE_BOTTOM 4
126 class WXDLLIMPEXP_OGL wxDivisionShape
: public wxCompositeShape
128 DECLARE_DYNAMIC_CLASS(wxDivisionShape
)
134 void OnDraw(wxDC
& dc
);
135 void OnDrawContents(wxDC
& dc
);
136 bool OnMovePre(wxDC
& dc
, double x
, double y
, double oldX
, double oldY
, bool display
= TRUE
);
137 void OnDragLeft(bool draw
, double x
, double y
, int keys
, int attachment
= 0);
138 void OnBeginDragLeft(double x
, double y
, int keys
, int attachment
= 0);
139 void OnEndDragLeft(double x
, double y
, int keys
, int attachment
= 0);
141 void OnRightClick(double x
, double y
, int keys
= 0, int attachment
= 0);
143 // Don't want this kind of composite to resize its subdiagrams, so
144 // override composite's SetSize.
145 void SetSize(double w
, double h
, bool recursive
= TRUE
);
147 // Similarly for calculating size: it's fixed at whatever SetSize
148 // set it to, not in terms of children.
149 void CalculateSize();
151 void MakeControlPoints();
152 void ResetControlPoints();
153 void MakeMandatoryControlPoints();
154 void ResetMandatoryControlPoints();
157 void WriteAttributes(wxExpr
*clause
);
158 void ReadAttributes(wxExpr
*clause
);
160 // Does the copying for this object
161 void Copy(wxShape
& copy
);
163 // Divide horizontally (wxHORIZONTAL) or vertically (wxVERTICAL)
164 bool Divide(int direction
);
166 // Resize adjoining divisions at the given side. If test is TRUE,
167 // just see whether it's possible for each adjoining region,
168 // returning FALSE if it's not.
169 bool ResizeAdjoining(int side
, double newPos
, bool test
);
171 // Adjust a side, returning FALSE if it's not physically possible.
172 bool AdjustLeft(double left
, bool test
);
173 bool AdjustTop(double top
, bool test
);
174 bool AdjustRight(double right
, bool test
);
175 bool AdjustBottom(double bottom
, bool test
);
177 // Edit style of left or top side
178 void EditEdge(int side
);
181 void PopupMenu(double x
, double y
);
183 inline void SetLeftSide(wxDivisionShape
*shape
) { m_leftSide
= shape
; }
184 inline void SetTopSide(wxDivisionShape
*shape
) { m_topSide
= shape
; }
185 inline void SetRightSide(wxDivisionShape
*shape
) { m_rightSide
= shape
; }
186 inline void SetBottomSide(wxDivisionShape
*shape
) { m_bottomSide
= shape
; }
187 inline wxDivisionShape
*GetLeftSide() const { return m_leftSide
; }
188 inline wxDivisionShape
*GetTopSide() const { return m_topSide
; }
189 inline wxDivisionShape
*GetRightSide() const { return m_rightSide
; }
190 inline wxDivisionShape
*GetBottomSide() const { return m_bottomSide
; }
192 inline void SetHandleSide(int side
) { m_handleSide
= side
; }
193 inline int GetHandleSide() const { return m_handleSide
; }
195 inline void SetLeftSidePen(wxPen
*pen
) { m_leftSidePen
= pen
; }
196 inline wxPen
*GetLeftSidePen() const { return m_leftSidePen
; }
197 inline void SetTopSidePen(wxPen
*pen
) { m_topSidePen
= pen
; }
198 inline wxPen
*GetTopSidePen() const { return m_topSidePen
; }
200 void SetLeftSideColour(const wxString
& colour
);
201 void SetTopSideColour(const wxString
& colour
);
202 void SetLeftSideStyle(const wxString
& style
);
203 void SetTopSideStyle(const wxString
& style
);
205 inline wxString
GetLeftSideColour() const { return m_leftSideColour
; }
206 inline wxString
GetTopSideColour() const { return m_topSideColour
; }
207 inline wxString
GetLeftSideStyle() const { return m_leftSideStyle
; }
208 inline wxString
GetTopSideStyle() const { return m_topSideStyle
; }
211 // Adjoining divisions. NULL indicates edge
212 // of container, and that side shouldn't be
214 wxDivisionShape
* m_leftSide
;
215 wxDivisionShape
* m_rightSide
;
216 wxDivisionShape
* m_topSide
;
217 wxDivisionShape
* m_bottomSide
;
219 int m_handleSide
; // Side at which handle is legal
221 wxPen
* m_leftSidePen
;
223 wxString m_leftSideColour
;
224 wxString m_topSideColour
;
225 wxString m_leftSideStyle
;
226 wxString m_topSideStyle
;
230 #define DIVISION_MENU_SPLIT_HORIZONTALLY 1
231 #define DIVISION_MENU_SPLIT_VERTICALLY 2
232 #define DIVISION_MENU_EDIT_LEFT_EDGE 3
233 #define DIVISION_MENU_EDIT_TOP_EDGE 4
234 #define DIVISION_MENU_EDIT_RIGHT_EDGE 5
235 #define DIVISION_MENU_EDIT_BOTTOM_EDGE 6
236 #define DIVISION_MENU_DELETE_ALL 7