]>
Commit | Line | Data |
---|---|---|
ec4f95c4 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/toplevel.h | |
3 | // Purpose: declares wxTopLevelWindow class, the base class for all | |
4 | // top level windows (such as frames and dialogs) | |
7d9f12f3 | 5 | // Author: Vadim Zeitlin, Vaclav Slavik |
ec4f95c4 VZ |
6 | // Modified by: |
7 | // Created: 06.08.01 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
77ffb593 | 10 | // Vaclav Slavik <vaclav@wxwidgets.org> |
65571936 | 11 | // Licence: wxWindows licence |
ec4f95c4 VZ |
12 | /////////////////////////////////////////////////////////////////////////////// |
13 | ||
7d9f12f3 VS |
14 | #ifndef _WX_TOPLEVEL_BASE_H_ |
15 | #define _WX_TOPLEVEL_BASE_H_ | |
16 | ||
17 | // ---------------------------------------------------------------------------- | |
18 | // headers | |
19 | // ---------------------------------------------------------------------------- | |
20 | ||
42b0d8b9 | 21 | #include "wx/nonownedwnd.h" |
f618020a | 22 | #include "wx/iconbndl.h" |
049908c5 | 23 | #include "wx/containr.h" |
3e040a29 | 24 | #include "wx/weakref.h" |
7d9f12f3 | 25 | |
63ec432b | 26 | // the default names for various classes |
53a2db12 | 27 | extern WXDLLIMPEXP_DATA_CORE(const char) wxFrameNameStr[]; |
7d9f12f3 | 28 | |
b5dbe15d | 29 | class WXDLLIMPEXP_FWD_CORE wxTopLevelWindowBase; |
7d9f12f3 | 30 | |
b22d16ad VS |
31 | // ---------------------------------------------------------------------------- |
32 | // constants | |
33 | // ---------------------------------------------------------------------------- | |
34 | ||
f16fad90 | 35 | /* |
d13b34d3 | 36 | Summary of the bits used (some of them are defined in wx/frame.h and |
f16fad90 VZ |
37 | wx/dialog.h and not here): |
38 | ||
39 | +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ | |
40 | |15|14|13|12|11|10| 9| 8| 7| 6| 5| 4| 3| 2| 1| 0| | |
41 | +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ | |
42 | | | | | | | | | | | | | | | | | | |
654e3246 | 43 | | | | | | | | | | | | | | | | \_ wxCENTRE |
f16fad90 VZ |
44 | | | | | | | | | | | | | | | \____ wxFRAME_NO_TASKBAR |
45 | | | | | | | | | | | | | | \_______ wxFRAME_TOOL_WINDOW | |
46 | | | | | | | | | | | | | \__________ wxFRAME_FLOAT_ON_PARENT | |
47 | | | | | | | | | | | | \_____________ wxFRAME_SHAPED | |
32a925f8 | 48 | | | | | | | | | | | \________________ wxDIALOG_NO_PARENT |
f16fad90 VZ |
49 | | | | | | | | | | \___________________ wxRESIZE_BORDER |
50 | | | | | | | | | \______________________ wxTINY_CAPTION_VERT | |
32a925f8 | 51 | | | | | | | | \_________________________ |
f16fad90 VZ |
52 | | | | | | | \____________________________ wxMAXIMIZE_BOX |
53 | | | | | | \_______________________________ wxMINIMIZE_BOX | |
54 | | | | | \__________________________________ wxSYSTEM_MENU | |
55 | | | | \_____________________________________ wxCLOSE_BOX | |
56 | | | \________________________________________ wxMAXIMIZE | |
57 | | \___________________________________________ wxMINIMIZE | |
58 | \______________________________________________ wxSTAY_ON_TOP | |
59 | ||
60 | ||
61 | Notice that the 8 lower bits overlap with wxCENTRE and the button selection | |
62 | bits (wxYES, wxOK wxNO, wxCANCEL, wxAPPLY, wxCLOSE and wxNO_DEFAULT) which | |
63 | can be combined with the dialog style for several standard dialogs and | |
64 | hence shouldn't overlap with any styles which can be used for the dialogs. | |
654e3246 | 65 | Additionally, wxCENTRE can be used with frames also. |
f16fad90 VZ |
66 | */ |
67 | ||
8b5ef6cf VZ |
68 | // style common to both wxFrame and wxDialog |
69 | #define wxSTAY_ON_TOP 0x8000 | |
70 | #define wxICONIZE 0x4000 | |
71 | #define wxMINIMIZE wxICONIZE | |
72 | #define wxMAXIMIZE 0x2000 | |
e65ae1d3 | 73 | #define wxCLOSE_BOX 0x1000 // == wxHELP so can't be used with it |
8b5ef6cf VZ |
74 | |
75 | #define wxSYSTEM_MENU 0x0800 | |
76 | #define wxMINIMIZE_BOX 0x0400 | |
77 | #define wxMAXIMIZE_BOX 0x0200 | |
7282b067 VZ |
78 | |
79 | #define wxTINY_CAPTION 0x0080 // clashes with wxNO_DEFAULT | |
e65ae1d3 | 80 | #define wxRESIZE_BORDER 0x0040 // == wxCLOSE |
8b5ef6cf | 81 | |
7282b067 VZ |
82 | #if WXWIN_COMPATIBILITY_2_8 |
83 | // HORIZ and VERT styles are equivalent anyhow so don't use different names | |
84 | // for them | |
85 | #define wxTINY_CAPTION_HORIZ wxTINY_CAPTION | |
86 | #define wxTINY_CAPTION_VERT wxTINY_CAPTION | |
87 | #endif | |
88 | ||
1c067fe3 WS |
89 | #if WXWIN_COMPATIBILITY_2_6 |
90 | ||
91 | // deprecated versions defined for compatibility reasons | |
92 | #define wxRESIZE_BOX wxMAXIMIZE_BOX | |
93 | #define wxTHICK_FRAME wxRESIZE_BORDER | |
94 | ||
95 | // obsolete styles, unused any more | |
96 | #define wxDIALOG_MODAL 0 | |
97 | #define wxDIALOG_MODELESS 0 | |
98 | #define wxNO_3D 0 | |
99 | #define wxUSER_COLOURS 0 | |
100 | ||
101 | #endif // WXWIN_COMPATIBILITY_2_6 | |
8b5ef6cf VZ |
102 | |
103 | // default style | |
104 | // | |
105 | // under Windows CE (at least when compiling with eVC 4) we should create | |
106 | // top level windows without any styles at all for them to appear | |
107 | // "correctly", i.e. as full screen windows with a "hide" button (same as | |
108 | // "close" but round instead of squared and just hides the applications | |
109 | // instead of closing it) in the title bar | |
a9928e9d | 110 | #if defined(__WXWINCE__) |
cb719f2e WS |
111 | #if defined(__SMARTPHONE__) |
112 | #define wxDEFAULT_FRAME_STYLE (wxMAXIMIZE) | |
a9928e9d | 113 | #elif defined(__WINCE_STANDARDSDK__) |
cb719f2e WS |
114 | #define wxDEFAULT_FRAME_STYLE (wxMAXIMIZE|wxCLOSE_BOX) |
115 | #else | |
30dfe2ff | 116 | #define wxDEFAULT_FRAME_STYLE (wxNO_BORDER) |
cb719f2e | 117 | #endif |
8b5ef6cf VZ |
118 | #else // !__WXWINCE__ |
119 | #define wxDEFAULT_FRAME_STYLE \ | |
120 | (wxSYSTEM_MENU | \ | |
121 | wxRESIZE_BORDER | \ | |
122 | wxMINIMIZE_BOX | \ | |
123 | wxMAXIMIZE_BOX | \ | |
124 | wxCLOSE_BOX | \ | |
125 | wxCAPTION | \ | |
126 | wxCLIP_CHILDREN) | |
127 | #endif | |
128 | ||
129 | ||
7d9f12f3 | 130 | // Dialogs are created in a special way |
21f4383a | 131 | #define wxTOPLEVEL_EX_DIALOG 0x00000008 |
7d9f12f3 VS |
132 | |
133 | // Styles for ShowFullScreen | |
134 | // (note that wxTopLevelWindow only handles wxFULLSCREEN_NOBORDER and | |
135 | // wxFULLSCREEN_NOCAPTION; the rest is handled by wxTopLevelWindow) | |
b22d16ad VS |
136 | enum |
137 | { | |
138 | wxFULLSCREEN_NOMENUBAR = 0x0001, | |
139 | wxFULLSCREEN_NOTOOLBAR = 0x0002, | |
140 | wxFULLSCREEN_NOSTATUSBAR = 0x0004, | |
141 | wxFULLSCREEN_NOBORDER = 0x0008, | |
142 | wxFULLSCREEN_NOCAPTION = 0x0010, | |
d4597e13 VZ |
143 | |
144 | wxFULLSCREEN_ALL = wxFULLSCREEN_NOMENUBAR | wxFULLSCREEN_NOTOOLBAR | | |
145 | wxFULLSCREEN_NOSTATUSBAR | wxFULLSCREEN_NOBORDER | | |
b22d16ad VS |
146 | wxFULLSCREEN_NOCAPTION |
147 | }; | |
148 | ||
dc92adaf VZ |
149 | // Styles for RequestUserAttention |
150 | enum | |
151 | { | |
152 | wxUSER_ATTENTION_INFO = 1, | |
153 | wxUSER_ATTENTION_ERROR = 2 | |
154 | }; | |
155 | ||
ec4f95c4 VZ |
156 | // ---------------------------------------------------------------------------- |
157 | // wxTopLevelWindow: a top level (as opposed to child) window | |
158 | // ---------------------------------------------------------------------------- | |
159 | ||
90230407 VZ |
160 | class WXDLLIMPEXP_CORE wxTopLevelWindowBase : |
161 | public wxNavigationEnabled<wxNonOwnedWindow> | |
ec4f95c4 VZ |
162 | { |
163 | public: | |
7d9f12f3 VS |
164 | // construction |
165 | wxTopLevelWindowBase(); | |
799ea011 | 166 | virtual ~wxTopLevelWindowBase(); |
b22d16ad | 167 | |
7d9f12f3 VS |
168 | // top level wnd state |
169 | // -------------------- | |
170 | ||
cb719f2e WS |
171 | // maximize = true => maximize, otherwise - restore |
172 | virtual void Maximize(bool maximize = true) = 0; | |
7d9f12f3 VS |
173 | |
174 | // undo Maximize() or Iconize() | |
175 | virtual void Restore() = 0; | |
176 | ||
cb719f2e WS |
177 | // iconize = true => iconize, otherwise - restore |
178 | virtual void Iconize(bool iconize = true) = 0; | |
7d9f12f3 | 179 | |
cb719f2e | 180 | // return true if the frame is maximized |
7d9f12f3 VS |
181 | virtual bool IsMaximized() const = 0; |
182 | ||
979a0320 WS |
183 | // return true if the frame is always maximized |
184 | // due to native guidelines or current policy | |
185 | virtual bool IsAlwaysMaximized() const; | |
186 | ||
cb719f2e | 187 | // return true if the frame is iconized |
7d9f12f3 VS |
188 | virtual bool IsIconized() const = 0; |
189 | ||
190 | // get the frame icon | |
ea098413 | 191 | wxIcon GetIcon() const; |
f618020a MB |
192 | |
193 | // get the frame icons | |
194 | const wxIconBundle& GetIcons() const { return m_icons; } | |
7d9f12f3 | 195 | |
ea098413 VZ |
196 | // set the frame icon: implemented in terms of SetIcons() |
197 | void SetIcon(const wxIcon& icon); | |
f618020a MB |
198 | |
199 | // set the frame icons | |
ea098413 | 200 | virtual void SetIcons(const wxIconBundle& icons) { m_icons = icons; } |
7d9f12f3 | 201 | |
c8e8ae85 VS |
202 | // maximize the window to cover entire screen |
203 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) = 0; | |
ce00f59b | 204 | |
dbc7ceb9 KO |
205 | // shows the window, but doesn't activate it. If the base code is being run, |
206 | // it means the port doesn't implement this method yet and so alert the user. | |
ce00f59b | 207 | virtual void ShowWithoutActivating() { |
dbc7ceb9 KO |
208 | wxFAIL_MSG("ShowWithoutActivating not implemented on this platform."); |
209 | } | |
d4597e13 | 210 | |
cb719f2e | 211 | // return true if the frame is in fullscreen mode |
c8e8ae85 VS |
212 | virtual bool IsFullScreen() const = 0; |
213 | ||
ffd84c94 WS |
214 | // the title of the top level window: the text which the |
215 | // window shows usually at the top of the frame/dialog in dedicated bar | |
7d9f12f3 | 216 | virtual void SetTitle(const wxString& title) = 0; |
ec4f95c4 | 217 | virtual wxString GetTitle() const = 0; |
7d9f12f3 | 218 | |
a43ec16b | 219 | // enable/disable close button [x] |
03647350 | 220 | virtual bool EnableCloseButton(bool WXUNUSED(enable) ) { return false; } |
a43ec16b | 221 | |
dc92adaf VZ |
222 | // Attracts the users attention to this window if the application is |
223 | // inactive (should be called when a background event occurs) | |
224 | virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO); | |
9b141468 | 225 | |
35ff90a0 | 226 | // Is this the active frame (highlighted in the taskbar)? |
171a1afe VZ |
227 | virtual bool IsActive() { return wxGetTopLevelParent(FindFocus()) == this; } |
228 | ||
229 | // this function may be overridden to return false to allow closing the | |
230 | // application even when this top level window is still open | |
231 | // | |
232 | // notice that the window is still closed prior to the application exit and | |
233 | // so it can still veto it even if it returns false from here | |
234 | virtual bool ShouldPreventAppExit() const { return true; } | |
235 | ||
dc92adaf | 236 | |
9b141468 WS |
237 | #if defined(__SMARTPHONE__) |
238 | virtual void SetLeftMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL) = 0; | |
239 | virtual void SetRightMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL) = 0; | |
240 | #endif // __SMARTPHONE__ | |
241 | ||
1f464296 VZ |
242 | // centre the window on screen: this is just a shortcut |
243 | void CentreOnScreen(int dir = wxBOTH) { DoCentre(dir | wxCENTRE_ON_SCREEN); } | |
244 | void CenterOnScreen(int dir = wxBOTH) { CentreOnScreen(dir); } | |
245 | ||
71a0f42d VZ |
246 | // Get the default size for a new top level window. This is used when |
247 | // creating a wxTLW under some platforms if no explicit size given. | |
248 | static wxSize GetDefaultSize(); | |
249 | ||
6c20e8f8 VZ |
250 | |
251 | // default item access: we have a permanent default item which is the one | |
252 | // set by the user code but we may also have a temporary default item which | |
253 | // would be chosen if the user pressed "Enter" now but the default action | |
254 | // reverts to the "permanent" default as soon as this temporary default | |
255 | // item loses focus | |
256 | ||
6c20e8f8 VZ |
257 | // get the default item, temporary or permanent |
258 | wxWindow *GetDefaultItem() const | |
259 | { return m_winTmpDefault ? m_winTmpDefault : m_winDefault; } | |
260 | ||
261 | // set the permanent default item, return the old default | |
262 | wxWindow *SetDefaultItem(wxWindow *win) | |
263 | { wxWindow *old = GetDefaultItem(); m_winDefault = win; return old; } | |
264 | ||
265 | // return the temporary default item, can be NULL | |
266 | wxWindow *GetTmpDefaultItem() const { return m_winTmpDefault; } | |
267 | ||
268 | // set a temporary default item, SetTmpDefaultItem(NULL) should be called | |
269 | // soon after a call to SetTmpDefaultItem(window), return the old default | |
270 | wxWindow *SetTmpDefaultItem(wxWindow *win) | |
271 | { wxWindow *old = GetDefaultItem(); m_winTmpDefault = win; return old; } | |
272 | ||
273 | ||
7d9f12f3 VS |
274 | // implementation only from now on |
275 | // ------------------------------- | |
276 | ||
277 | // override some base class virtuals | |
278 | virtual bool Destroy(); | |
cb719f2e | 279 | virtual bool IsTopLevel() const { return true; } |
6e92c299 | 280 | virtual bool IsTopNavigationDomain() const { return true; } |
9c72cf76 | 281 | virtual bool IsVisible() const { return IsShown(); } |
7d9f12f3 VS |
282 | |
283 | // event handlers | |
284 | void OnCloseWindow(wxCloseEvent& event); | |
5e62d4a5 | 285 | void OnSize(wxSizeEvent& WXUNUSED(event)) { DoLayout(); } |
7d9f12f3 | 286 | |
0bba37f5 DE |
287 | // Get rect to be used to center top-level children |
288 | virtual void GetRectForTopLevelChildren(int *x, int *y, int *w, int *h); | |
289 | ||
7d9f12f3 VS |
290 | // this should go away, but for now it's called from docview.cpp, |
291 | // so should be there for all platforms | |
292 | void OnActivate(wxActivateEvent &WXUNUSED(event)) { } | |
293 | ||
e39af974 JS |
294 | // do the window-specific processing after processing the update event |
295 | virtual void DoUpdateWindowUI(wxUpdateUIEvent& event) ; | |
296 | ||
cda5834e RR |
297 | // a different API for SetSizeHints |
298 | virtual void SetMinSize(const wxSize& minSize); | |
299 | virtual void SetMaxSize(const wxSize& maxSize); | |
ce00f59b | 300 | |
ebf7d5c4 KO |
301 | virtual void OSXSetModified(bool modified) { m_modified = modified; } |
302 | virtual bool OSXIsModified() const { return m_modified; } | |
cda5834e | 303 | |
6a0e4ead VZ |
304 | virtual void SetRepresentedFilename(const wxString& WXUNUSED(filename)) { } |
305 | ||
3498362e | 306 | protected: |
7d9f12f3 VS |
307 | // the frame client to screen translation should take account of the |
308 | // toolbar which may shift the origin of the client area | |
309 | virtual void DoClientToScreen(int *x, int *y) const; | |
310 | virtual void DoScreenToClient(int *x, int *y) const; | |
311 | ||
1f464296 VZ |
312 | // add support for wxCENTRE_ON_SCREEN |
313 | virtual void DoCentre(int dir); | |
314 | ||
3c81c9aa VZ |
315 | // no need to do client to screen translation to get our position in screen |
316 | // coordinates: this is already the case | |
317 | virtual void DoGetScreenPosition(int *x, int *y) const | |
318 | { | |
74af7bcf | 319 | DoGetPosition(x, y); |
3c81c9aa | 320 | } |
1f464296 | 321 | |
1cbee0b4 VZ |
322 | // test whether this window makes part of the frame |
323 | // (menubar, toolbar and statusbar are excluded from automatic layout) | |
324 | virtual bool IsOneOfBars(const wxWindow *WXUNUSED(win)) const | |
cb719f2e | 325 | { return false; } |
1cbee0b4 | 326 | |
65afac3f | 327 | // check if we should exit the program after deleting this window |
5c363878 | 328 | bool IsLastBeforeExit() const; |
1cbee0b4 | 329 | |
cb719f2e WS |
330 | // send the iconize event, return true if processed |
331 | bool SendIconizeEvent(bool iconized = true); | |
7d9f12f3 | 332 | |
5e62d4a5 VZ |
333 | // do TLW-specific layout: we resize our unique child to fill the entire |
334 | // client area | |
335 | void DoLayout(); | |
336 | ||
cb719f2e WS |
337 | static int WidthDefault(int w) { return w == wxDefaultCoord ? GetDefaultSize().x : w; } |
338 | static int HeightDefault(int h) { return h == wxDefaultCoord ? GetDefaultSize().y : h; } | |
66202a7e | 339 | |
f8ab85ae | 340 | |
7d9f12f3 | 341 | // the frame icon |
f618020a | 342 | wxIconBundle m_icons; |
7d9f12f3 | 343 | |
6c20e8f8 | 344 | // a default window (usually a button) or NULL |
3e040a29 | 345 | wxWindowRef m_winDefault; |
6c20e8f8 VZ |
346 | |
347 | // a temporary override of m_winDefault, use the latter if NULL | |
3e040a29 | 348 | wxWindowRef m_winTmpDefault; |
ce00f59b | 349 | |
efb2fa41 | 350 | bool m_modified; |
6c20e8f8 | 351 | |
c0c133e1 | 352 | wxDECLARE_NO_COPY_CLASS(wxTopLevelWindowBase); |
7d9f12f3 | 353 | DECLARE_EVENT_TABLE() |
ec4f95c4 VZ |
354 | }; |
355 | ||
7d9f12f3 VS |
356 | |
357 | // include the real class declaration | |
bd362275 | 358 | #if defined(__WXMSW__) |
82c9f85c VZ |
359 | #include "wx/msw/toplevel.h" |
360 | #define wxTopLevelWindowNative wxTopLevelWindowMSW | |
1be7a35c | 361 | #elif defined(__WXGTK20__) |
7d9f12f3 VS |
362 | #include "wx/gtk/toplevel.h" |
363 | #define wxTopLevelWindowNative wxTopLevelWindowGTK | |
1be7a35c MR |
364 | #elif defined(__WXGTK__) |
365 | #include "wx/gtk1/toplevel.h" | |
366 | #define wxTopLevelWindowNative wxTopLevelWindowGTK | |
83df96d6 JS |
367 | #elif defined(__WXX11__) |
368 | #include "wx/x11/toplevel.h" | |
369 | #define wxTopLevelWindowNative wxTopLevelWindowX11 | |
b3c86150 VS |
370 | #elif defined(__WXDFB__) |
371 | #include "wx/dfb/toplevel.h" | |
372 | #define wxTopLevelWindowNative wxTopLevelWindowDFB | |
93b4dc4b | 373 | #elif defined(__WXMAC__) |
ef0e9220 | 374 | #include "wx/osx/toplevel.h" |
93b4dc4b | 375 | #define wxTopLevelWindowNative wxTopLevelWindowMac |
e64df9bc DE |
376 | #elif defined(__WXCOCOA__) |
377 | #include "wx/cocoa/toplevel.h" | |
378 | #define wxTopLevelWindowNative wxTopLevelWindowCocoa | |
c9782ca3 DW |
379 | #elif defined(__WXPM__) |
380 | #include "wx/os2/toplevel.h" | |
381 | #define wxTopLevelWindowNative wxTopLevelWindowOS2 | |
798a4529 MB |
382 | #elif defined(__WXMOTIF__) |
383 | #include "wx/motif/toplevel.h" | |
384 | #define wxTopLevelWindowNative wxTopLevelWindowMotif | |
7d9f12f3 VS |
385 | #endif |
386 | ||
387 | #ifdef __WXUNIVERSAL__ | |
388 | #include "wx/univ/toplevel.h" | |
389 | #else // !__WXUNIVERSAL__ | |
77497ea3 VZ |
390 | class WXDLLIMPEXP_CORE wxTopLevelWindow : public wxTopLevelWindowNative |
391 | { | |
392 | public: | |
393 | // construction | |
394 | wxTopLevelWindow() { } | |
395 | wxTopLevelWindow(wxWindow *parent, | |
396 | wxWindowID winid, | |
397 | const wxString& title, | |
398 | const wxPoint& pos = wxDefaultPosition, | |
399 | const wxSize& size = wxDefaultSize, | |
400 | long style = wxDEFAULT_FRAME_STYLE, | |
401 | const wxString& name = wxFrameNameStr) | |
402 | : wxTopLevelWindowNative(parent, winid, title, | |
403 | pos, size, style, name) | |
7d9f12f3 | 404 | { |
77497ea3 | 405 | } |
7d9f12f3 | 406 | |
77497ea3 VZ |
407 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxTopLevelWindow) |
408 | }; | |
409 | #endif // __WXUNIVERSAL__/!__WXUNIVERSAL__ | |
7d9f12f3 VS |
410 | |
411 | #endif // _WX_TOPLEVEL_BASE_H_ |