]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/misc.i
Added a couple more numeric character references
[wxWidgets.git] / wxPython / src / misc.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: misc.i
3 // Purpose: Definitions of miscelaneous functions and classes
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 7/3/97
8 // RCS-ID: $Id$
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13 %module misc
14
15 %{
16 #include "helpers.h"
17 #include <wx/resource.h>
18 #include <wx/tooltip.h>
19 #include <wx/busyinfo.h>
20 %}
21
22 //----------------------------------------------------------------------
23
24 %include typemaps.i
25 %include my_typemaps.i
26
27 // Import some definitions of other classes, etc.
28 %import _defs.i
29
30
31 %{
32 static wxString wxPyEmptyStr("");
33 %}
34
35 //---------------------------------------------------------------------------
36
37
38 class wxSize {
39 public:
40 long x;
41 long y;
42 %name(width) long x;
43 %name(height)long y;
44
45 wxSize(long w=0, long h=0);
46 ~wxSize();
47 void Set(long w, long h);
48 long GetX();
49 long GetY();
50 long GetWidth();
51 long GetHeight();
52 void SetWidth(long w);
53 void SetHeight(long h);
54
55 %addmethods {
56 PyObject* asTuple() {
57 PyObject* tup = PyTuple_New(2);
58 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->x));
59 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->y));
60 return tup;
61 }
62 }
63
64 %pragma(python) addtoclass = "
65 def __str__(self): return str(self.asTuple())
66 def __repr__(self): return str(self.asTuple())
67 def __len__(self): return len(self.asTuple())
68 def __getitem__(self, index): return self.asTuple()[index]
69 def __setitem__(self, index, val):
70 if index == 0: self.width = val
71 elif index == 1: self.height = val
72 else: raise IndexError
73 "
74
75 };
76
77 //---------------------------------------------------------------------------
78
79 class wxRealPoint {
80 public:
81 double x;
82 double y;
83 wxRealPoint(double x=0.0, double y=0.0);
84 ~wxRealPoint();
85
86 %addmethods {
87 void Set(double x, double y) {
88 self->x = x;
89 self->y = y;
90 }
91 PyObject* asTuple() {
92 PyObject* tup = PyTuple_New(2);
93 PyTuple_SET_ITEM(tup, 0, PyFloat_FromDouble(self->x));
94 PyTuple_SET_ITEM(tup, 1, PyFloat_FromDouble(self->y));
95 return tup;
96 }
97
98 wxRealPoint __add__(const wxRealPoint* p) {
99 if (! p) return *self;
100 return *self + *p;
101 }
102
103 wxRealPoint __sub__(const wxRealPoint* p) {
104 if (! p) return *self;
105 return *self - *p;
106 }
107
108 int __cmp__(const wxRealPoint* p) {
109 if (! p) return 0;
110 return *self == *p;
111 }
112 }
113 %pragma(python) addtoclass = "
114 def __str__(self): return str(self.asTuple())
115 def __repr__(self): return str(self.asTuple())
116 def __len__(self): return len(self.asTuple())
117 def __getitem__(self, index): return self.asTuple()[index]
118 def __setitem__(self, index, val):
119 if index == 0: self.width = val
120 elif index == 1: self.height = val
121 else: raise IndexError
122 "
123 };
124
125
126 class wxPoint {
127 public:
128 long x;
129 long y;
130 wxPoint(long x=0, long y=0);
131 ~wxPoint();
132
133 %addmethods {
134 void Set(long x, long y) {
135 self->x = x;
136 self->y = y;
137 }
138 PyObject* asTuple() {
139 PyObject* tup = PyTuple_New(2);
140 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->x));
141 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->y));
142 return tup;
143 }
144
145 wxPoint __add__(const wxPoint* p) {
146 if (! p) return *self;
147 return *self + *p;
148 }
149
150 wxPoint __sub__(const wxPoint* p) {
151 if (! p) return *self;
152 return *self - *p;
153 }
154
155 int __cmp__(const wxPoint* p) {
156 if (! p) return 0;
157 return *self == *p;
158 }
159 }
160 %pragma(python) addtoclass = "
161 def __str__(self): return str(self.asTuple())
162 def __repr__(self): return str(self.asTuple())
163 def __len__(self): return len(self.asTuple())
164 def __getitem__(self, index): return self.asTuple()[index]
165 def __setitem__(self, index, val):
166 if index == 0: self.x = val
167 elif index == 1: self.y = val
168 else: raise IndexError
169 "
170 };
171
172 //---------------------------------------------------------------------------
173
174 class wxRect {
175 public:
176 wxRect(int x=0, int y=0, int w=0, int h=0);
177 // TODO: do this one too... wxRect(const wxPoint& pos, const wxSize& size);
178 ~wxRect();
179
180 int GetX();
181 void SetX(int X);
182 int GetY();
183 void SetY(int Y);
184 int GetWidth();
185 void SetWidth(int w);
186 int GetHeight();
187 void SetHeight(int h);
188
189
190 wxPoint GetPosition();
191 wxSize GetSize();
192
193 int GetLeft();
194 int GetTop();
195 int GetBottom();
196 int GetRight();
197
198 void SetLeft(int left);
199 void SetRight(int right);
200 void SetTop(int top);
201 void SetBottom(int bottom);
202
203 void Inflate(int dx, int dy);
204 bool Inside(int cx, int cy);
205
206 int x, y, width, height;
207
208 %addmethods {
209 PyObject* asTuple() {
210 PyObject* tup = PyTuple_New(4);
211 PyTuple_SET_ITEM(tup, 0, PyInt_FromLong(self->x));
212 PyTuple_SET_ITEM(tup, 1, PyInt_FromLong(self->y));
213 PyTuple_SET_ITEM(tup, 2, PyInt_FromLong(self->width));
214 PyTuple_SET_ITEM(tup, 3, PyInt_FromLong(self->height));
215 return tup;
216 }
217
218 wxRect __add__(const wxRect* rect) {
219 if (! rect) return *self;
220 return *self + *rect;
221 }
222
223 int __cmp__(const wxRect* rect) {
224 if (! rect) return 0;
225 return *self == *rect;
226 }
227 }
228
229 %pragma(python) addtoclass = "
230 def __str__(self): return str(self.asTuple())
231 def __repr__(self): return str(self.asTuple())
232 def __len__(self): return len(self.asTuple())
233 def __getitem__(self, index): return self.asTuple()[index]
234 def __setitem__(self, index, val):
235 if index == 0: self.x = val
236 elif index == 1: self.y = val
237 elif index == 2: self.width = val
238 elif index == 3: self.height = val
239 else: raise IndexError
240
241 # override the __getattr__ made by SWIG
242 def __getattr__(self, name):
243 d = {
244 'x' : miscc.wxRect_x_get,
245 'y' : miscc.wxRect_y_get,
246 'width' : miscc.wxRect_width_get,
247 'height' : miscc.wxRect_height_get,
248 'top' : miscc.wxRect_GetTop,
249 'bottom' : miscc.wxRect_GetBottom,
250 'left' : miscc.wxRect_GetLeft,
251 'right' : miscc.wxRect_GetRight,
252 }
253 try:
254 func = d[name]
255 except KeyError:
256 raise AttributeError,name
257 return func(self)
258
259 # and also the __setattr__
260 def __setattr__(self, name, value):
261 d = {
262 'x' : miscc.wxRect_x_set,
263 'y' : miscc.wxRect_y_set,
264 'width' : miscc.wxRect_width_set,
265 'height' : miscc.wxRect_height_set,
266 'top' : miscc.wxRect_SetTop,
267 'bottom' : miscc.wxRect_SetBottom,
268 'left' : miscc.wxRect_SetLeft,
269 'right' : miscc.wxRect_SetRight,
270 }
271 try:
272 func = d[name]
273 except KeyError:
274 self.__dict__[name] = value
275 return
276 func(self, value)
277 "
278
279 };
280
281
282 %inline %{
283 PyObject* wxIntersectRect(wxRect* r1, wxRect* r2) {
284 wxRegion reg1(*r1);
285 wxRegion reg2(*r2);
286 wxRect dest(0,0,0,0);
287 PyObject* obj;
288
289 reg1.Intersect(reg2);
290 dest = reg1.GetBox();
291
292 if (dest != wxRect(0,0,0,0)) {
293 bool doSave = wxPyRestoreThread();
294 wxRect* newRect = new wxRect(dest);
295 obj = wxPyConstructObject((void*)newRect, "wxRect");
296 PyObject* one = PyInt_FromLong(1);
297 PyObject_SetAttrString(obj, "thisown", one);
298 Py_DECREF(one);
299 wxPySaveThread(doSave);
300 return obj;
301 }
302 Py_INCREF(Py_None);
303 return Py_None;
304 }
305 %}
306
307
308 //---------------------------------------------------------------------------
309 // Miscellaneous functions
310
311 long wxNewId();
312 void wxRegisterId(long id);
313 %name(NewId) long wxNewId();
314 %name(RegisterId) void wxRegisterId(long id);
315 long wxGetCurrentId();
316
317 void wxBell();
318 void wxEndBusyCursor();
319
320 long wxGetElapsedTime(bool resetTimer = TRUE);
321 #ifdef __WXMSW__
322 long wxGetFreeMemory();
323 #endif
324 void wxGetMousePosition(int* OUTPUT, int* OUTPUT);
325 bool wxIsBusy();
326 wxString wxNow();
327 bool wxShell(const wxString& command = wxPyEmptyStr);
328 void wxStartTimer();
329 int wxGetOsVersion(int *OUTPUT, int *OUTPUT);
330 wxString wxGetOsDescription();
331
332 void wxSleep(int secs);
333 void wxUsleep(unsigned long milliseconds);
334 bool wxYield();
335 bool wxYieldIfNeeded();
336 void wxEnableTopLevelWindows(bool enable);
337
338 %inline %{
339 char* wxGetResource(char *section, char *entry, char *file = NULL) {
340 char * retval;
341 wxGetResource(section, entry, &retval, file);
342 return retval;
343 }
344 %}
345
346 wxString wxStripMenuCodes(const wxString& in);
347
348
349 wxString wxGetEmailAddress();
350 wxString wxGetHostName();
351 wxString wxGetFullHostName();
352 wxString wxGetUserId();
353 wxString wxGetUserName();
354 wxString wxGetHomeDir();
355
356
357 //----------------------------------------------------------------------
358
359 enum wxEdge { wxLeft, wxTop, wxRight, wxBottom, wxWidth, wxHeight,
360 wxCentre, wxCenter = wxCentre, wxCentreX, wxCentreY };
361 enum wxRelationship { wxUnconstrained = 0,
362 wxAsIs,
363 wxPercentOf,
364 wxAbove,
365 wxBelow,
366 wxLeftOf,
367 wxRightOf,
368 wxSameAs,
369 wxAbsolute };
370
371
372 class wxIndividualLayoutConstraint {
373 public:
374 // wxIndividualLayoutConstraint();
375 // ~wxIndividualLayoutConstraint();
376
377 void Above(wxWindow *otherWin, int margin=0);
378 void Absolute(int value);
379 void AsIs();
380 void Below(wxWindow *otherWin, int margin=0);
381 void Unconstrained();
382 void LeftOf(wxWindow *otherWin, int margin=0);
383 void PercentOf(wxWindow *otherWin, wxEdge edge, int percent);
384 void RightOf(wxWindow *otherWin, int margin=0);
385 void SameAs(wxWindow *otherWin, wxEdge edge, int margin=0);
386 void Set(wxRelationship rel, wxWindow *otherWin, wxEdge otherEdge, int value=0, int margin=0);
387 };
388
389
390 class wxLayoutConstraints {
391 public:
392 wxLayoutConstraints();
393
394 %readonly
395 wxIndividualLayoutConstraint bottom;
396 wxIndividualLayoutConstraint centreX;
397 wxIndividualLayoutConstraint centreY;
398 wxIndividualLayoutConstraint height;
399 wxIndividualLayoutConstraint left;
400 wxIndividualLayoutConstraint right;
401 wxIndividualLayoutConstraint top;
402 wxIndividualLayoutConstraint width;
403 %readwrite
404 }
405
406
407 //---------------------------------------------------------------------------
408 // Regions, etc.
409
410 enum wxRegionContain {
411 wxOutRegion, wxPartRegion, wxInRegion
412 };
413
414
415 class wxRegion {
416 public:
417 wxRegion(long x=0, long y=0, long width=0, long height=0);
418 ~wxRegion();
419
420 void Clear();
421 wxRegionContain Contains(long x, long y);
422 %name(ContainsPoint)wxRegionContain Contains(const wxPoint& pt);
423 %name(ContainsRect)wxRegionContain Contains(const wxRect& rect);
424 %name(ContainsRectDim)wxRegionContain Contains(long x, long y, long w, long h);
425
426 wxRect GetBox();
427
428 bool Intersect(long x, long y, long width, long height);
429 %name(IntersectRect)bool Intersect(const wxRect& rect);
430 %name(IntersectRegion)bool Intersect(const wxRegion& region);
431
432 bool IsEmpty();
433
434 bool Union(long x, long y, long width, long height);
435 %name(UnionRect)bool Union(const wxRect& rect);
436 %name(UnionRegion)bool Union(const wxRegion& region);
437
438 bool Subtract(long x, long y, long width, long height);
439 %name(SubtractRect)bool Subtract(const wxRect& rect);
440 %name(SubtractRegion)bool Subtract(const wxRegion& region);
441
442 bool Xor(long x, long y, long width, long height);
443 %name(XorRect)bool Xor(const wxRect& rect);
444 %name(XorRegion)bool Xor(const wxRegion& region);
445 };
446
447
448
449 class wxRegionIterator {
450 public:
451 wxRegionIterator(const wxRegion& region);
452 ~wxRegionIterator();
453
454 long GetX();
455 long GetY();
456 long GetW();
457 long GetWidth();
458 long GetH();
459 long GetHeight();
460 wxRect GetRect();
461 bool HaveRects();
462 void Reset();
463
464 %addmethods {
465 void Next() {
466 (*self) ++;
467 }
468 };
469 };
470
471
472
473 //---------------------------------------------------------------------------
474 // Accelerator Entry and Table
475
476 class wxAcceleratorEntry {
477 public:
478 wxAcceleratorEntry(int flags = 0, int keyCode = 0, int cmd = 0);
479 ~wxAcceleratorEntry();
480
481 void Set(int flags, int keyCode, int Cmd);
482 int GetFlags();
483 int GetKeyCode();
484 int GetCommand();
485 };
486
487
488 class wxAcceleratorTable {
489 public:
490 // Can also accept a list of 3-tuples
491 wxAcceleratorTable(int LCOUNT, wxAcceleratorEntry* choices);
492 ~wxAcceleratorTable();
493
494 };
495
496 wxAcceleratorEntry *wxGetAccelFromString(const wxString& label);
497
498 %readonly
499 %{
500 #if 0 // we want to use the definition from the header, not the
501 // one SWIG will generate.
502 %}
503 extern wxAcceleratorTable wxNullAcceleratorTable;
504 %{
505 #endif
506 %}
507 %readwrite
508
509 //---------------------------------------------------------------------------
510
511 class wxBusyInfo {
512 public:
513 wxBusyInfo(const wxString& message);
514 ~wxBusyInfo();
515 };
516
517 //---------------------------------------------------------------------------
518
519
520