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