]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: windows.i | |
3 | // Purpose: SWIG definitions of various window classes | |
4 | // | |
5 | // Author: Robin Dunn | |
6 | // | |
7 | // Created: 6/24/97 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 1998 by Total Control Software | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | ||
14 | %module windows | |
15 | ||
16 | %{ | |
17 | #include "helpers.h" | |
18 | #include <wx/menuitem.h> | |
19 | #include <wx/tooltip.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 | %import misc.i | |
30 | %import gdi.i | |
31 | %import clip_dnd.i | |
32 | ||
33 | %pragma(python) code = "import wx" | |
34 | ||
35 | ||
36 | %{ | |
37 | static wxString wxPyEmptyStr(""); | |
38 | %} | |
39 | ||
40 | //--------------------------------------------------------------------------- | |
41 | ||
42 | class wxEvtHandler : public wxObject { | |
43 | public: | |
44 | wxEvtHandler(); | |
45 | ||
46 | bool ProcessEvent(wxEvent& event); | |
47 | void AddPendingEvent(wxEvent& event); | |
48 | //bool SearchEventTable(wxEventTable& table, wxEvent& event); | |
49 | ||
50 | bool GetEvtHandlerEnabled(); | |
51 | void SetEvtHandlerEnabled(bool enabled); | |
52 | ||
53 | wxEvtHandler* GetNextHandler(); | |
54 | wxEvtHandler* GetPreviousHandler(); | |
55 | void SetNextHandler(wxEvtHandler* handler); | |
56 | void SetPreviousHandler(wxEvtHandler* handler); | |
57 | ||
58 | ||
59 | %addmethods { | |
60 | void Connect( int id, int lastId, int eventType, PyObject* func) { | |
61 | if (PyCallable_Check(func)) { | |
62 | self->Connect(id, lastId, eventType, | |
63 | (wxObjectEventFunction) &wxPyCallback::EventThunker, | |
64 | new wxPyCallback(func)); | |
65 | } | |
66 | } | |
67 | ||
68 | bool Disconnect(int id, int lastId = -1, | |
69 | wxEventType eventType = wxEVT_NULL) { | |
70 | return self->Disconnect(id, lastId, eventType, | |
71 | (wxObjectEventFunction) | |
72 | &wxPyCallback::EventThunker); | |
73 | } | |
74 | } | |
75 | ||
76 | // %pragma(python) addtoclass = " | |
77 | // _prop_list_ = {} | |
78 | // " | |
79 | // %pragma(python) addtoclass = " | |
80 | // def __getattr__(self, name): | |
81 | // pl = self._prop_list_ | |
82 | // if pl.has_key(name): | |
83 | // getFunc, setFunc = pl[name] | |
84 | // if getFunc: | |
85 | // return getattr(self, getFunc)() | |
86 | // else: | |
87 | // raise TypeError, '%s property is write-only' % name | |
88 | // raise AttributeError, name | |
89 | ||
90 | // def __setattr__(self, name, value): | |
91 | // pl = self._prop_list_ | |
92 | // if pl.has_key(name): | |
93 | // getFunc, setFunc = pl[name] | |
94 | // if setFunc: | |
95 | // return getattr(self, setFunc)(value) | |
96 | // else: | |
97 | // raise TypeError, '%s property is read-only' % name | |
98 | // self.__dict__[name] = value | |
99 | // " | |
100 | }; | |
101 | ||
102 | ||
103 | //---------------------------------------------------------------------- | |
104 | ||
105 | class wxValidator : public wxEvtHandler { | |
106 | public: | |
107 | wxValidator(); | |
108 | //~wxValidator(); | |
109 | ||
110 | wxValidator* Clone(); | |
111 | wxWindow* GetWindow(); | |
112 | void SetWindow(wxWindow* window); | |
113 | ||
114 | static bool IsSilent(); | |
115 | static void SetBellOnError(int doIt = TRUE); | |
116 | ||
117 | // // Properties list | |
118 | // %pragma(python) addtoclass = " | |
119 | // _prop_list_ = { | |
120 | // 'window' : ('GetWindow', 'SetWindow'), | |
121 | // } | |
122 | // _prop_list_.update(wxEvtHandler._prop_list_) | |
123 | // " | |
124 | }; | |
125 | ||
126 | ||
127 | //---------------------------------------------------------------------- | |
128 | %{ | |
129 | class wxPyValidator : public wxValidator { | |
130 | DECLARE_DYNAMIC_CLASS(wxPyValidator); | |
131 | public: | |
132 | wxPyValidator() { | |
133 | } | |
134 | ||
135 | ~wxPyValidator() { | |
136 | } | |
137 | ||
138 | wxObject* wxPyValidator::Clone() const { | |
139 | wxPyValidator* ptr = NULL; | |
140 | wxPyValidator* self = (wxPyValidator*)this; | |
141 | ||
142 | bool doSave = wxPyRestoreThread(); | |
143 | if (self->m_myInst.findCallback("Clone")) { | |
144 | PyObject* ro; | |
145 | ro = self->m_myInst.callCallbackObj(Py_BuildValue("()")); | |
146 | if (ro) { | |
147 | SWIG_GetPtrObj(ro, (void **)&ptr, "_wxPyValidator_p"); | |
148 | Py_DECREF(ro); | |
149 | } | |
150 | } | |
151 | // This is very dangerous!!! But is the only way I could find | |
152 | // to squash a memory leak. Currently it is okay, but if the | |
153 | // validator architecture in wxWindows ever changes, problems | |
154 | // could arise. | |
155 | delete self; | |
156 | ||
157 | wxPySaveThread(doSave); | |
158 | return ptr; | |
159 | } | |
160 | ||
161 | ||
162 | DEC_PYCALLBACK_BOOL_WXWIN(Validate); | |
163 | DEC_PYCALLBACK_BOOL_(TransferToWindow); | |
164 | DEC_PYCALLBACK_BOOL_(TransferFromWindow); | |
165 | ||
166 | PYPRIVATE; | |
167 | }; | |
168 | ||
169 | IMP_PYCALLBACK_BOOL_WXWIN(wxPyValidator, wxValidator, Validate); | |
170 | IMP_PYCALLBACK_BOOL_(wxPyValidator, wxValidator, TransferToWindow); | |
171 | IMP_PYCALLBACK_BOOL_(wxPyValidator, wxValidator, TransferFromWindow); | |
172 | ||
173 | IMPLEMENT_DYNAMIC_CLASS(wxPyValidator, wxValidator); | |
174 | ||
175 | %} | |
176 | ||
177 | class wxPyValidator : public wxValidator { | |
178 | public: | |
179 | wxPyValidator(); | |
180 | ||
181 | void _setSelf(PyObject* self, PyObject* _class, int incref=TRUE); | |
182 | %pragma(python) addtomethod = "__init__:self._setSelf(self, wxPyValidator, 1)" | |
183 | ||
184 | }; | |
185 | ||
186 | //---------------------------------------------------------------------- | |
187 | ||
188 | %apply int * INOUT { int* x, int* y }; | |
189 | ||
190 | class wxWindow : public wxEvtHandler { | |
191 | public: | |
192 | ||
193 | wxWindow(wxWindow* parent, const wxWindowID id, | |
194 | const wxPoint& pos = wxDefaultPosition, | |
195 | const wxSize& size = wxDefaultSize, | |
196 | long style = 0, | |
197 | char* name = "panel"); | |
198 | ||
199 | %pragma(python) addtomethod = "__init__:#wx._StdWindowCallbacks(self)" | |
200 | ||
201 | void CaptureMouse(); | |
202 | void Center(int direction = wxBOTH); | |
203 | void Centre(int direction = wxBOTH); | |
204 | void CentreOnParent(int direction = wxBOTH ); | |
205 | void CenterOnParent(int direction = wxBOTH ); | |
206 | void CentreOnScreen(int direction = wxBOTH ); | |
207 | void CenterOnScreen(int direction = wxBOTH ); | |
208 | ||
209 | void Clear(); | |
210 | ||
211 | // (uses apply'ed INOUT typemap, see above) | |
212 | %name(ClientToScreenXY)void ClientToScreen(int* x, int* y); | |
213 | wxPoint ClientToScreen(const wxPoint& pt); | |
214 | ||
215 | bool Close(int force = FALSE); | |
216 | bool Destroy(); | |
217 | void DestroyChildren(); | |
218 | bool IsBeingDeleted(); | |
219 | #ifdef __WXMSW__ | |
220 | void DragAcceptFiles(bool accept); | |
221 | #endif | |
222 | void Enable(bool enable); | |
223 | //bool FakePopupMenu(wxMenu* menu, int x, int y); | |
224 | %name(FindWindowById) wxWindow* FindWindow(long id); | |
225 | %name(FindWindowByName) wxWindow* FindWindow(const wxString& name); | |
226 | void Fit(); | |
227 | wxColour GetBackgroundColour(); | |
228 | ||
229 | //wxList& GetChildren(); | |
230 | %addmethods { | |
231 | PyObject* GetChildren() { | |
232 | wxWindowList& list = self->GetChildren(); | |
233 | return wxPy_ConvertList(&list, "wxWindow"); | |
234 | } | |
235 | } | |
236 | ||
237 | int GetCharHeight(); | |
238 | int GetCharWidth(); | |
239 | %name(GetClientSizeTuple) void GetClientSize(int *OUTPUT, int *OUTPUT); | |
240 | wxSize GetClientSize(); | |
241 | wxLayoutConstraints * GetConstraints(); | |
242 | wxEvtHandler* GetEventHandler(); | |
243 | ||
244 | wxFont& GetFont(); | |
245 | wxColour GetForegroundColour(); | |
246 | wxWindow * GetGrandParent(); | |
247 | %addmethods { | |
248 | long GetHandle() { | |
249 | return wxPyGetWinHandle(self); //(long)self->GetHandle(); | |
250 | } | |
251 | } | |
252 | int GetId(); | |
253 | wxString GetLabel(); | |
254 | void SetLabel(const wxString& label); | |
255 | wxString GetName(); | |
256 | wxWindow * GetParent(); | |
257 | %name(GetPositionTuple) void GetPosition(int *OUTPUT, int *OUTPUT); | |
258 | wxPoint GetPosition(); | |
259 | wxRect GetRect(); | |
260 | int GetScrollThumb(int orientation); | |
261 | int GetScrollPos(int orientation); | |
262 | int GetScrollRange(int orientation); | |
263 | %name(GetSizeTuple) void GetSize(int *OUTPUT, int *OUTPUT); | |
264 | wxSize GetSize(); | |
265 | void GetTextExtent(const wxString& string, int *OUTPUT, int *OUTPUT); | |
266 | %name(GetFullTextExtent)void GetTextExtent(const wxString& string, | |
267 | int *OUTPUT, int *OUTPUT, int *OUTPUT, int* OUTPUT, | |
268 | const wxFont* font = NULL); //, bool use16 = FALSE) | |
269 | wxString GetTitle(); | |
270 | wxRegion GetUpdateRegion(); | |
271 | long GetWindowStyleFlag(); | |
272 | void SetWindowStyleFlag(long style); | |
273 | void SetWindowStyle(long style); | |
274 | bool Hide(); | |
275 | void InitDialog(); | |
276 | bool IsEnabled(); | |
277 | bool IsExposed( int x, int y, int w=0, int h=0 ); | |
278 | %name(IsExposedPoint) bool IsExposed( const wxPoint& pt ); | |
279 | %name(IsExposedRect) bool IsExposed( const wxRect& rect ); | |
280 | bool IsRetained(); | |
281 | bool IsShown(); | |
282 | bool IsTopLevel(); | |
283 | void Layout(); | |
284 | bool LoadFromResource(wxWindow* parent, const wxString& resourceName, const wxResourceTable* resourceTable = NULL); | |
285 | void Lower(); | |
286 | void MakeModal(bool flag); | |
287 | %name(MoveXY)void Move(int x, int y); | |
288 | void Move(const wxPoint& point); | |
289 | ||
290 | wxEvtHandler* PopEventHandler(bool deleteHandler = FALSE); | |
291 | void PushEventHandler(wxEvtHandler* handler); | |
292 | ||
293 | %name(PopupMenuXY)bool PopupMenu(wxMenu *menu, int x, int y); | |
294 | bool PopupMenu(wxMenu *menu, const wxPoint& pos); | |
295 | ||
296 | void Raise(); | |
297 | void Refresh(bool eraseBackground = TRUE, const wxRect* rect = NULL); | |
298 | void ReleaseMouse(); | |
299 | void RemoveChild(wxWindow* child); | |
300 | bool Reparent( wxWindow* newParent ); | |
301 | ||
302 | // (uses apply'ed INOUT typemap, see above) | |
303 | %name(ScreenToClientXY)void ScreenToClient(int *x, int *y); | |
304 | wxPoint ScreenToClient(const wxPoint& pt); | |
305 | ||
306 | void ScrollWindow(int dx, int dy, const wxRect* rect = NULL); | |
307 | void SetAcceleratorTable(const wxAcceleratorTable& accel); | |
308 | void SetAutoLayout(bool autoLayout); | |
309 | bool GetAutoLayout(); | |
310 | void SetBackgroundColour(const wxColour& colour); | |
311 | void SetConstraints(wxLayoutConstraints *constraints); | |
312 | void UnsetConstraints(wxLayoutConstraints *constraints); | |
313 | void SetFocus(); | |
314 | bool AcceptsFocus(); | |
315 | void SetFont(const wxFont& font); | |
316 | void SetForegroundColour(const wxColour& colour); | |
317 | void SetId(int id); | |
318 | void SetName(const wxString& name); | |
319 | void SetScrollbar(int orientation, int position, int thumbSize, int range, int refresh = TRUE); | |
320 | void SetScrollPos(int orientation, int pos, bool refresh = TRUE); | |
321 | ||
322 | %name(SetDimensions) void SetSize(int x, int y, int width, int height, int sizeFlags=wxSIZE_AUTO); | |
323 | %addmethods { | |
324 | void SetSize(const wxSize& size) { | |
325 | self->SetSize(size); | |
326 | } | |
327 | ||
328 | void SetPosition(const wxPoint& pos) { | |
329 | self->Move(pos); | |
330 | } | |
331 | ||
332 | void SetRect(const wxRect& rect, int sizeFlags=wxSIZE_AUTO) { | |
333 | self->SetSize(rect, sizeFlags); | |
334 | } | |
335 | } | |
336 | ||
337 | void SetSizeHints(int minW=-1, int minH=-1, int maxW=-1, int maxH=-1, int incW=-1, int incH=-1); | |
338 | %name(SetClientSizeWH)void SetClientSize(int width, int height); | |
339 | void SetClientSize(const wxSize& size); | |
340 | //void SetPalette(wxPalette* palette); | |
341 | void SetCursor(const wxCursor&cursor); | |
342 | void SetEventHandler(wxEvtHandler* handler); | |
343 | void SetExtraStyle(long exStyle); | |
344 | void SetTitle(const wxString& title); | |
345 | bool Show(bool show); | |
346 | bool TransferDataFromWindow(); | |
347 | bool TransferDataToWindow(); | |
348 | bool Validate(); | |
349 | void WarpPointer(int x, int y); | |
350 | ||
351 | %name(ConvertDialogPointToPixels) wxPoint ConvertDialogToPixels(const wxPoint& pt); | |
352 | %name(ConvertDialogSizeToPixels) wxSize ConvertDialogToPixels(const wxSize& sz); | |
353 | ||
354 | %name(DLG_PNT) wxPoint ConvertDialogToPixels(const wxPoint& pt); | |
355 | %name(DLG_SZE) wxSize ConvertDialogToPixels(const wxSize& sz); | |
356 | ||
357 | %name(ConvertPixelPointToDialog) wxPoint ConvertPixelsToDialog(const wxPoint& pt); | |
358 | %name(ConvertPixelSizeToDialog) wxSize ConvertPixelsToDialog(const wxSize& sz); | |
359 | ||
360 | %name(SetToolTipString)void SetToolTip(const wxString &tip); | |
361 | void SetToolTip(wxToolTip *tooltip); | |
362 | wxToolTip* GetToolTip(); | |
363 | ||
364 | void SetSizer(wxSizer* sizer); | |
365 | wxSizer* GetSizer(); | |
366 | ||
367 | wxValidator* GetValidator(); | |
368 | void SetValidator(const wxValidator& validator); | |
369 | ||
370 | void SetDropTarget(wxDropTarget* target); | |
371 | wxDropTarget* GetDropTarget(); | |
372 | %pragma(python) addtomethod = "SetDropTarget:_args[0].thisown = 0" | |
373 | ||
374 | wxSize GetBestSize(); | |
375 | ||
376 | void SetCaret(wxCaret *caret); | |
377 | wxCaret *GetCaret(); | |
378 | %pragma(python) addtoclass = "# replaces broken shadow method | |
379 | def GetCaret(self, *_args, **_kwargs): | |
380 | from misc2 import wxCaretPtr | |
381 | val = apply(windowsc.wxWindow_GetCaret,(self,) + _args, _kwargs) | |
382 | if val: val = wxCaretPtr(val) | |
383 | return val | |
384 | " | |
385 | ||
386 | ||
387 | // // Properties list | |
388 | // %pragma(python) addtoclass = " | |
389 | // _prop_list_ = { | |
390 | // 'size' : ('GetSize', 'SetSize'), | |
391 | // 'enabled' : ('IsEnabled', 'Enable'), | |
392 | // 'background' : ('GetBackgroundColour', 'SetBackgroundColour'), | |
393 | // 'foreground' : ('GetForegroundColour', 'SetForegroundColour'), | |
394 | // 'children' : ('GetChildren', None), | |
395 | // 'charHeight' : ('GetCharHeight', None), | |
396 | // 'charWidth' : ('GetCharWidth', None), | |
397 | // 'clientSize' : ('GetClientSize', 'SetClientSize'), | |
398 | // 'font' : ('GetFont', 'SetFont'), | |
399 | // 'grandParent' : ('GetGrandParent', None), | |
400 | // 'handle' : ('GetHandle', None), | |
401 | // 'label' : ('GetLabel', 'SetLabel'), | |
402 | // 'name' : ('GetName', 'SetName'), | |
403 | // 'parent' : ('GetParent', None), | |
404 | // 'position' : ('GetPosition', 'SetPosition'), | |
405 | // 'title' : ('GetTitle', 'SetTitle'), | |
406 | // 'style' : ('GetWindowStyleFlag', 'SetWindowStyleFlag'), | |
407 | // 'visible' : ('IsShown', 'Show'), | |
408 | // 'toolTip' : ('GetToolTip', 'SetToolTip'), | |
409 | // 'sizer' : ('GetSizer', 'SetSizer'), | |
410 | // 'validator' : ('GetValidator', 'SetValidator'), | |
411 | // 'dropTarget' : ('GetDropTarget', 'SetDropTarget'), | |
412 | // 'caret' : ('GetCaret', 'SetCaret'), | |
413 | // 'autoLayout' : ('GetAutoLayout', 'SetAutoLayout'), | |
414 | // 'constraints' : ('GetConstraints', 'SetConstraints'), | |
415 | ||
416 | // } | |
417 | // _prop_list_.update(wxEvtHandler._prop_list_) | |
418 | // " | |
419 | }; | |
420 | ||
421 | ||
422 | ||
423 | ||
424 | %pragma(python) code = " | |
425 | def wxDLG_PNT(win, point_or_x, y=None): | |
426 | if y is None: | |
427 | return win.ConvertDialogPointToPixels(point_or_x) | |
428 | else: | |
429 | return win.ConvertDialogPointToPixels(wxPoint(point_or_x, y)) | |
430 | ||
431 | def wxDLG_SZE(win, size_width, height=None): | |
432 | if height is None: | |
433 | return win.ConvertDialogSizeToPixels(size_width) | |
434 | else: | |
435 | return win.ConvertDialogSizeToPixels(wxSize(size_width, height)) | |
436 | " | |
437 | ||
438 | %inline %{ | |
439 | wxWindow* wxWindow_FindFocus() { | |
440 | return wxWindow::FindFocus(); | |
441 | } | |
442 | %} | |
443 | ||
444 | ||
445 | #ifdef __WXMSW__ | |
446 | %inline %{ | |
447 | wxWindow* wxWindow_FromHWND(unsigned long hWnd) { | |
448 | wxWindow* win = new wxWindow; | |
449 | win->SetHWND(hWnd); | |
450 | win->SubclassWin(hWnd); | |
451 | return win; | |
452 | } | |
453 | %} | |
454 | #endif | |
455 | ||
456 | %inline %{ | |
457 | int wxWindow_NewControlId() { | |
458 | return wxWindow::NewControlId(); | |
459 | } | |
460 | int wxWindow_NextControlId(int id) { | |
461 | return wxWindow::NextControlId(id); | |
462 | } | |
463 | int wxWindow_PrevControlId(int id) { | |
464 | return wxWindow::PrevControlId(id); | |
465 | } | |
466 | %} | |
467 | ||
468 | ||
469 | //--------------------------------------------------------------------------- | |
470 | ||
471 | class wxPanel : public wxWindow { | |
472 | public: | |
473 | wxPanel(wxWindow* parent, | |
474 | const wxWindowID id, | |
475 | const wxPoint& pos = wxDefaultPosition, | |
476 | const wxSize& size = wxDefaultSize, | |
477 | long style = wxTAB_TRAVERSAL, | |
478 | const char* name = "panel"); | |
479 | ||
480 | %pragma(python) addtomethod = "__init__:#wx._StdWindowCallbacks(self)" | |
481 | ||
482 | void InitDialog(); | |
483 | wxButton* GetDefaultItem(); | |
484 | void SetDefaultItem(wxButton *btn); | |
485 | ||
486 | }; | |
487 | ||
488 | //--------------------------------------------------------------------------- | |
489 | ||
490 | class wxDialog : public wxPanel { | |
491 | public: | |
492 | wxDialog(wxWindow* parent, | |
493 | const wxWindowID id, | |
494 | const wxString& title, | |
495 | const wxPoint& pos = wxDefaultPosition, | |
496 | const wxSize& size = wxDefaultSize, | |
497 | long style = wxDEFAULT_DIALOG_STYLE, | |
498 | const char* name = "dialogBox"); | |
499 | ||
500 | %pragma(python) addtomethod = "__init__:#wx._StdDialogCallbacks(self)" | |
501 | ||
502 | void Centre(int direction = wxBOTH); | |
503 | void EndModal(int retCode); | |
504 | wxString GetTitle(); | |
505 | void Iconize(bool iconize); | |
506 | bool IsIconized(); | |
507 | void SetModal(bool flag); | |
508 | bool IsModal(); | |
509 | void SetTitle(const wxString& title); | |
510 | bool Show(bool show); | |
511 | int ShowModal(); | |
512 | ||
513 | int GetReturnCode(); | |
514 | void SetReturnCode(int retCode); | |
515 | ||
516 | wxSizer* CreateTextSizer( const wxString &message ); | |
517 | wxSizer* CreateButtonSizer( long flags ); | |
518 | ||
519 | }; | |
520 | ||
521 | //--------------------------------------------------------------------------- | |
522 | ||
523 | ||
524 | // TODO: Add wrappers for the wxScrollHelper class, make wxScrolledWindow | |
525 | // derive from it and wxPanel. | |
526 | ||
527 | ||
528 | class wxScrolledWindow : public wxPanel { | |
529 | public: | |
530 | wxScrolledWindow(wxWindow* parent, | |
531 | const wxWindowID id = -1, | |
532 | const wxPoint& pos = wxDefaultPosition, | |
533 | const wxSize& size = wxDefaultSize, | |
534 | long style = wxHSCROLL | wxVSCROLL, | |
535 | char* name = "scrolledWindow"); | |
536 | ||
537 | %pragma(python) addtomethod = "__init__:#wx._StdWindowCallbacks(self)" | |
538 | %pragma(python) addtomethod = "__init__:#wx._StdOnScrollCallbacks(self)" | |
539 | ||
540 | void EnableScrolling(bool xScrolling, bool yScrolling); | |
541 | int GetScrollPageSize(int orient); | |
542 | void GetScrollPixelsPerUnit(int* OUTPUT, int* OUTPUT); | |
543 | wxWindow* GetTargetWindow(); | |
544 | void GetVirtualSize(int* OUTPUT, int* OUTPUT); | |
545 | bool IsRetained(); | |
546 | void PrepareDC(wxDC& dc); | |
547 | void Scroll(int x, int y); | |
548 | void SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY, | |
549 | int noUnitsX, int noUnitsY, | |
550 | int xPos = 0, int yPos = 0, int noRefresh=FALSE); | |
551 | void SetScrollPageSize(int orient, int pageSize); | |
552 | void SetTargetWindow(wxWindow* window); | |
553 | void GetViewStart(int* OUTPUT, int* OUTPUT); | |
554 | %pragma(python) addtoclass = "ViewStart = GetViewStart" | |
555 | ||
556 | void CalcScrolledPosition( int x, int y, int *OUTPUT, int *OUTPUT); | |
557 | void CalcUnscrolledPosition( int x, int y, int *OUTPUT, int *OUTPUT); | |
558 | ||
559 | void SetScale(double xs, double ys); | |
560 | double GetScaleX(); | |
561 | double GetScaleY(); | |
562 | ||
563 | void AdjustScrollbars(); | |
564 | }; | |
565 | ||
566 | //---------------------------------------------------------------------- | |
567 | ||
568 | ||
569 | class wxMenu : public wxEvtHandler { | |
570 | public: | |
571 | wxMenu(const wxString& title = wxPyEmptyStr, long style = 0); | |
572 | ||
573 | void Append(int id, const wxString& item, | |
574 | const wxString& helpString = wxPyEmptyStr, | |
575 | int checkable = FALSE); | |
576 | %name(AppendMenu)void Append(int id, const wxString& item, wxMenu *subMenu, | |
577 | const wxString& helpString = wxPyEmptyStr); | |
578 | %name(AppendItem)void Append(const wxMenuItem* item); | |
579 | ||
580 | void AppendSeparator(); | |
581 | void Break(); | |
582 | void Check(int id, bool flag); | |
583 | bool IsChecked(int id); | |
584 | void Enable(int id, bool enable); | |
585 | bool IsEnabled(int id); | |
586 | ||
587 | int FindItem(const wxString& itemString); | |
588 | %name(FindItemById)wxMenuItem* FindItem(int id/*, wxMenu **menu = NULL*/); | |
589 | ||
590 | wxString GetTitle(); | |
591 | void SetTitle(const wxString& title); | |
592 | ||
593 | wxString GetLabel(int id); | |
594 | void SetLabel(int id, const wxString& label); | |
595 | ||
596 | wxString GetHelpString(int id); | |
597 | void SetHelpString(int id, const wxString& helpString); | |
598 | void UpdateUI(wxEvtHandler* source = NULL); | |
599 | ||
600 | bool Delete(int id); | |
601 | %name(DeleteItem)bool Delete(wxMenuItem *item); | |
602 | bool Insert(size_t pos, wxMenuItem *item); | |
603 | wxMenuItem *Remove(int id); | |
604 | %name(RemoveItem) wxMenuItem *Remove(wxMenuItem *item); | |
605 | ||
606 | %addmethods { | |
607 | void Destroy() { delete self; } | |
608 | } | |
609 | %name(DestroyId)bool Destroy(int id); | |
610 | %name(DestroyItem)bool Destroy(wxMenuItem *item); | |
611 | ||
612 | size_t GetMenuItemCount(); | |
613 | //wxMenuItemList& GetMenuItems(); | |
614 | %addmethods { | |
615 | PyObject* GetMenuItems() { | |
616 | wxMenuItemList& list = self->GetMenuItems(); | |
617 | return wxPy_ConvertList(&list, "wxMenuItem"); | |
618 | } | |
619 | } | |
620 | ||
621 | void SetEventHandler(wxEvtHandler *handler); | |
622 | wxEvtHandler *GetEventHandler(); | |
623 | ||
624 | void SetInvokingWindow(wxWindow *win); | |
625 | wxWindow *GetInvokingWindow(); | |
626 | ||
627 | long GetStyle(); | |
628 | ||
629 | bool IsAttached(); | |
630 | ||
631 | void SetParent(wxMenu *parent); | |
632 | wxMenu *GetParent(); | |
633 | }; | |
634 | ||
635 | ||
636 | //---------------------------------------------------------------------- | |
637 | ||
638 | class wxMenuBar : public wxWindow { | |
639 | public: | |
640 | wxMenuBar(long style = 0); | |
641 | ||
642 | bool Append(wxMenu *menu, const wxString& title); | |
643 | bool Insert(size_t pos, wxMenu *menu, const wxString& title); | |
644 | size_t GetMenuCount(); | |
645 | wxMenu *GetMenu(size_t pos); | |
646 | wxMenu *Replace(size_t pos, wxMenu *menu, const wxString& title); | |
647 | wxMenu *Remove(size_t pos); | |
648 | void EnableTop(size_t pos, bool enable); | |
649 | void SetLabelTop(size_t pos, const wxString& label); | |
650 | wxString GetLabelTop(size_t pos); | |
651 | int FindMenuItem(const wxString& menuString, const wxString& itemString); | |
652 | %name(FindItemById)wxMenuItem* FindItem(int id/*, wxMenu **menu = NULL*/); | |
653 | void Enable(int id, bool enable); | |
654 | void Check(int id, bool check); | |
655 | bool IsChecked(int id); | |
656 | bool IsEnabled(int id); | |
657 | ||
658 | void SetLabel(int id, const wxString &label); | |
659 | wxString GetLabel(int id); | |
660 | ||
661 | void SetHelpString(int id, const wxString& helpString); | |
662 | wxString GetHelpString(int id); | |
663 | ||
664 | }; | |
665 | ||
666 | ||
667 | //---------------------------------------------------------------------- | |
668 | ||
669 | class wxMenuItem : public wxObject { | |
670 | public: | |
671 | wxMenuItem(wxMenu* parentMenu=NULL, int id=wxID_SEPARATOR, | |
672 | const wxString& text = wxPyEmptyStr, | |
673 | const wxString& help = wxPyEmptyStr, | |
674 | bool isCheckable = FALSE, wxMenu* subMenu = NULL); | |
675 | ||
676 | ||
677 | wxMenu *GetMenu(); | |
678 | void SetId(int id); | |
679 | int GetId(); | |
680 | bool IsSeparator(); | |
681 | void SetText(const wxString& str); | |
682 | wxString GetLabel(); | |
683 | const wxString& GetText(); | |
684 | void SetCheckable(bool checkable); | |
685 | bool IsCheckable(); | |
686 | bool IsSubMenu(); | |
687 | void SetSubMenu(wxMenu *menu); | |
688 | wxMenu *GetSubMenu(); | |
689 | void Enable(bool enable = TRUE); | |
690 | bool IsEnabled(); | |
691 | void Check(bool check = TRUE); | |
692 | bool IsChecked(); | |
693 | void Toggle(); | |
694 | void SetHelp(const wxString& str); | |
695 | const wxString& GetHelp(); | |
696 | wxAcceleratorEntry *GetAccel(); | |
697 | void SetAccel(wxAcceleratorEntry *accel); | |
698 | ||
699 | static wxString GetLabelFromText(const wxString& text); | |
700 | ||
701 | // wxOwnerDrawn methods | |
702 | #ifdef __WXMSW__ | |
703 | void SetFont(const wxFont& font); | |
704 | wxFont& GetFont(); | |
705 | void SetTextColour(const wxColour& colText); | |
706 | wxColour GetTextColour(); | |
707 | void SetBackgroundColour(const wxColour& colBack); | |
708 | wxColour GetBackgroundColour(); | |
709 | void SetBitmaps(const wxBitmap& bmpChecked, | |
710 | const wxBitmap& bmpUnchecked = wxNullBitmap); | |
711 | void SetBitmap(const wxBitmap& bmpChecked); | |
712 | const wxBitmap& GetBitmap(bool bChecked = TRUE); | |
713 | void SetMarginWidth(int nWidth); | |
714 | int GetMarginWidth(); | |
715 | static int GetDefaultMarginWidth(); | |
716 | //void SetName(const wxString& strName); | |
717 | //const wxString& GetName(); | |
718 | //void SetCheckable(bool checkable); | |
719 | //bool IsCheckable(); | |
720 | bool IsOwnerDrawn(); | |
721 | void ResetOwnerDrawn(); | |
722 | #endif | |
723 | }; | |
724 | ||
725 | //--------------------------------------------------------------------------- | |
726 | ||
727 | ||
728 |