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