]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/src/windows.i
1. more C++ parser fixes - now it almost parses wx/string.h
[wxWidgets.git] / utils / 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 %}
20
21 //----------------------------------------------------------------------
22
23 %include typemaps.i
24 %include my_typemaps.i
25
26 // Import some definitions of other classes, etc.
27 %import _defs.i
28 %import misc.i
29 %import gdi.i
30
31 %pragma(python) code = "import wx"
32
33 //---------------------------------------------------------------------------
34
35 class wxEvtHandler {
36 public:
37 %addmethods {
38 void Connect( int id, int lastId, int eventType, PyObject* func) {
39 if (PyCallable_Check(func)) {
40 self->Connect(id, lastId, eventType,
41 (wxObjectEventFunction) &wxPyCallback::EventThunker,
42 new wxPyCallback(func));
43 }
44 }
45 }
46 };
47
48
49 //----------------------------------------------------------------------
50
51
52 class wxWindow : public wxEvtHandler {
53 public:
54
55 wxWindow(wxWindow* parent, const wxWindowID id,
56 const wxPoint& pos = wxPyDefaultPosition,
57 const wxSize& size = wxPyDefaultSize,
58 long style = 0,
59 char* name = "panel");
60
61 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
62
63 void CaptureMouse();
64 void Center(int direction = wxHORIZONTAL);
65 void Centre(int direction = wxHORIZONTAL);
66 %name(ClientToScreenXY)void ClientToScreen(int *BOTH, int *BOTH);
67 #ifndef __WXGTK__
68 wxPoint ClientToScreen(const wxPoint& pt);
69 #endif
70 bool Close(int force = FALSE);
71 bool Destroy();
72 void DestroyChildren();
73 #ifdef __WXMSW__
74 void DragAcceptFiles(bool accept);
75 #endif
76 void Enable(bool enable);
77 //bool FakePopupMenu(wxMenu* menu, int x, int y);
78 %name(FindWindowById) wxWindow* FindWindow(long id);
79 %name(FindWindowByName) wxWindow* FindWindow(const wxString& name);
80 void Fit();
81 wxColour GetBackgroundColour();
82 int GetCharHeight();
83 int GetCharWidth();
84 %name(GetClientSizeTuple) void GetClientSize(int *OUTPUT, int *OUTPUT);
85 wxSize GetClientSize();
86 wxLayoutConstraints * GetConstraints();
87 #ifdef __WXMSW__
88 wxButton* GetDefaultItem();
89 #endif
90 //wxEvtHandler* GetEventHandler();
91
92 wxFont& GetFont();
93 wxColour GetForegroundColour();
94 wxWindow * GetGrandParent();
95 int GetId();
96 wxString GetLabel();
97 wxString GetName();
98 wxWindow * GetParent();
99 %name(GetPositionTuple) void GetPosition(int *OUTPUT, int *OUTPUT);
100 wxPoint GetPosition();
101 wxRect GetRect();
102 int GetReturnCode();
103 int GetScrollThumb(int orientation);
104 int GetScrollPos(int orientation);
105 int GetScrollRange(int orientation);
106 %name(GetSizeTuple) void GetSize(int *OUTPUT, int *OUTPUT);
107 wxSize GetSize();
108 void GetTextExtent(const wxString& string, int *OUTPUT, int *OUTPUT);
109 %name(GetFullTextExtent)void GetTextExtent(const wxString& string,
110 int *OUTPUT, int *OUTPUT, int *OUTPUT, int* OUTPUT,
111 const wxFont* font = NULL); //, bool use16 = FALSE)
112 wxString GetTitle();
113 long GetWindowStyleFlag();
114 void InitDialog();
115 bool IsEnabled();
116 bool IsRetained();
117 bool IsShown();
118 void Layout();
119 bool LoadFromResource(wxWindow* parent, const wxString& resourceName, const wxResourceTable* resourceTable = NULL);
120 void Lower();
121 void MakeModal(bool flag);
122 %name(MoveXY)void Move(int x, int y);
123 #ifndef __WXGTK__
124 void Move(const wxPoint& point);
125 #endif
126
127 //wxEvtHandler* PopEventHandler(bool deleteHandler = FALSE);
128 bool PopupMenu(wxMenu *menu, int x, int y);
129 //void PushEventHandler(wxEvtHandler* handler);
130
131 void Raise();
132 void Refresh(bool eraseBackground = TRUE, const wxRect* rect = NULL);
133 void ReleaseMouse();
134 %name(ScreenToClientXY)void ScreenToClient(int *BOTH, int *BOTH);
135 #ifndef __WXGTK__
136 wxPoint ScreenToClient(const wxPoint& pt);
137 #endif
138
139 void ScrollWindow(int dx, int dy, const wxRect* rect = NULL);
140 void SetAcceleratorTable(const wxAcceleratorTable& accel);
141 void SetAutoLayout(bool autoLayout);
142 void SetBackgroundColour(const wxColour& colour);
143 void SetConstraints(wxLayoutConstraints *constraints);
144 void SetDoubleClick(bool allowDoubleClick);
145 void SetFocus();
146 void SetFont(const wxFont& font);
147 void SetForegroundColour(const wxColour& colour);
148 void SetId(int id);
149 void SetName(const wxString& name);
150 void SetReturnCode(int retCode);
151 void SetScrollbar(int orientation, int position, int thumbSize, int range, bool refresh = TRUE);
152 void SetScrollPos(int orientation, int pos, bool refresh = TRUE);
153
154 %name(SetDimensions) void SetSize(int x, int y, int width, int height, int sizeFlags=wxSIZE_AUTO);
155 %addmethods {
156 void SetSize(const wxSize& size) {
157 self->SetSize(size.x, size.y);
158 }
159
160 void SetPosition(const wxPoint& pos) {
161 self->SetSize(pos.x, pos.y, -1, -1);
162 }
163 }
164
165 void SetSizeHints(int minW=-1, int minH=-1, int maxW=-1, int maxH=-1, int incW=-1, int incH=-1);
166 %name(SetClientSizeWH)void SetClientSize(int width, int height);
167 #ifndef __WXGTK__
168 void SetClientSize(const wxSize& size);
169 #endif
170 //void SetPalette(wxPalette* palette);
171 void SetCursor(const wxCursor&cursor);
172 //void SetEventHandler(wxEvtHandler* handler);
173 void SetTitle(const wxString& title);
174 bool Show(bool show);
175 bool TransferDataFromWindow();
176 bool TransferDataToWindow();
177 bool Validate();
178 void WarpPointer(int x, int y);
179
180 %name(ConvertDialogPointToPixels) wxPoint ConvertDialogToPixels(const wxPoint& pt);
181 %name(ConvertDialogSizeToPixels) wxSize ConvertDialogToPixels(const wxSize& sz);
182
183 %name(ConvertPixelPointToDialog) wxPoint ConvertPixelsToDialog(const wxPoint& pt);
184 %name(ConvertPixelSizeToDialog) wxSize ConvertPixelsToDialog(const wxSize& sz);
185
186 %name(SetToolTipString)void SetToolTip(const wxString &tip);
187 void SetToolTip(wxToolTip *tooltip);
188 wxToolTip* GetToolTip();
189 };
190
191 %pragma(python) code = "
192 def wxDLG_PNT(win, point):
193 return win.ConvertDialogPointToPixels(point)
194
195 def wxDLG_SZE(win, size):
196 return win.ConvertDialogSizeToPixels(size)
197 "
198
199 #ifdef __WXMSW__
200 %inline %{
201 wxWindow* wxWindow_FindFocus() {
202 return wxWindow::FindFocus();
203 }
204 %}
205
206
207 %inline %{
208 wxWindow* wxWindow_FromHWND(unsigned long hWnd) {
209 wxWindow* win = new wxWindow;
210 win->SetHWND(hWnd);
211 win->SubclassWin(hWnd);
212 return win;
213 }
214 %}
215 #endif
216
217
218 //---------------------------------------------------------------------------
219
220 class wxPanel : public wxWindow {
221 public:
222 wxPanel(wxWindow* parent,
223 const wxWindowID id,
224 const wxPoint& pos = wxPyDefaultPosition,
225 const wxSize& size = wxPyDefaultSize,
226 long style = wxTAB_TRAVERSAL,
227 const char* name = "panel");
228
229 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
230
231 void InitDialog();
232 };
233
234 //---------------------------------------------------------------------------
235
236 class wxDialog : public wxPanel {
237 public:
238 wxDialog(wxWindow* parent,
239 const wxWindowID id,
240 const wxString& title,
241 const wxPoint& pos = wxPyDefaultPosition,
242 const wxSize& size = wxPyDefaultSize,
243 long style = wxDEFAULT_DIALOG_STYLE,
244 const char* name = "dialogBox");
245
246 %pragma(python) addtomethod = "__init__:wx._StdDialogCallbacks(self)"
247
248 void Centre(int direction = wxBOTH);
249 void EndModal(int retCode);
250 wxString GetTitle();
251 void Iconize(bool iconize);
252 bool IsIconized();
253 void SetModal(bool flag);
254 bool IsModal();
255 void SetTitle(const wxString& title);
256 bool Show(bool show);
257 int ShowModal();
258 };
259
260 //---------------------------------------------------------------------------
261
262 class wxScrolledWindow : public wxWindow {
263 public:
264 wxScrolledWindow(wxWindow* parent,
265 const wxWindowID id = -1,
266 const wxPoint& pos = wxPyDefaultPosition,
267 const wxSize& size = wxPyDefaultSize,
268 long style = wxHSCROLL | wxVSCROLL,
269 char* name = "scrolledWindow");
270
271 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
272 %pragma(python) addtomethod = "__init__:wx._StdOnScrollCallbacks(self)"
273
274 void EnableScrolling(bool xScrolling, bool yScrolling);
275 void GetScrollPixelsPerUnit(int* OUTPUT, int* OUTPUT);
276 void GetVirtualSize(int* OUTPUT, int* OUTPUT);
277 bool IsRetained();
278 void PrepareDC(wxDC& dc);
279 void Scroll(int x, int y);
280 void SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY,
281 int noUnitsX, int noUnitsY,
282 int xPos = 0, int yPos = 0);
283 void ViewStart(int* OUTPUT, int* OUTPUT);
284 };
285
286 //----------------------------------------------------------------------
287
288
289 class wxMenu : public wxEvtHandler {
290 public:
291 wxMenu(const wxString& title = wxPyEmptyStr);
292
293 void Append(int id, const wxString& item,
294 const wxString& helpString = wxPyEmptyStr,
295 int checkable = FALSE);
296 %name(AppendMenu)void Append(int id, const wxString& item, wxMenu *subMenu,
297 const wxString& helpString = wxPyEmptyStr);
298 #ifndef __WXGTK__
299 %name(AppendItem)void Append(const wxMenuItem* item);
300 #endif
301
302 void AppendSeparator();
303 void Break();
304 void Check(int id, bool flag);
305 void Enable(int id, bool enable);
306 int FindItem(const wxString& itemString);
307 wxString GetTitle();
308 void SetTitle(const wxString& title);
309 wxMenuItem* FindItemForId(int id);
310 wxString GetHelpString(int id);
311 wxString GetLabel(int id);
312 void SetHelpString(int id, const wxString& helpString);
313 bool IsChecked(int id);
314 bool IsEnabled(int id);
315 void SetLabel(int id, const wxString& label);
316 };
317
318
319 //
320 // This one knows how to set a callback and handle INC- and DECREFing it. To
321 // be used for PopupMenus, but you must retain a referece to it while using
322 // it.
323 //
324 class wxPyMenu : public wxMenu {
325 public:
326 wxPyMenu(const wxString& title = wxPyEmptyStr, PyObject* func = NULL);
327 ~wxPyMenu();
328 };
329
330 //----------------------------------------------------------------------
331
332 class wxMenuBar : public wxEvtHandler {
333 public:
334 wxMenuBar();
335
336 void Append(wxMenu *menu, const wxString& title);
337 void Check(int id, bool flag);
338 bool Checked(int id);
339 void Enable(int id, bool enable);
340 bool Enabled(int id);
341 int FindMenuItem(const wxString& menuString, const wxString& itemString);
342 wxMenuItem * FindItemForId(int id);
343 #ifdef __WXMSW__
344 void EnableTop(int pos, bool enable);
345 wxString GetHelpString(int id);
346 wxString GetLabel(int id);
347 void SetHelpString(int id, const wxString& helpString);
348 void SetLabel(int id, const wxString& label);
349 wxString GetLabelTop(int pos);
350 void SetLabelTop(int pos, const wxString& label);
351 #endif
352 int GetMenuCount();
353 wxMenu* GetMenu(int i);
354 };
355
356
357 //----------------------------------------------------------------------
358
359 class wxMenuItem {
360 public:
361 bool IsSeparator();
362 bool IsEnabled();
363 bool IsChecked();
364 bool IsCheckable();
365 int GetId();
366 wxMenu* GetSubMenu();
367 void SetName(const wxString& strName);
368 const wxString& GetName();
369 const wxString& GetHelp();
370 void SetHelp(const wxString& strHelp);
371 void Enable(bool bDoEnable = TRUE);
372 void Check(bool bDoCheck = TRUE);
373
374 #ifdef __WXMSW__
375 void DeleteSubMenu();
376 #endif
377 };
378
379 //---------------------------------------------------------------------------
380 /////////////////////////////////////////////////////////////////////////////
381 //
382 // $Log$
383 // Revision 1.13 1999/02/20 10:02:38 RD
384 // Changes needed to enable wxGTK compatibility.
385 //
386 // Revision 1.12 1999/02/20 09:03:03 RD
387 // Added wxWindow_FromHWND(hWnd) for wxMSW to construct a wxWindow from a
388 // window handle. If you can get the window handle into the python code,
389 // it should just work... More news on this later.
390 //
391 // Added wxImageList, wxToolTip.
392 //
393 // Re-enabled wxConfig.DeleteAll() since it is reportedly fixed for the
394 // wxRegConfig class.
395 //
396 // As usual, some bug fixes, tweaks, etc.
397 //
398 // Revision 1.11 1998/12/18 15:49:10 RR
399 //
400 // wxClipboard now serves the primary selection as well
401 // wxPython fixes
402 // warning mesages
403 //
404 // Revision 1.10 1998/12/17 17:52:20 RD
405 //
406 // wxPython 0.5.2
407 // Minor fixes and SWIG code generation for RR's changes. MSW and GTK
408 // versions are much closer now!
409 //
410 // Revision 1.9 1998/12/17 14:07:46 RR
411 //
412 // Removed minor differences between wxMSW and wxGTK
413 //
414 // Revision 1.8 1998/12/16 22:10:56 RD
415 //
416 // Tweaks needed to be able to build wxPython with wxGTK.
417 //
418 // Revision 1.7 1998/12/15 20:41:25 RD
419 // Changed the import semantics from "from wxPython import *" to "from
420 // wxPython.wx import *" This is for people who are worried about
421 // namespace pollution, they can use "from wxPython import wx" and then
422 // prefix all the wxPython identifiers with "wx."
423 //
424 // Added wxTaskbarIcon for wxMSW.
425 //
426 // Made the events work for wxGrid.
427 //
428 // Added wxConfig.
429 //
430 // Added wxMiniFrame for wxGTK, (untested.)
431 //
432 // Changed many of the args and return values that were pointers to gdi
433 // objects to references to reflect changes in the wxWindows API.
434 //
435 // Other assorted fixes and additions.
436 //
437 // Revision 1.6 1998/10/02 06:40:43 RD
438 //
439 // Version 0.4 of wxPython for MSW.
440 //
441 // Revision 1.5 1998/08/17 18:29:40 RD
442 // Removed an extra method definition
443 //
444 // Revision 1.4 1998/08/16 04:31:11 RD
445 // More wxGTK work.
446 //
447 // Revision 1.3 1998/08/15 07:36:47 RD
448 // - Moved the header in the .i files out of the code that gets put into
449 // the .cpp files. It caused CVS conflicts because of the RCS ID being
450 // different each time.
451 //
452 // - A few minor fixes.
453 //
454 // Revision 1.2 1998/08/14 23:36:46 RD
455 // Beginings of wxGTK compatibility
456 //
457 // Revision 1.1 1998/08/09 08:25:52 RD
458 // Initial version
459 //
460 //
461
462