]> git.saurik.com Git - wxWidgets.git/blame - utils/wxPython/src/controls.i
small change to avoid floating point exception in wxScrolledWindow::Scroll
[wxWidgets.git] / utils / wxPython / src / controls.i
CommitLineData
7bf85405
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: controls.i
3// Purpose: Control (widget) classes for wxPython
4//
5// Author: Robin Dunn
6//
7// Created: 6/10/98
8// RCS-ID: $Id$
9// Copyright: (c) 1998 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
03e9bead 13%module controls
7bf85405 14
03e9bead 15%{
7bf85405
RD
16#include "helpers.h"
17#include <wx/slider.h>
62bd0874 18#include <wx/spinbutt.h>
cf694132 19#include <wx/dynarray.h>
8bf5d46e 20#include <wx/statline.h>
6999b0d8 21//#include <wx/toggbutt.h>
fb5e0af0
RD
22
23#ifdef __WXMSW__
9c039d08
RD
24#if wxUSE_OWNER_DRAWN
25#include <wx/checklst.h>
26#endif
fb5e0af0 27#endif
c95e68d8
RD
28
29#ifdef __WXGTK__
30#include <wx/checklst.h>
31#endif
bb0054cd 32
7bf85405
RD
33%}
34
35//----------------------------------------------------------------------
36
37%include typemaps.i
38%include my_typemaps.i
39
40// Import some definitions of other classes, etc.
41%import _defs.i
42%import misc.i
43%import windows.i
44%import gdi.i
45%import events.i
46
b8b8dda7 47%pragma(python) code = "import wx"
9c039d08 48
7bf85405
RD
49//----------------------------------------------------------------------
50
51%{
52wxValidator wxPyDefaultValidator; // Non-const default because of SWIG
53%}
54
2f90df85
RD
55%readonly
56wxValidator wxDefaultValidator;
57%readwrite
58
7bf85405
RD
59//----------------------------------------------------------------------
60
61class wxControl : public wxWindow {
62public:
9b3d3bc4
RD
63 wxControl(wxWindow *parent,
64 wxWindowID id,
65 const wxPoint& pos=wxPyDefaultPosition,
66 const wxSize& size=wxPyDefaultSize,
67 long style=0,
68 const wxValidator& validator=wxPyDefaultValidator,
69 const char* name="control");
70
71 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
6999b0d8 72
7bf85405 73 void Command(wxCommandEvent& event);
fb5e0af0 74 wxString GetLabel();
7bf85405
RD
75 void SetLabel(const wxString& label);
76};
77
6999b0d8 78
7bf85405
RD
79//----------------------------------------------------------------------
80
81class wxButton : public wxControl {
82public:
83 wxButton(wxWindow* parent, wxWindowID id, const wxString& label,
84 const wxPoint& pos = wxPyDefaultPosition,
85 const wxSize& size = wxPyDefaultSize,
86 long style = 0,
87 const wxValidator& validator = wxPyDefaultValidator,
88 char* name = "button");
9c039d08 89
b8b8dda7 90 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 91
7bf85405 92 void SetDefault();
9b3d3bc4
RD
93 void SetBackgroundColour(const wxColour& colour);
94 void SetForegroundColour(const wxColour& colour);
7bf85405
RD
95};
96
6999b0d8
RD
97
98%inline %{
99 wxSize wxButton_GetDefaultSize() {
100 return wxButton::GetDefaultSize();
101 }
102%}
103
7bf85405
RD
104//----------------------------------------------------------------------
105
106class wxBitmapButton : public wxButton {
107public:
108 wxBitmapButton(wxWindow* parent, wxWindowID id, const wxBitmap& bitmap,
109 const wxPoint& pos = wxPyDefaultPosition,
110 const wxSize& size = wxPyDefaultSize,
111 long style = wxBU_AUTODRAW,
112 const wxValidator& validator = wxPyDefaultValidator,
113 char* name = "button");
114
b8b8dda7 115 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 116
fb5e0af0 117 wxBitmap& GetBitmapLabel();
7bf85405
RD
118 wxBitmap& GetBitmapDisabled();
119 wxBitmap& GetBitmapFocus();
7bf85405
RD
120 wxBitmap& GetBitmapSelected();
121 void SetBitmapDisabled(const wxBitmap& bitmap);
122 void SetBitmapFocus(const wxBitmap& bitmap);
7bf85405 123 void SetBitmapSelected(const wxBitmap& bitmap);
fb5e0af0 124 void SetBitmapLabel(const wxBitmap& bitmap);
7bf85405
RD
125
126};
127
6999b0d8
RD
128//----------------------------------------------------------------------
129
130// class wxToggleButton : public wxControl {
131// public:
132// wxToggleButton(wxWindow *parent, wxWindowID id, const wxString& label,
133// const wxPoint& pos = wxPyDefaultPosition,
134// const wxSize& size = wxPyDefaultSize, long style = 0,
135// const wxValidator& validator = wxPyDefaultValidator,
136// const char* name = "toggle");
137// void SetValue(bool value);
138// bool GetValue() const ;
139// void SetLabel(const wxString& label);
140// };
141
142// class wxBitmapToggleButton : public wxToggleButton {
143// public:
144// wxBitmapToggleButton(wxWindow *parent, wxWindowID id, const wxBitmap *label,
145// const wxPoint& pos = wxPyDefaultPosition,
146// const wxSize& size = wxPyDefaultSize, long style = 0,
147// const wxValidator& validator = wxPyDefaultValidator,
148// const char *name = "toggle");
149// void SetLabel(const wxBitmap& bitmap);
150// };
151
152
7bf85405
RD
153//----------------------------------------------------------------------
154
155class wxCheckBox : public wxControl {
156public:
157 wxCheckBox(wxWindow* parent, wxWindowID id, const wxString& label,
158 const wxPoint& pos = wxPyDefaultPosition,
159 const wxSize& size = wxPyDefaultSize,
160 long style = 0,
161 const wxValidator& val = wxPyDefaultValidator,
162 char* name = "checkBox");
163
b8b8dda7 164 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 165
7bf85405
RD
166 bool GetValue();
167 void SetValue(const bool state);
168};
169
170//----------------------------------------------------------------------
171
172class wxChoice : public wxControl {
173public:
174 wxChoice(wxWindow *parent, wxWindowID id,
175 const wxPoint& pos = wxPyDefaultPosition,
176 const wxSize& size = wxPyDefaultSize,
eec92d76 177 int LCOUNT=0, wxString* choices=NULL,
7bf85405
RD
178 long style = 0,
179 const wxValidator& validator = wxPyDefaultValidator,
180 char* name = "choice");
181
b8b8dda7 182 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 183
7bf85405
RD
184 void Append(const wxString& item);
185 void Clear();
186 int FindString(const wxString& string);
187 int GetColumns();
188 int GetSelection();
189 wxString GetString(const int n);
190 wxString GetStringSelection();
191 int Number();
192 void SetColumns(const int n = 1);
193 void SetSelection(const int n);
194 void SetStringSelection(const wxString& string);
195};
196
197//----------------------------------------------------------------------
198
bb0054cd 199class wxComboBox : public wxChoice {
7bf85405
RD
200public:
201 wxComboBox(wxWindow* parent, wxWindowID id, char* value = "",
202 const wxPoint& pos = wxPyDefaultPosition,
203 const wxSize& size = wxPyDefaultSize,
eec92d76 204 int LCOUNT=0, wxString* choices=NULL,
7bf85405
RD
205 long style = 0,
206 const wxValidator& validator = wxPyDefaultValidator,
207 char* name = "comboBox");
208
b8b8dda7 209 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 210
7bf85405
RD
211 void Append(const wxString& item);
212 // TODO: void Append(const wxString& item, char* clientData);
213 void Clear();
214 void Copy();
215 void Cut();
216 void Delete(int n);
217 // NotMember??: void Deselect(int n);
218 int FindString(const wxString& string);
219 // TODO: char* GetClientData(const int n);
220 long GetInsertionPoint();
221 long GetLastPosition();
222 int GetSelection();
223 wxString GetString(int n);
224 wxString GetStringSelection();
225 wxString GetValue();
226 int Number();
227 void Paste();
228 void Replace(long from, long to, const wxString& text);
229 void Remove(long from, long to);
230 // TODO: void SetClientData(const int n, char* data);
231 void SetInsertionPoint(long pos);
232 void SetInsertionPointEnd();
1d99702e 233 void SetSelection(int n);
7bf85405
RD
234 %name(SetMark)void SetSelection(long from, long to);
235 void SetValue(const wxString& text);
236};
237
238//----------------------------------------------------------------------
239
240class wxGauge : public wxControl {
241public:
242 wxGauge(wxWindow* parent, wxWindowID id, int range,
243 const wxPoint& pos = wxPyDefaultPosition,
244 const wxSize& size = wxPyDefaultSize,
245 long style = wxGA_HORIZONTAL,
246 const wxValidator& validator = wxPyDefaultValidator,
247 char* name = "gauge");
248
b8b8dda7 249 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 250
7bf85405
RD
251 int GetBezelFace();
252 int GetRange();
253 int GetShadowWidth();
254 int GetValue();
255 void SetBezelFace(int width);
256 void SetRange(int range);
257 void SetShadowWidth(int width);
258 void SetValue(int pos);
259};
260
261//----------------------------------------------------------------------
262
263class wxStaticBox : public wxControl {
264public:
265 wxStaticBox(wxWindow* parent, wxWindowID id, const wxString& label,
266 const wxPoint& pos = wxPyDefaultPosition,
267 const wxSize& size = wxPyDefaultSize,
268 long style = 0,
269 char* name = "staticBox");
270};
271
272
bb0054cd
RD
273//----------------------------------------------------------------------
274
8bf5d46e 275
bb0054cd
RD
276class wxStaticLine : public wxControl {
277public:
278 wxStaticLine( wxWindow *parent, wxWindowID id,
279 const wxPoint &pos = wxPyDefaultPosition,
280 const wxSize &size = wxPyDefaultSize,
281 long style = wxLI_HORIZONTAL,
d24a34bb 282 const char* name = "staticLine" );
bb0054cd 283};
8bf5d46e 284
bb0054cd 285
7bf85405
RD
286//----------------------------------------------------------------------
287
288class wxStaticText : public wxControl {
289public:
290 wxStaticText(wxWindow* parent, wxWindowID id, const wxString& label,
291 const wxPoint& pos = wxPyDefaultPosition,
292 const wxSize& size = wxPyDefaultSize,
293 long style = 0,
294 char* name = "staticText");
295
b8b8dda7 296 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 297
7bf85405
RD
298 wxString GetLabel();
299 void SetLabel(const wxString& label);
300};
301
302//----------------------------------------------------------------------
303
304class wxListBox : public wxControl {
305public:
306 wxListBox(wxWindow* parent, wxWindowID id,
307 const wxPoint& pos = wxPyDefaultPosition,
308 const wxSize& size = wxPyDefaultSize,
eec92d76 309 int LCOUNT, wxString* choices = NULL,
7bf85405
RD
310 long style = 0,
311 const wxValidator& validator = wxPyDefaultValidator,
312 char* name = "listBox");
313
b8b8dda7 314 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 315
7bf85405
RD
316 void Append(const wxString& item);
317 // TODO: void Append(const wxString& item, char* clientData);
318 void Clear();
319 void Delete(int n);
320 void Deselect(int n);
321 int FindString(const wxString& string);
322 // TODO: char* GetClientData(const int n);
323 int GetSelection();
cf694132
RD
324
325 // int GetSelections(int **selections);
326 %addmethods {
327 PyObject* GetSelections() {
328 wxArrayInt lst;
329 self->GetSelections(lst);
330 PyObject *tup = PyTuple_New(lst.GetCount());
331 for(int i=0; i<lst.GetCount(); i++) {
332 PyTuple_SetItem(tup, i, PyInt_FromLong(lst[i]));
333 }
334 return tup;
335 }
336 }
337
eec92d76 338 void InsertItems(int LCOUNT, wxString* choices, int pos);
2f90df85 339
7bf85405
RD
340 wxString GetString(int n);
341 wxString GetStringSelection();
342 int Number();
343 bool Selected(const int n);
eec92d76 344 void Set(int LCOUNT, wxString* choices);
7bf85405
RD
345 // TODO: void SetClientData(const int n, char* data);
346 void SetFirstItem(int n);
347 %name(SetFirstItemStr)void SetFirstItem(const wxString& string);
348 void SetSelection(int n, bool select = TRUE);
349 void SetString(int n, const wxString& string);
350 void SetStringSelection(const wxString& string, bool select = TRUE);
351};
352
353
9c039d08
RD
354//----------------------------------------------------------------------
355
9c039d08
RD
356class wxCheckListBox : public wxListBox {
357public:
358 wxCheckListBox(wxWindow *parent, wxWindowID id,
359 const wxPoint& pos = wxPyDefaultPosition,
360 const wxSize& size = wxPyDefaultSize,
361 int LCOUNT = 0,
eec92d76 362 wxString* choices = NULL,
9c039d08
RD
363 long style = 0,
364 const wxValidator& validator = wxPyDefaultValidator,
365 char* name = "listBox");
366
b8b8dda7 367 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08
RD
368
369 bool IsChecked(int uiIndex);
694759cf 370 void Check(int uiIndex, int bCheck = TRUE);
eec92d76 371 void InsertItems(int LCOUNT, wxString* choices, int pos);
9c039d08
RD
372
373 int GetItemHeight();
374};
9c039d08 375
7bf85405
RD
376//----------------------------------------------------------------------
377
378class wxTextCtrl : public wxControl {
379public:
380 wxTextCtrl(wxWindow* parent, wxWindowID id, char* value = "",
381 const wxPoint& pos = wxPyDefaultPosition,
382 const wxSize& size = wxPyDefaultSize,
383 long style = 0,
384 const wxValidator& validator = wxPyDefaultValidator,
385 char* name = "text");
386
b8b8dda7 387 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 388
7bf85405
RD
389 void Clear();
390 void Copy();
391 void Cut();
392 void DiscardEdits();
393 long GetInsertionPoint();
394 long GetLastPosition();
395 int GetLineLength(long lineNo);
396 wxString GetLineText(long lineNo);
397 int GetNumberOfLines();
398 wxString GetValue();
399 bool IsModified();
400 bool LoadFile(const wxString& filename);
401 void Paste();
402 void PositionToXY(long pos, long *OUTPUT, long *OUTPUT);
403 void Remove(long from, long to);
404 void Replace(long from, long to, const wxString& value);
405 bool SaveFile(const wxString& filename);
406 void SetEditable(bool editable);
407 void SetInsertionPoint(long pos);
408 void SetInsertionPointEnd();
409 void SetSelection(long from, long to);
410 void SetValue(const wxString& value);
411 void ShowPosition(long pos);
412 void WriteText(const wxString& text);
cf694132 413 void AppendText(const wxString& text);
7bf85405 414 long XYToPosition(long x, long y);
d403febc
RD
415
416 bool CanCopy();
417 bool CanCut();
418 bool CanPaste();
419 bool CanRedo();
420 bool CanUndo();
421 void GetSelection(long* OUTPUT, long* OUTPUT);
422 bool IsEditable();
b1462dfa
RD
423 void Undo();
424 void Redo();
425
426 %addmethods {
427 void write(const wxString& text) {
428 self->AppendText(text + '\n');
429 }
430 }
7bf85405
RD
431};
432
433//----------------------------------------------------------------------
434
435class wxScrollBar : public wxControl {
436public:
437 wxScrollBar(wxWindow* parent, wxWindowID id = -1,
438 const wxPoint& pos = wxPyDefaultPosition,
439 const wxSize& size = wxPyDefaultSize,
440 long style = wxSB_HORIZONTAL,
441 const wxValidator& validator = wxPyDefaultValidator,
442 char* name = "scrollBar");
443
b8b8dda7 444 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 445
7bf85405
RD
446 int GetRange();
447 int GetPageSize();
b8b8dda7 448 int GetThumbPosition();
7bf85405 449 int GetThumbSize();
26b9cf27 450 %name(GetThumbLength) int GetThumbSize(); // to match the docs
b8b8dda7 451 void SetThumbPosition(int viewStart);
7bf85405
RD
452 void SetScrollbar(int position, int thumbSize,
453 int range, int pageSize,
454 bool refresh = TRUE);
455};
456
457//----------------------------------------------------------------------
458
459class wxSpinButton : public wxControl {
460public:
461 wxSpinButton(wxWindow* parent, wxWindowID id = -1,
462 const wxPoint& pos = wxPyDefaultPosition,
463 const wxSize& size = wxPyDefaultSize,
464 long style = wxSP_HORIZONTAL,
465 char* name = "spinButton");
466
467 int GetMax();
468 int GetMin();
469 int GetValue();
470 void SetRange(int min, int max);
471 void SetValue(int value);
472};
473
474//----------------------------------------------------------------------
475
476class wxStaticBitmap : public wxControl {
477public:
478 wxStaticBitmap(wxWindow* parent, wxWindowID id,
479 const wxBitmap& bitmap,
480 const wxPoint& pos = wxPyDefaultPosition,
481 const wxSize& size = wxPyDefaultSize,
482 long style = 0,
483 char* name = "staticBitmap");
484
b8b8dda7 485 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 486
cf694132 487 const wxBitmap& GetBitmap();
7bf85405 488 void SetBitmap(const wxBitmap& bitmap);
8bf5d46e 489 void SetIcon(const wxIcon& icon);
7bf85405
RD
490};
491
492//----------------------------------------------------------------------
493
494class wxRadioBox : public wxControl {
495public:
496 wxRadioBox(wxWindow* parent, wxWindowID id,
497 const wxString& label,
498 const wxPoint& point = wxPyDefaultPosition,
499 const wxSize& size = wxPyDefaultSize,
eec92d76 500 int LCOUNT = 0, wxString* choices = NULL,
7bf85405
RD
501 int majorDimension = 0,
502 long style = wxRA_HORIZONTAL,
503 const wxValidator& validator = wxPyDefaultValidator,
504 char* name = "radioBox");
505
b8b8dda7 506 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 507
0699c864
RD
508 void Enable(bool enable);
509 %name(EnableItem)void Enable(int n, bool enable);
7bf85405 510 int FindString(const wxString& string);
bb0054cd
RD
511
512//*** wxString GetLabel();
513//*** void SetLabel(const wxString& label);
514
0699c864 515 %name(GetItemLabel)wxString GetLabel(int n);
7bf85405
RD
516 int GetSelection();
517 wxString GetString(int n);
518 wxString GetStringSelection();
519 int Number();
0699c864 520 %name(SetItemLabel)void SetLabel(int n, const wxString& label);
7bf85405
RD
521 void SetSelection(int n);
522 void SetStringSelection(const wxString& string);
523 void Show(bool show);
524 %name(ShowItem)void Show(int item, bool show);
525};
526
527//----------------------------------------------------------------------
528
529class wxRadioButton : public wxControl {
530public:
531 wxRadioButton(wxWindow* parent, wxWindowID id,
532 const wxString& label,
533 const wxPoint& pos = wxPyDefaultPosition,
534 const wxSize& size = wxPyDefaultSize,
535 long style = 0,
536 const wxValidator& validator = wxPyDefaultValidator,
537 char* name = "radioButton");
538
b8b8dda7 539 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 540
7bf85405
RD
541 bool GetValue();
542 void SetValue(bool value);
543};
544
545//----------------------------------------------------------------------
546
547class wxSlider : public wxControl {
548public:
549 wxSlider(wxWindow* parent, wxWindowID id,
550 int value, int minValue, int maxValue,
551 const wxPoint& point = wxPyDefaultPosition,
552 const wxSize& size = wxPyDefaultSize,
553 long style = wxSL_HORIZONTAL,
554 const wxValidator& validator = wxPyDefaultValidator,
555 char* name = "slider");
556
b8b8dda7 557 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
9c039d08 558
7bf85405
RD
559 void ClearSel();
560 void ClearTicks();
561 int GetLineSize();
562 int GetMax();
563 int GetMin();
564 int GetPageSize();
565 int GetSelEnd();
566 int GetSelStart();
567 int GetThumbLength();
568 int GetTickFreq();
569 int GetValue();
570 void SetRange(int minValue, int maxValue);
571 void SetTickFreq(int n, int pos);
572 void SetLineSize(int lineSize);
573 void SetPageSize(int pageSize);
574 void SetSelection(int startPos, int endPos);
575 void SetThumbLength(int len);
576 void SetTick(int tickPos);
577 void SetValue(int value);
578};
579
580
581//----------------------------------------------------------------------
582