1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG definitions for the wxWindows Object Graphics Library
7 // Created: 3-Sept-1999
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
18 #include "oglhelpers.h"
21 //---------------------------------------------------------------------------
24 %include my_typemaps.i
37 %pragma(python) code = "import wx"
38 %pragma(python) code = "from oglcanvas import wxPyShapeCanvasPtr"
40 //---------------------------------------------------------------------------
41 //---------------------------------------------------------------------------
42 //---------------------------------------------------------------------------
45 class wxShapeRegion : public wxObject {
50 void SetText(const wxString& s);
51 void SetFont(wxFont *f);
52 void SetMinSize(double w, double h);
53 void SetSize(double w, double h);
54 void SetPosition(double x, double y);
55 void SetProportions(double x, double y);
56 void SetFormatMode(int mode);
57 void SetName(const wxString& s);
58 void SetColour(const wxString& col);
62 void GetMinSize(double *OUTPUT, double *OUTPUT);
63 void GetProportion(double *OUTPUT, double *OUTPUT);
64 void GetSize(double *OUTPUT, double *OUTPUT);
65 void GetPosition(double *OUTPUT, double *OUTPUT);
69 wxColour *GetActualColourObject();
70 wxList& GetFormattedText();
71 wxString GetPenColour();
73 void SetPenStyle(int style);
74 void SetPenColour(const wxString& col);
75 wxPen *GetActualPen();
83 //---------------------------------------------------------------------------
86 WXSHAPE_IMP_CALLBACKS(wxPyShapeEvtHandler,wxShapeEvtHandler);
90 class wxPyShapeEvtHandler : public wxObject {
92 wxPyShapeEvtHandler(wxPyShapeEvtHandler *prev = NULL,
93 wxPyShape *shape = NULL);
95 void _setCallbackInfo(PyObject* self, PyObject* _class);
96 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxPyShapeEvtHandler)"
97 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
99 %addmethods { void Destroy() { delete self; } }
101 void _setOORInfo(PyObject* _self) {
102 self->SetClientObject(new wxPyClientData(_self));
107 void SetShape(wxPyShape *sh);
108 wxPyShape *GetShape();
109 void SetPreviousHandler(wxPyShapeEvtHandler* handler);
110 wxPyShapeEvtHandler* GetPreviousHandler();
111 wxPyShapeEvtHandler* CreateNewCopy();
113 void base_OnDelete();
114 void base_OnDraw(wxDC& dc);
115 void base_OnDrawContents(wxDC& dc);
116 void base_OnDrawBranches(wxDC& dc, bool erase = FALSE);
117 void base_OnMoveLinks(wxDC& dc);
118 void base_OnErase(wxDC& dc);
119 void base_OnEraseContents(wxDC& dc);
120 void base_OnHighlight(wxDC& dc);
121 void base_OnLeftClick(double x, double y, int keys = 0, int attachment = 0);
122 void base_OnLeftDoubleClick(double x, double y, int keys = 0, int attachment = 0);
123 void base_OnRightClick(double x, double y, int keys = 0, int attachment = 0);
124 void base_OnSize(double x, double y);
125 bool base_OnMovePre(wxDC& dc, double x, double y, double old_x, double old_y, bool display = TRUE);
126 void base_OnMovePost(wxDC& dc, double x, double y, double old_x, double old_y, bool display = TRUE);
127 void base_OnDragLeft(bool draw, double x, double y, int keys=0, int attachment = 0);
128 void base_OnBeginDragLeft(double x, double y, int keys=0, int attachment = 0);
129 void base_OnEndDragLeft(double x, double y, int keys=0, int attachment = 0);
130 void base_OnDragRight(bool draw, double x, double y, int keys=0, int attachment = 0);
131 void base_OnBeginDragRight(double x, double y, int keys=0, int attachment = 0);
132 void base_OnEndDragRight(double x, double y, int keys=0, int attachment = 0);
133 void base_OnDrawOutline(wxDC& dc, double x, double y, double w, double h);
134 void base_OnDrawControlPoints(wxDC& dc);
135 void base_OnEraseControlPoints(wxDC& dc);
136 void base_OnMoveLink(wxDC& dc, bool moveControlPoints = TRUE);
137 void base_OnSizingDragLeft(wxPyControlPoint* pt, bool draw, double x, double y, int keys=0, int attachment = 0);
138 void base_OnSizingBeginDragLeft(wxPyControlPoint* pt, double x, double y, int keys=0, int attachment = 0);
139 void base_OnSizingEndDragLeft(wxPyControlPoint* pt, double x, double y, int keys=0, int attachment = 0);
140 void base_OnBeginSize(double w, double h);
141 void base_OnEndSize(double w, double h);
142 // void base_OnChangeAttachment(int attachment, wxPyLineShape* line, wxList& ordering);
145 //---------------------------------------------------------------------------
147 WXSHAPE_IMP_CALLBACKS(wxPyShape, wxShape);
151 class wxPyShape : public wxPyShapeEvtHandler {
153 // wxPyShape(wxPyShapeCanvas *can = NULL); abstract base class...
155 void _setCallbackInfo(PyObject* self, PyObject* _class);
156 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxPyShape)"
157 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
159 void GetBoundingBoxMax(double *OUTPUT, double *OUTPUT);
160 void GetBoundingBoxMin(double *OUTPUT, double *OUTPUT);
161 bool GetPerimeterPoint(double x1, double y1,
162 double x2, double y2,
163 double *OUTPUT, double *OUTPUT);
164 wxPyShapeCanvas *GetCanvas();
165 void SetCanvas(wxPyShapeCanvas *the_canvas);
166 void AddToCanvas(wxPyShapeCanvas *the_canvas, wxPyShape *addAfter = NULL);
167 void InsertInCanvas(wxPyShapeCanvas *the_canvas);
168 void RemoveFromCanvas(wxPyShapeCanvas *the_canvas);
173 wxPyShape *GetParent();
174 void SetParent(wxPyShape *p);
175 wxPyShape *GetTopAncestor();
178 // wxList& GetChildren();
180 PyObject* GetChildren() {
181 wxList& list = self->GetChildren();
182 return wxPy_ConvertList(&list, "wxPyShape");
188 void SetDrawHandles(bool drawH);
189 bool GetDrawHandles();
190 void MakeControlPoints();
191 void DeleteControlPoints(wxDC *dc = NULL);
192 void ResetControlPoints();
193 wxPyShapeEvtHandler *GetEventHandler();
194 void SetEventHandler(wxPyShapeEvtHandler *handler);
195 void MakeMandatoryControlPoints();
196 void ResetMandatoryControlPoints();
198 void CalculateSize();
199 void Select(bool select = TRUE, wxDC* dc = NULL);
200 void SetHighlight(bool hi = TRUE, bool recurse = FALSE);
201 bool IsHighlighted() ;
203 bool AncestorSelected();
204 void SetSensitivityFilter(int sens = OP_ALL, bool recursive = FALSE);
205 int GetSensitivityFilter();
206 void SetDraggable(bool drag, bool recursive = FALSE);
207 void SetFixedSize(bool x, bool y);
208 void GetFixedSize(bool *OUTPUT, bool *OUTPUT) ;
209 bool GetFixedWidth();
210 bool GetFixedHeight();
211 void SetSpaceAttachments(bool sp);
212 bool GetSpaceAttachments() ;
213 void SetShadowMode(int mode, bool redraw = FALSE);
215 bool HitTest(double x, double y, int *OUTPUT, double *OUTPUT);
216 void SetCentreResize(bool cr);
217 bool GetCentreResize();
218 void SetMaintainAspectRatio(bool ar);
219 bool GetMaintainAspectRatio();
222 // wxList& GetLines();
224 PyObject* GetLines() {
225 wxList& list = self->GetLines();
226 return wxPy_ConvertList(&list, "wxPyLineShape");
230 void SetDisableLabel(bool flag);
231 bool GetDisableLabel();
232 void SetAttachmentMode(int mode);
233 int GetAttachmentMode();
237 void SetPen(wxPen *pen);
238 void SetBrush(wxBrush *brush);
241 // void SetClientData(wxObject *client_data);
242 // wxObject *GetClientData();
244 void SetClientData(PyObject* userData) {
245 wxPyUserData* data = NULL;
247 data = new wxPyUserData(userData);
248 self->SetClientData(data);
251 PyObject* GetClientData() {
252 wxPyUserData* data = (wxPyUserData*)self->GetClientData();
254 Py_INCREF(data->m_obj);
263 void Show(bool show);
265 void Move(wxDC& dc, double x1, double y1, bool display = TRUE);
266 void Erase(wxDC& dc);
267 void EraseContents(wxDC& dc);
270 void MoveLinks(wxDC& dc);
271 void DrawContents(wxDC& dc);
272 void SetSize(double x, double y, bool recursive = TRUE);
273 void SetAttachmentSize(double x, double y);
274 void Attach(wxPyShapeCanvas *can);
277 void AddLine(wxPyLineShape *line, wxPyShape *other,
278 int attachFrom = 0, int attachTo = 0,
279 int positionFrom = -1, int positionTo = -1);
280 int GetLinePosition(wxPyLineShape* line);
281 void AddText(const wxString& string);
284 void SetDefaultRegionSize();
285 void FormatText(wxDC& dc, const wxString& s, int regionId = 0);
286 void SetFormatMode(int mode, int regionId = 0);
287 int GetFormatMode(int regionId = 0);
288 void SetFont(wxFont *font, int regionId = 0);
289 wxFont *GetFont(int regionId = 0);
290 void SetTextColour(const wxString& colour, int regionId = 0);
291 wxString GetTextColour(int regionId = 0);
292 int GetNumberOfTextRegions();
293 void SetRegionName(const wxString& name, int regionId = 0);
294 wxString GetRegionName(int regionId);
295 int GetRegionId(const wxString& name);
296 void NameRegions(const wxString& parentName = "");
298 // wxList& GetRegions();
300 PyObject* GetRegions() {
301 wxList& list = self->GetRegions();
302 return wxPy_ConvertList(&list, "wxShapeRegion");
306 void AddRegion(wxShapeRegion *region);
309 wxPyShape *FindRegion(const wxString& regionName, int *OUTPUT);
310 void FindRegionNames(wxStringList& list);
311 void ClearText(int regionId = 0);
312 void RemoveLine(wxPyLineShape *line);
315 void WriteAttributes(wxExpr *clause);
316 void ReadAttributes(wxExpr *clause);
317 void ReadConstraints(wxExpr *clause, wxExprDatabase *database);
318 void WriteRegions(wxExpr *clause);
319 void ReadRegions(wxExpr *clause);
322 bool GetAttachmentPosition(int attachment, double *OUTPUT, double *OUTPUT,
323 int nth = 0, int no_arcs = 1, wxPyLineShape *line = NULL);
324 int GetNumberOfAttachments();
325 bool AttachmentIsValid(int attachment);
326 bool GetAttachmentPositionEdge(int attachment, double *OUTPUT, double *OUTPUT,
327 int nth = 0, int no_arcs = 1, wxPyLineShape *line = NULL);
328 wxRealPoint CalcSimpleAttachment(const wxRealPoint& pt1, const wxRealPoint& pt2,
329 int nth, int noArcs, wxPyLineShape* line);
330 bool AttachmentSortTest(int attachmentPoint, const wxRealPoint& pt1, const wxRealPoint& pt2);
331 void EraseLinks(wxDC& dc, int attachment = -1, bool recurse = FALSE);
332 void DrawLinks(wxDC& dc, int attachment = -1, bool recurse = FALSE);
333 bool MoveLineToNewAttachment(wxDC& dc, wxPyLineShape *to_move,
336 //void ApplyAttachmentOrdering(wxList& linesToSort);
338 void ApplyAttachmentOrdering(PyObject* linesToSort) {
339 wxList* list = wxPy_wxListHelper(linesToSort, "_wxPyLineShape_p");
340 self->ApplyAttachmentOrdering(*list);
345 wxRealPoint GetBranchingAttachmentRoot(int attachment);
346 bool GetBranchingAttachmentInfo(int attachment, wxRealPoint& root, wxRealPoint& neck,
347 wxRealPoint& shoulder1, wxRealPoint& shoulder2);
348 bool GetBranchingAttachmentPoint(int attachment, int n, wxRealPoint& attachmentPoint,
349 wxRealPoint& stemPoint);
350 int GetAttachmentLineCount(int attachment);
351 void SetBranchNeckLength(int len);
352 int GetBranchNeckLength();
353 void SetBranchStemLength(int len);
354 int GetBranchStemLength();
355 void SetBranchSpacing(int len);
356 int GetBranchSpacing();
357 void SetBranchStyle(long style);
358 long GetBranchStyle();
359 int PhysicalToLogicalAttachment(int physicalAttachment);
360 int LogicalToPhysicalAttachment(int logicalAttachment);
362 bool HasDescendant(wxPyShape *image);
363 wxPyShape *CreateNewCopy(bool resetMapping = TRUE, bool recompute = TRUE);
364 void Copy(wxPyShape& copy);
365 void CopyWithHandler(wxPyShape& copy);
366 void Rotate(double x, double y, double theta);
367 double GetRotation();
368 void ClearAttachments();
369 void Recentre(wxDC& dc);
370 void ClearPointList(wxList& list);
371 wxPen GetBackgroundPen();
372 wxBrush GetBackgroundBrush();
374 void base_OnDelete();
375 void base_OnDraw(wxDC& dc);
376 void base_OnDrawContents(wxDC& dc);
377 void base_OnDrawBranches(wxDC& dc, bool erase = FALSE);
378 void base_OnMoveLinks(wxDC& dc);
379 void base_OnErase(wxDC& dc);
380 void base_OnEraseContents(wxDC& dc);
381 void base_OnHighlight(wxDC& dc);
382 void base_OnLeftClick(double x, double y, int keys = 0, int attachment = 0);
383 void base_OnLeftDoubleClick(double x, double y, int keys = 0, int attachment = 0);
384 void base_OnRightClick(double x, double y, int keys = 0, int attachment = 0);
385 void base_OnSize(double x, double y);
386 bool base_OnMovePre(wxDC& dc, double x, double y, double old_x, double old_y, bool display = TRUE);
387 void base_OnMovePost(wxDC& dc, double x, double y, double old_x, double old_y, bool display = TRUE);
388 void base_OnDragLeft(bool draw, double x, double y, int keys=0, int attachment = 0);
389 void base_OnBeginDragLeft(double x, double y, int keys=0, int attachment = 0);
390 void base_OnEndDragLeft(double x, double y, int keys=0, int attachment = 0);
391 void base_OnDragRight(bool draw, double x, double y, int keys=0, int attachment = 0);
392 void base_OnBeginDragRight(double x, double y, int keys=0, int attachment = 0);
393 void base_OnEndDragRight(double x, double y, int keys=0, int attachment = 0);
394 void base_OnDrawOutline(wxDC& dc, double x, double y, double w, double h);
395 void base_OnDrawControlPoints(wxDC& dc);
396 void base_OnEraseControlPoints(wxDC& dc);
397 void base_OnMoveLink(wxDC& dc, bool moveControlPoints = TRUE);
398 void base_OnSizingDragLeft(wxPyControlPoint* pt, bool draw, double x, double y, int keys=0, int attachment = 0);
399 void base_OnSizingBeginDragLeft(wxPyControlPoint* pt, double x, double y, int keys=0, int attachment = 0);
400 void base_OnSizingEndDragLeft(wxPyControlPoint* pt, double x, double y, int keys=0, int attachment = 0);
401 void base_OnBeginSize(double w, double h);
402 void base_OnEndSize(double w, double h);
403 // void base_OnChangeAttachment(int attachment, wxPyLineShape* line, wxList& ordering);
406 //---------------------------------------------------------------------------