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