]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/_toplvl.i
Add GetClassDefaultAttribute. Since it is static we need to put the
[wxWidgets.git] / wxPython / src / _toplvl.i
CommitLineData
9c039d08 1/////////////////////////////////////////////////////////////////////////////
d14a1e28
RD
2// Name: _toplvl.i
3// Purpose: SWIG definitions for wxTopLevelWindow, wxFrame, wxDialog and etc.
9c039d08
RD
4//
5// Author: Robin Dunn
6//
d14a1e28 7// Created: 27-Aug-1998
9c039d08 8// RCS-ID: $Id$
d14a1e28 9// Copyright: (c) 2003 by Total Control Software
9c039d08
RD
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
d14a1e28 13// Not a %module
9c039d08 14
9c039d08 15
d14a1e28 16//---------------------------------------------------------------------------
9c039d08 17
b2dc1044
RD
18MAKE_CONST_WXSTRING(FrameNameStr);
19MAKE_CONST_WXSTRING(DialogNameStr);
20MAKE_CONST_WXSTRING(StatusLineNameStr);
21MAKE_CONST_WXSTRING(ToolBarNameStr);
137b5242 22
d14a1e28
RD
23//---------------------------------------------------------------------------
24%newgroup
137b5242 25
447f48ba
RD
26enum
27{
28 wxSTAY_ON_TOP,
29 wxICONIZE,
30 wxMINIMIZE,
31 wxMAXIMIZE,
32 wxCLOSE_BOX,
33 wxTHICK_FRAME,
34 wxSYSTEM_MENU,
35 wxMINIMIZE_BOX,
36 wxMAXIMIZE_BOX,
37 wxTINY_CAPTION_HORIZ,
38 wxTINY_CAPTION_VERT,
39 wxRESIZE_BOX,
40 wxRESIZE_BORDER,
41
42 wxDIALOG_NO_PARENT,
43
44 wxDEFAULT_FRAME_STYLE,
45 wxDEFAULT_DIALOG_STYLE,
46
47 wxFRAME_TOOL_WINDOW,
48 wxFRAME_FLOAT_ON_PARENT,
49 wxFRAME_NO_WINDOW_MENU,
50 wxFRAME_NO_TASKBAR,
51 wxFRAME_SHAPED,
52
53 // Obsolete
6cffbf02
RD
54 wxDIALOG_MODAL,
55 wxDIALOG_MODELESS,
56 wxUSER_COLOURS,
57 wxNO_3D,
447f48ba
RD
58};
59
d14a1e28
RD
60enum
61{
f6bcfd97
BP
62 wxFULLSCREEN_NOMENUBAR,
63 wxFULLSCREEN_NOTOOLBAR,
64 wxFULLSCREEN_NOSTATUSBAR,
65 wxFULLSCREEN_NOBORDER,
66 wxFULLSCREEN_NOCAPTION,
ecc08ead
RD
67 wxFULLSCREEN_ALL,
68
69 wxTOPLEVEL_EX_DIALOG,
f6bcfd97
BP
70};
71
72
ecc08ead 73
d14a1e28
RD
74%typemap(in) (int widths, int* widths_field) {
75 $1 = PyList_Size($input);
76 $2 = int_LIST_helper($input);
77 if ($2 == NULL) SWIG_fail;
78}
79
80%typemap(freearg) (int widths, int* widths_field) {
81 if ($2) delete [] $2;
82}
83
84
85//---------------------------------------------------------------------------
ecc08ead
RD
86
87class wxTopLevelWindow : public wxWindow
88{
89public:
ecc08ead 90
d14a1e28 91 // No constructor as it can not be used directly from Python
ecc08ead 92
dd9f7fea
RD
93 // maximize = True => maximize, otherwise - restore
94 virtual void Maximize(bool maximize = True);
ecc08ead
RD
95
96 // undo Maximize() or Iconize()
97 virtual void Restore();
98
dd9f7fea
RD
99 // iconize = True => iconize, otherwise - restore
100 virtual void Iconize(bool iconize = True);
ecc08ead 101
dd9f7fea 102 // return True if the frame is maximized
ecc08ead
RD
103 virtual bool IsMaximized() const;
104
dd9f7fea 105 // return True if the frame is iconized
ecc08ead
RD
106 virtual bool IsIconized() const;
107
108 // get the frame icon
c5943253 109 wxIcon GetIcon() const;
ecc08ead
RD
110
111 // set the frame icon
112 virtual void SetIcon(const wxIcon& icon);
113
0e9b78ce
RD
114 // set the frame icons
115 virtual void SetIcons(const wxIconBundle& icons );
ecc08ead
RD
116
117 // maximize the window to cover entire screen
118 virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
119
dd9f7fea 120 // return True if the frame is in fullscreen mode
ecc08ead
RD
121 virtual bool IsFullScreen() const;
122
123 virtual void SetTitle(const wxString& title);
124 virtual wxString GetTitle() const;
1542ea39
RD
125
126 // Set the shape of the window to the given region.
dd9f7fea 127 // Returns True if the platform supports this feature (and the operation
1542ea39
RD
128 // is successful.)
129 virtual bool SetShape(const wxRegion& region);
130
a212b779
RD
131#ifdef __WXMAC__
132 void MacSetMetalAppearance( bool on ) ;
133 bool MacGetMetalAppearance() const ;
134#endif
ecc08ead
RD
135};
136
ecc08ead 137
d14a1e28
RD
138//---------------------------------------------------------------------------
139%newgroup
140
141// wxFrame is a top-level window with optional menubar, statusbar and toolbar
142//
143// For each of *bars, a frame may have several of them, but only one is
144// managed by the frame, i.e. resized/moved when the frame is and whose size
145// is accounted for in client size calculations - all others should be taken
146// care of manually.
ecc08ead
RD
147
148class wxFrame : public wxTopLevelWindow {
9c039d08 149public:
2b9048c5
RD
150 %pythonAppend wxFrame "self._setOORInfo(self)"
151 %pythonAppend wxFrame() ""
d14a1e28 152
9c039d08 153 wxFrame(wxWindow* parent, const wxWindowID id, const wxString& title,
b68dc582
RD
154 const wxPoint& pos = wxDefaultPosition,
155 const wxSize& size = wxDefaultSize,
9c039d08 156 long style = wxDEFAULT_FRAME_STYLE,
137b5242 157 const wxString& name = wxPyFrameNameStr);
d14a1e28 158 %name(PreFrame)wxFrame();
9c039d08 159
09f3d4e6
RD
160 bool Create(wxWindow* parent, const wxWindowID id, const wxString& title,
161 const wxPoint& pos = wxDefaultPosition,
162 const wxSize& size = wxDefaultSize,
163 long style = wxDEFAULT_FRAME_STYLE,
137b5242 164 const wxString& name = wxPyFrameNameStr);
9c039d08 165
0122b7e3 166
d14a1e28
RD
167 // frame state
168 // -----------
ecc08ead 169
d14a1e28
RD
170 // get the origin of the client area (which may be different from (0, 0)
171 // if the frame has a toolbar) in client coordinates
172 virtual wxPoint GetClientAreaOrigin() const;
173
174 // sends a size event to the window using its current size -- this has an
175 // effect of refreshing the window layout
176 //
177 virtual void SendSizeEvent() { }
178
179
180 // menu bar functions
181 // ------------------
182
183 virtual void SetMenuBar(wxMenuBar *menubar);
184 virtual wxMenuBar *GetMenuBar() const;
ecc08ead
RD
185
186
dd9f7fea 187 // process menu command: returns True if processed
d14a1e28
RD
188 bool ProcessCommand(int winid);
189 %pythoncode { Command = ProcessCommand }
190
ecc08ead 191
d14a1e28
RD
192 // status bar functions
193 // --------------------
194
195 // create the main status bar by calling OnCreateStatusBar()
196 virtual wxStatusBar* CreateStatusBar(int number = 1,
69d81895 197 long style = wxDEFAULT_STATUSBAR_STYLE,
d14a1e28
RD
198 wxWindowID winid = 0,
199 const wxString& name = wxPyStatusLineNameStr);
200// TODO: with directors?
201// // return a new status bar
202// virtual wxStatusBar *OnCreateStatusBar(int number,
203// long style,
204// wxWindowID winid,
205// const wxString& name);
ecc08ead
RD
206
207 // get the main status bar
d14a1e28 208 virtual wxStatusBar *GetStatusBar() const;
ecc08ead
RD
209
210 // sets the main status bar
211 void SetStatusBar(wxStatusBar *statBar);
212
213 // forward these to status bar
214 virtual void SetStatusText(const wxString &text, int number = 0);
d14a1e28 215 virtual void SetStatusWidths(int widths, const int* widths_field); //uses typemap above
94e36a51
RD
216 void PushStatusText(const wxString &text, int number = 0);
217 void PopStatusText(int number = 0);
218
94e36a51
RD
219 // set the status bar pane the help will be shown in
220 void SetStatusBarPane(int n);
221 int GetStatusBarPane() const;
ecc08ead
RD
222
223
d14a1e28
RD
224 // toolbar functions
225 // -----------------
226
227 // create main toolbar bycalling OnCreateToolBar()
228 virtual wxToolBar* CreateToolBar(long style = -1,
229 wxWindowID winid = -1,
137b5242 230 const wxString& name = wxPyToolBarNameStr);
d14a1e28
RD
231// TODO: with directors?
232// // return a new toolbar
233// virtual wxToolBar *OnCreateToolBar(long style,
234// wxWindowID winid,
235// const wxString& name );
ecc08ead
RD
236
237 // get/set the main toolbar
d14a1e28
RD
238 virtual wxToolBar *GetToolBar() const;
239 virtual void SetToolBar(wxToolBar *toolbar);
ecc08ead 240
d14a1e28 241
dd9f7fea
RD
242 // show help text (typically in the statusbar); show is False
243 // if you are hiding the help, True otherwise
d14a1e28 244 virtual void DoGiveHelp(const wxString& text, bool show);
3ef86e32
RD
245
246
247 // send wxUpdateUIEvents for all menu items in the menubar,
248 // or just for menu if non-NULL
249 void DoMenuUpdates(wxMenu* menu = NULL);
880715c9
RD
250
251 static wxVisualAttributes
252 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
9c039d08
RD
253};
254
ecc08ead 255//---------------------------------------------------------------------------
d14a1e28 256%newgroup
ecc08ead
RD
257
258class wxDialog : public wxTopLevelWindow {
259public:
2b9048c5
RD
260 %pythonAppend wxDialog "self._setOORInfo(self)"
261 %pythonAppend wxDialog() ""
d14a1e28 262
ecc08ead
RD
263 wxDialog(wxWindow* parent,
264 const wxWindowID id,
265 const wxString& title,
266 const wxPoint& pos = wxDefaultPosition,
267 const wxSize& size = wxDefaultSize,
268 long style = wxDEFAULT_DIALOG_STYLE,
137b5242 269 const wxString& name = wxPyDialogNameStr);
d14a1e28 270 %name(PreDialog)wxDialog();
ecc08ead
RD
271
272 bool Create(wxWindow* parent,
273 const wxWindowID id,
274 const wxString& title,
275 const wxPoint& pos = wxDefaultPosition,
276 const wxSize& size = wxDefaultSize,
277 long style = wxDEFAULT_DIALOG_STYLE,
137b5242 278 const wxString& name = wxPyDialogNameStr);
ecc08ead 279
0122b7e3 280
d14a1e28
RD
281 // the modal dialogs have a return code - usually the id of the last
282 // pressed button
283 void SetReturnCode(int returnCode) { m_returnCode = returnCode; }
284 int GetReturnCode() const { return m_returnCode; }
ecc08ead 285
d14a1e28
RD
286 // splits text up at newlines and places the
287 // lines into a vertical wxBoxSizer
288 wxSizer *CreateTextSizer( const wxString &message );
ecc08ead 289
d14a1e28
RD
290 // places buttons into a horizontal wxBoxSizer
291 wxSizer *CreateButtonSizer( long flags );
ecc08ead 292
ecc08ead 293
f87da722
RD
294 //void SetModal(bool flag);
295
296 // is the dialog in modal state right now?
d14a1e28
RD
297 virtual bool IsModal() const;
298
299 // Shows the dialog and starts a nested event loop that returns when
300 // EndModal is called.
301 virtual int ShowModal();
302
303 // may be called to terminate the dialog with the given return code
304 virtual void EndModal(int retCode);
880715c9
RD
305
306 static wxVisualAttributes
307 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
d14a1e28 308};
ecc08ead 309
9c039d08 310//---------------------------------------------------------------------------
d14a1e28
RD
311%newgroup
312
9c039d08 313
9c039d08
RD
314class wxMiniFrame : public wxFrame {
315public:
2b9048c5
RD
316 %pythonAppend wxMiniFrame "self._setOORInfo(self)"
317 %pythonAppend wxMiniFrame() ""
d14a1e28 318
9c039d08 319 wxMiniFrame(wxWindow* parent, const wxWindowID id, const wxString& title,
b68dc582
RD
320 const wxPoint& pos = wxDefaultPosition,
321 const wxSize& size = wxDefaultSize,
9c039d08 322 long style = wxDEFAULT_FRAME_STYLE,
137b5242 323 const wxString& name = wxPyFrameNameStr);
d14a1e28 324 %name(PreMiniFrame)wxMiniFrame();
9c039d08 325
09f3d4e6
RD
326 bool Create(wxWindow* parent, const wxWindowID id, const wxString& title,
327 const wxPoint& pos = wxDefaultPosition,
328 const wxSize& size = wxDefaultSize,
329 long style = wxDEFAULT_FRAME_STYLE,
137b5242 330 const wxString& name = wxPyFrameNameStr);
0122b7e3 331
9c039d08 332};
b8b8dda7
RD
333
334
335//---------------------------------------------------------------------------
d14a1e28
RD
336%newgroup
337
b8b8dda7 338
b5a5d647
RD
339enum {
340 wxSPLASH_CENTRE_ON_PARENT,
341 wxSPLASH_CENTRE_ON_SCREEN,
342 wxSPLASH_NO_CENTRE,
343 wxSPLASH_TIMEOUT,
344 wxSPLASH_NO_TIMEOUT,
345};
346
347
348class wxSplashScreenWindow: public wxWindow
349{
350public:
2b9048c5 351 %pythonAppend wxSplashScreenWindow "self._setOORInfo(self)"
d14a1e28 352
b5a5d647
RD
353 wxSplashScreenWindow(const wxBitmap& bitmap,
354 wxWindow* parent, wxWindowID id,
355 const wxPoint& pos = wxDefaultPosition,
356 const wxSize& size = wxDefaultSize,
357 long style = wxNO_BORDER);
358
359 void SetBitmap(const wxBitmap& bitmap);
360 wxBitmap& GetBitmap();
361};
362
363
364class wxSplashScreen : public wxFrame {
365public:
2b9048c5 366 %pythonAppend wxSplashScreen "self._setOORInfo(self)"
d14a1e28 367
b5a5d647
RD
368 wxSplashScreen(const wxBitmap& bitmap, long splashStyle, int milliseconds,
369 wxWindow* parent, wxWindowID id,
370 const wxPoint& pos = wxDefaultPosition,
371 const wxSize& size = wxDefaultSize,
479101ca 372 long style = wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP);
b5a5d647
RD
373
374 long GetSplashStyle() const;
375 wxSplashScreenWindow* GetSplashWindow() const;
376 int GetTimeout() const;
377};
378
379
380//---------------------------------------------------------------------------