]> git.saurik.com Git - wxWidgets.git/blame - wxPython/contrib/ogl/ogl.i
Copied/merged from the 2.2 branch.
[wxWidgets.git] / wxPython / contrib / ogl / ogl.i
CommitLineData
e91a9dfc
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: ogl.i
3// Purpose: SWIG definitions for the wxWindows Object Graphics Library
4//
5// Author: Robin Dunn
6//
7// Created: 30-June-1999
8// RCS-ID: $Id$
9// Copyright: (c) 1998 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13
14%module ogl
15
16%{
1e7ecb7b 17#include "export.h"
e91a9dfc 18#include "oglhelpers.h"
e91a9dfc
RD
19%}
20
21//---------------------------------------------------------------------------
22
23%include typemaps.i
24%include my_typemaps.i
25
26%extern wx.i
27%import windows.i
28%extern _defs.i
29%extern misc.i
30%extern gdi.i
31
32%include _ogldefs.i
33
34%import oglbasic.i
35%import oglshapes.i
36%import oglshapes2.i
37%import oglcanvas.i
38
39
e91a9dfc
RD
40%pragma(python) code = "import wx"
41
42//---------------------------------------------------------------------------
43
44
45enum {
46 KEY_SHIFT,
47 KEY_CTRL,
48 ARROW_NONE,
49 ARROW_END,
50 ARROW_BOTH,
51 ARROW_MIDDLE,
52 ARROW_START,
53 ARROW_HOLLOW_CIRCLE,
54 ARROW_FILLED_CIRCLE,
55 ARROW_ARROW,
56 ARROW_SINGLE_OBLIQUE,
57 ARROW_DOUBLE_OBLIQUE,
58 ARROW_METAFILE,
59 ARROW_POSITION_END,
60 ARROW_POSITION_START,
61 CONTROL_POINT_VERTICAL,
62 CONTROL_POINT_HORIZONTAL,
63 CONTROL_POINT_DIAGONAL,
64 CONTROL_POINT_ENDPOINT_TO,
65 CONTROL_POINT_ENDPOINT_FROM,
66 CONTROL_POINT_LINE,
67 FORMAT_NONE,
68 FORMAT_CENTRE_HORIZ,
69 FORMAT_CENTRE_VERT,
70 FORMAT_SIZE_TO_CONTENTS,
71 LINE_ALIGNMENT_HORIZ,
72 LINE_ALIGNMENT_VERT,
73 LINE_ALIGNMENT_TO_NEXT_HANDLE,
74 LINE_ALIGNMENT_NONE,
75 SHADOW_NONE,
76 SHADOW_LEFT,
77 SHADOW_RIGHT,
78// SHAPE_BASIC,
79// SHAPE_RECTANGLE,
80// SHAPE_ELLIPSE,
81// SHAPE_POLYGON,
82// SHAPE_CIRCLE,
83// SHAPE_LINE,
84// SHAPE_DIVIDED_RECTANGLE,
85// SHAPE_COMPOSITE,
86// SHAPE_CONTROL_POINT,
87// SHAPE_DRAWN,
88// SHAPE_DIVISION,
89// SHAPE_LABEL_OBJECT,
90// SHAPE_BITMAP,
91// SHAPE_DIVIDED_OBJECT_CONTROL_POINT,
92// OBJECT_REGION,
93 OP_CLICK_LEFT,
94 OP_CLICK_RIGHT,
95 OP_DRAG_LEFT,
96 OP_DRAG_RIGHT,
97 OP_ALL,
98 ATTACHMENT_MODE_NONE,
99 ATTACHMENT_MODE_EDGE,
100 ATTACHMENT_MODE_BRANCHING,
101 BRANCHING_ATTACHMENT_NORMAL,
102 BRANCHING_ATTACHMENT_BLOB,
103
104 gyCONSTRAINT_CENTRED_VERTICALLY,
105 gyCONSTRAINT_CENTRED_HORIZONTALLY,
106 gyCONSTRAINT_CENTRED_BOTH,
107 gyCONSTRAINT_LEFT_OF,
108 gyCONSTRAINT_RIGHT_OF,
109 gyCONSTRAINT_ABOVE,
110 gyCONSTRAINT_BELOW,
111 gyCONSTRAINT_ALIGNED_TOP,
112 gyCONSTRAINT_ALIGNED_BOTTOM,
113 gyCONSTRAINT_ALIGNED_LEFT,
114 gyCONSTRAINT_ALIGNED_RIGHT,
115 gyCONSTRAINT_MIDALIGNED_TOP,
116 gyCONSTRAINT_MIDALIGNED_BOTTOM,
117 gyCONSTRAINT_MIDALIGNED_LEFT,
118 gyCONSTRAINT_MIDALIGNED_RIGHT,
119
120 DIVISION_SIDE_NONE,
121 DIVISION_SIDE_LEFT,
122 DIVISION_SIDE_TOP,
123 DIVISION_SIDE_RIGHT,
124 DIVISION_SIDE_BOTTOM,
125
126};
127
128
129
130//---------------------------------------------------------------------------
131
132void wxOGLInitialize();
133void wxOGLCleanUp();
134
135
1e7ecb7b 136%{
e91a9dfc 137//---------------------------------------------------------------------------
1e7ecb7b
RD
138// This one will work for any class for the VERY generic cases, but beyond that
139// the helper needs to know more about the type.
140
141wxList* wxPy_wxListHelper(PyObject* pyList, char* className) {
142 bool doSave = wxPyRestoreThread();
143 if (!PyList_Check(pyList)) {
144 PyErr_SetString(PyExc_TypeError, "Expected a list object.");
145 wxPySaveThread(doSave);
146 return NULL;
147 }
148 int count = PyList_Size(pyList);
149 wxList* list = new wxList;
150 if (! list) {
151 PyErr_SetString(PyExc_MemoryError, "Unable to allocate wxList object");
152 wxPySaveThread(doSave);
153 return NULL;
154 }
155 for (int x=0; x<count; x++) {
156 PyObject* pyo = PyList_GetItem(pyList, x);
157 wxObject* wxo = NULL;
158
159 if (SWIG_GetPtrObj(pyo, (void **)&wxo, className)) {
160 char errmsg[1024];
161 sprintf(errmsg, "Type error, expected list of %s objects", className);
162 PyErr_SetString(PyExc_TypeError, errmsg);
163 wxPySaveThread(doSave);
164 return NULL;
165 }
166 list->Append(wxo);
167 }
168 wxPySaveThread(doSave);
169 return list;
170}
171
e91a9dfc 172//---------------------------------------------------------------------------
1e7ecb7b
RD
173
174wxList* wxPy_wxRealPoint_ListHelper(PyObject* pyList) {
175 bool doSave = wxPyRestoreThread();
176 if (!PyList_Check(pyList)) {
177 PyErr_SetString(PyExc_TypeError, "Expected a list object.");
178 wxPySaveThread(doSave);
179 return NULL;
180 }
181 int count = PyList_Size(pyList);
182 wxList* list = new wxList;
183 if (! list) {
184 PyErr_SetString(PyExc_MemoryError, "Unable to allocate wxList object");
185 wxPySaveThread(doSave);
186 return NULL;
187 }
188 for (int x=0; x<count; x++) {
189 PyObject* pyo = PyList_GetItem(pyList, x);
190
191 if (PyTuple_Check(pyo)) {
192 PyObject* o1 = PyNumber_Float(PyTuple_GetItem(pyo, 0));
193 PyObject* o2 = PyNumber_Float(PyTuple_GetItem(pyo, 1));
194
195 double val1 = (o1 ? PyFloat_AsDouble(o1) : 0.0);
196 double val2 = (o2 ? PyFloat_AsDouble(o2) : 0.0);
197
198 list->Append((wxObject*) new wxRealPoint(val1, val2));
199
200 } else {
201 wxRealPoint* wxo = NULL;
202 if (SWIG_GetPtrObj(pyo, (void **)&wxo, "_wxRealPoint_p")) {
203 PyErr_SetString(PyExc_TypeError, "Type error, expected list of wxRealPoint objects or 2-tuples");
204 wxPySaveThread(doSave);
205 return NULL;
206 }
207 list->Append((wxObject*) new wxRealPoint(*wxo));
208 }
209 }
210 wxPySaveThread(doSave);
211 return list;
212}
213
214
e91a9dfc 215//---------------------------------------------------------------------------
1e7ecb7b
RD
216
217
e91a9dfc
RD
218extern "C" SWIGEXPORT(void) initoglbasicc();
219extern "C" SWIGEXPORT(void) initoglshapesc();
220extern "C" SWIGEXPORT(void) initoglshapes2c();
221extern "C" SWIGEXPORT(void) initoglcanvasc();
222%}
223
389c5527 224
e91a9dfc
RD
225%init %{
226
227 initoglbasicc();
228 initoglshapesc();
229 initoglshapes2c();
230 initoglcanvasc();
231
232
e508a2b6
RD
233 wxClassInfo::CleanUpClasses();
234 wxClassInfo::InitializeClasses();
e91a9dfc
RD
235
236%}
237
238//----------------------------------------------------------------------
239// And this gets appended to the shadow class file.
240//----------------------------------------------------------------------
241
c368d904 242%pragma(python) include="_oglextras.py";
e91a9dfc
RD
243
244//---------------------------------------------------------------------------
245//---------------------------------------------------------------------------