]> git.saurik.com Git - wxWidgets.git/blob - wxPython/contrib/ogl/oglhelpers.h
Added missing files to listing
[wxWidgets.git] / wxPython / contrib / ogl / oglhelpers.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: oglhelpers.h
3 // Purpose: Some Helper functions to help in data conversions in OGL
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 9-Sept-1999
8 // RCS-ID: $Id$
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13 #ifndef __wxp_ogl_helpers__
14 #define __wxp_ogl_helpers__
15
16
17 #include <wx/ogl/ogl.h>
18 #include <wx/ogl/basicp.h>
19 #include <wx/ogl/constrnt.h>
20 #include <wx/ogl/bmpshape.h>
21 #include <wx/ogl/drawn.h>
22
23
24 //---------------------------------------------------------------------------
25 // Define a macro that will be used in the class definintions below
26
27 #define WXSHAPE_DEC_CALLBACKS() \
28 DEC_PYCALLBACK__ (OnDelete); \
29 DEC_PYCALLBACK__DC (OnDraw); \
30 DEC_PYCALLBACK__DC (OnDrawContents); \
31 DEC_PYCALLBACK__DCBOOL (OnDrawBranches); \
32 DEC_PYCALLBACK__DC (OnMoveLinks); \
33 DEC_PYCALLBACK__DC (OnErase); \
34 DEC_PYCALLBACK__DC (OnEraseContents); \
35 DEC_PYCALLBACK__DC (OnHighlight); \
36 DEC_PYCALLBACK__2DBL2INT (OnLeftClick); \
37 DEC_PYCALLBACK__2DBL2INT (OnLeftDoubleClick); \
38 DEC_PYCALLBACK__2DBL2INT (OnRightClick); \
39 DEC_PYCALLBACK__2DBL (OnSize); \
40 DEC_PYCALLBACK_BOOL_DC4DBLBOOL (OnMovePre); \
41 DEC_PYCALLBACK__DC4DBLBOOL (OnMovePost); \
42 DEC_PYCALLBACK__BOOL2DBL2INT (OnDragLeft); \
43 DEC_PYCALLBACK__2DBL2INT (OnBeginDragLeft); \
44 DEC_PYCALLBACK__2DBL2INT (OnEndDragLeft); \
45 DEC_PYCALLBACK__BOOL2DBL2INT (OnDragRight); \
46 DEC_PYCALLBACK__2DBL2INT (OnBeginDragRight); \
47 DEC_PYCALLBACK__2DBL2INT (OnEndDragRight); \
48 DEC_PYCALLBACK__DC4DBL (OnDrawOutline); \
49 DEC_PYCALLBACK__DC (OnDrawControlPoints); \
50 DEC_PYCALLBACK__DC (OnEraseControlPoints); \
51 DEC_PYCALLBACK__DCBOOL (OnMoveLink); \
52 DEC_PYCALLBACK__WXCPBOOL2DBL2INT(OnSizingDragLeft); \
53 DEC_PYCALLBACK__WXCP2DBL2INT (OnSizingBeginDragLeft);\
54 DEC_PYCALLBACK__WXCP2DBL2INT (OnSizingEndDragLeft); \
55 DEC_PYCALLBACK__2DBL (OnBeginSize); \
56 DEC_PYCALLBACK__2DBL (OnEndSize); \
57 \
58 PYPRIVATE;
59
60
61 #define WXSHAPE_IMP_CALLBACKS(CLASS, PARENT) \
62 IMP_PYCALLBACK__ (CLASS, PARENT, OnDelete); \
63 IMP_PYCALLBACK__DC (CLASS, PARENT, OnDraw); \
64 IMP_PYCALLBACK__DC (CLASS, PARENT, OnDrawContents); \
65 IMP_PYCALLBACK__DCBOOL (CLASS, PARENT, OnDrawBranches); \
66 IMP_PYCALLBACK__DC (CLASS, PARENT, OnMoveLinks); \
67 IMP_PYCALLBACK__DC (CLASS, PARENT, OnErase); \
68 IMP_PYCALLBACK__DC (CLASS, PARENT, OnEraseContents); \
69 IMP_PYCALLBACK__DC (CLASS, PARENT, OnHighlight); \
70 IMP_PYCALLBACK__2DBL2INT (CLASS, PARENT, OnLeftClick); \
71 IMP_PYCALLBACK__2DBL2INT (CLASS, PARENT, OnLeftDoubleClick); \
72 IMP_PYCALLBACK__2DBL2INT (CLASS, PARENT, OnRightClick); \
73 IMP_PYCALLBACK__2DBL (CLASS, PARENT, OnSize); \
74 IMP_PYCALLBACK_BOOL_DC4DBLBOOL (CLASS, PARENT, OnMovePre); \
75 IMP_PYCALLBACK__DC4DBLBOOL (CLASS, PARENT, OnMovePost); \
76 IMP_PYCALLBACK__BOOL2DBL2INT (CLASS, PARENT, OnDragLeft); \
77 IMP_PYCALLBACK__2DBL2INT (CLASS, PARENT, OnBeginDragLeft); \
78 IMP_PYCALLBACK__2DBL2INT (CLASS, PARENT, OnEndDragLeft); \
79 IMP_PYCALLBACK__BOOL2DBL2INT (CLASS, PARENT, OnDragRight); \
80 IMP_PYCALLBACK__2DBL2INT (CLASS, PARENT, OnBeginDragRight); \
81 IMP_PYCALLBACK__2DBL2INT (CLASS, PARENT, OnEndDragRight); \
82 IMP_PYCALLBACK__DC4DBL (CLASS, PARENT, OnDrawOutline); \
83 IMP_PYCALLBACK__DC (CLASS, PARENT, OnDrawControlPoints); \
84 IMP_PYCALLBACK__DC (CLASS, PARENT, OnEraseControlPoints); \
85 IMP_PYCALLBACK__DCBOOL (CLASS, PARENT, OnMoveLink); \
86 IMP_PYCALLBACK__WXCPBOOL2DBL2INT(CLASS, PARENT, OnSizingDragLeft); \
87 IMP_PYCALLBACK__WXCP2DBL2INT (CLASS, PARENT, OnSizingBeginDragLeft);\
88 IMP_PYCALLBACK__WXCP2DBL2INT (CLASS, PARENT, OnSizingEndDragLeft); \
89 IMP_PYCALLBACK__2DBL (CLASS, PARENT, OnBeginSize); \
90 IMP_PYCALLBACK__2DBL (CLASS, PARENT, OnEndSize); \
91
92
93 // This one may be difficult...
94 //PYCALLBACK__??????? (PARENT, OnChangeAttachment);
95
96
97
98 //---------------------------------------------------------------------------
99 // These are prototypes of some helper functions found in oglhelpers.cpp
100
101 wxList* wxPy_wxListHelper(PyObject* pyList, char* className);
102 wxList* wxPy_wxRealPoint_ListHelper(PyObject* pyList);
103
104
105
106 //---------------------------------------------------------------------------
107 // Classes that derive from the shapes and such, but which know how to turn
108 // virtual callbacks into Python callbacks.
109
110 class wxPyShapeCanvas : public wxShapeCanvas {
111 DECLARE_DYNAMIC_CLASS(wxPyShapeCanvas);
112 public:
113 wxPyShapeCanvas(wxWindow* parent = NULL, wxWindowID id = -1,
114 const wxPoint& pos = wxDefaultPosition,
115 const wxSize& size = wxDefaultSize,
116 long style = wxBORDER)
117 : wxShapeCanvas(parent, id, pos, size, style) {}
118
119 DEC_PYCALLBACK__2DBLINT(OnBeginDragLeft);
120 DEC_PYCALLBACK__2DBLINT(OnBeginDragRight);
121 DEC_PYCALLBACK__2DBLINT(OnEndDragLeft);
122 DEC_PYCALLBACK__2DBLINT(OnEndDragRight);
123 DEC_PYCALLBACK__BOOL2DBLINT(OnDragLeft);
124 DEC_PYCALLBACK__BOOL2DBLINT(OnDragRight);
125 DEC_PYCALLBACK__2DBLINT(OnLeftClick);
126 DEC_PYCALLBACK__2DBLINT(OnRightClick);
127
128 PYPRIVATE;
129 };
130
131
132
133 class wxPyShapeEvtHandler : public wxShapeEvtHandler {
134 DECLARE_DYNAMIC_CLASS(wxPyShapeEvtHandler);
135 public:
136 wxPyShapeEvtHandler(wxShapeEvtHandler *prev = NULL, wxShape *shape = NULL)
137 : wxShapeEvtHandler(prev, shape) {}
138
139 WXSHAPE_DEC_CALLBACKS();
140 };
141
142
143 class wxPyShape : public wxShape {
144 DECLARE_ABSTRACT_CLASS(wxPyShape);
145 public:
146 wxPyShape(wxPyShapeCanvas *can = NULL)
147 : wxShape(can) {}
148
149 WXSHAPE_DEC_CALLBACKS();
150
151 };
152
153
154 class wxPyRectangleShape : public wxRectangleShape {
155 DECLARE_DYNAMIC_CLASS(wxPyRectangleShape);
156 public:
157 wxPyRectangleShape(double width = 0.0, double height = 0.0)
158 : wxRectangleShape(width, height) {}
159
160 WXSHAPE_DEC_CALLBACKS();
161 };
162
163 class wxPyControlPoint : public wxControlPoint {
164 DECLARE_DYNAMIC_CLASS(wxPyControlPoint);
165 public:
166 wxPyControlPoint(wxPyShapeCanvas *the_canvas = NULL,
167 wxPyShape *object = NULL,
168 double size = 0.0, double the_xoffset = 0.0,
169 double the_yoffset = 0.0, int the_type = 0)
170 : wxControlPoint(the_canvas, object, size,
171 the_xoffset, the_yoffset, the_type) {}
172
173 WXSHAPE_DEC_CALLBACKS();
174 };
175
176
177
178 class wxPyBitmapShape : public wxBitmapShape {
179 DECLARE_DYNAMIC_CLASS(wxPyBitmapShape);
180 public:
181 wxPyBitmapShape() : wxBitmapShape() {}
182
183 WXSHAPE_DEC_CALLBACKS();
184 };
185
186
187
188 class wxPyDrawnShape : public wxDrawnShape {
189 DECLARE_DYNAMIC_CLASS(wxPyDrawnShape);
190 public:
191 wxPyDrawnShape() : wxDrawnShape() {}
192
193 WXSHAPE_DEC_CALLBACKS();
194 };
195
196
197 class wxPyCompositeShape : public wxCompositeShape {
198 DECLARE_DYNAMIC_CLASS(wxPyCompositeShape);
199 public:
200 wxPyCompositeShape() : wxCompositeShape() {}
201
202 WXSHAPE_DEC_CALLBACKS();
203 };
204
205
206 class wxPyDividedShape : public wxDividedShape {
207 DECLARE_DYNAMIC_CLASS(wxPyDividedShape);
208 public:
209 wxPyDividedShape(double width = 0.0, double height = 0.0)
210 : wxDividedShape(width, height) {}
211
212 WXSHAPE_DEC_CALLBACKS();
213 };
214
215
216 class wxPyDivisionShape : public wxDivisionShape {
217 DECLARE_DYNAMIC_CLASS(wxPyDivisionShape);
218 public:
219 wxPyDivisionShape() : wxDivisionShape() {}
220
221 WXSHAPE_DEC_CALLBACKS();
222 };
223
224
225 class wxPyEllipseShape : public wxEllipseShape {
226 DECLARE_DYNAMIC_CLASS(wxPyEllipseShape);
227 public:
228 wxPyEllipseShape(double width = 0.0, double height = 0.0)
229 : wxEllipseShape(width, height) {}
230
231 WXSHAPE_DEC_CALLBACKS();
232 };
233
234
235 class wxPyCircleShape : public wxCircleShape {
236 DECLARE_DYNAMIC_CLASS(wxPyCircleShape);
237 public:
238 wxPyCircleShape(double width = 0.0)
239 : wxCircleShape(width) {}
240
241 WXSHAPE_DEC_CALLBACKS();
242 };
243
244
245 class wxPyLineShape : public wxLineShape {
246 DECLARE_DYNAMIC_CLASS(wxPyLineShape);
247 public:
248 wxPyLineShape() : wxLineShape() {}
249
250 WXSHAPE_DEC_CALLBACKS();
251 };
252
253
254 class wxPyPolygonShape : public wxPolygonShape {
255 DECLARE_DYNAMIC_CLASS(wxPyPolygonShape);
256 public:
257 wxPyPolygonShape() : wxPolygonShape() {}
258
259 WXSHAPE_DEC_CALLBACKS();
260 };
261
262
263 class wxPyTextShape : public wxTextShape {
264 DECLARE_DYNAMIC_CLASS(wxPyTextShape);
265 public:
266 wxPyTextShape(double width = 0.0, double height = 0.0)
267 : wxTextShape(width, height) {}
268
269 WXSHAPE_DEC_CALLBACKS();
270 };
271
272
273
274 //---------------------------------------------------------------------------
275 //---------------------------------------------------------------------------
276 #endif
277
278