1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declares wxTopLevelWindow class, the base class for all
4 // top level windows (such as frames and dialogs)
5 // Author: Vadim Zeitlin, Vaclav Slavik
9 // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10 // Vaclav Slavik <vaclav@wxwindows.org>
11 // Licence: wxWindows licence
12 ///////////////////////////////////////////////////////////////////////////////
14 #ifndef _WX_TOPLEVEL_BASE_H_
15 #define _WX_TOPLEVEL_BASE_H_
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
22 #pragma interface "toplevelbase.h"
25 #include "wx/window.h"
28 // the default names for various classs
29 WXDLLEXPORT_DATA(extern const wxChar
*) wxFrameNameStr
;
31 class WXDLLEXPORT wxTopLevelWindowBase
;
33 // ----------------------------------------------------------------------------
35 // ----------------------------------------------------------------------------
37 // Dialogs are created in a special way
38 #define wxTOPLEVEL_EX_DIALOG 0x00000008
40 // Styles for ShowFullScreen
41 // (note that wxTopLevelWindow only handles wxFULLSCREEN_NOBORDER and
42 // wxFULLSCREEN_NOCAPTION; the rest is handled by wxTopLevelWindow)
45 wxFULLSCREEN_NOMENUBAR
= 0x0001,
46 wxFULLSCREEN_NOTOOLBAR
= 0x0002,
47 wxFULLSCREEN_NOSTATUSBAR
= 0x0004,
48 wxFULLSCREEN_NOBORDER
= 0x0008,
49 wxFULLSCREEN_NOCAPTION
= 0x0010,
51 wxFULLSCREEN_ALL
= wxFULLSCREEN_NOMENUBAR
| wxFULLSCREEN_NOTOOLBAR
|
52 wxFULLSCREEN_NOSTATUSBAR
| wxFULLSCREEN_NOBORDER
|
53 wxFULLSCREEN_NOCAPTION
56 // ----------------------------------------------------------------------------
57 // wxTopLevelWindow: a top level (as opposed to child) window
58 // ----------------------------------------------------------------------------
60 class WXDLLEXPORT wxTopLevelWindowBase
: public wxWindow
64 wxTopLevelWindowBase();
65 virtual ~wxTopLevelWindowBase();
67 // top level wnd state
68 // --------------------
70 // maximize = TRUE => maximize, otherwise - restore
71 virtual void Maximize(bool maximize
= TRUE
) = 0;
73 // undo Maximize() or Iconize()
74 virtual void Restore() = 0;
76 // iconize = TRUE => iconize, otherwise - restore
77 virtual void Iconize(bool iconize
= TRUE
) = 0;
79 // return TRUE if the frame is maximized
80 virtual bool IsMaximized() const = 0;
82 // return TRUE if the frame is iconized
83 virtual bool IsIconized() const = 0;
86 const wxIcon
& GetIcon() const { return m_icon
; }
89 virtual void SetIcon(const wxIcon
& icon
) { m_icon
= icon
; }
91 // maximize the window to cover entire screen
92 virtual bool ShowFullScreen(bool show
, long style
= wxFULLSCREEN_ALL
) = 0;
94 // return TRUE if the frame is in fullscreen mode
95 virtual bool IsFullScreen() const = 0;
98 for now we already have them in wxWindow, but this is wrong: these
99 methods really only make sense for wxTopLevelWindow!
101 virtual void SetTitle(const wxString& title) = 0;
102 virtual wxString GetTitle() const = 0;
105 // old functions, use the new ones instead!
106 #if WXWIN_COMPATIBILITY_2
107 bool Iconized() const { return IsIconized(); }
108 #endif // WXWIN_COMPATIBILITY_2
110 // implementation only from now on
111 // -------------------------------
113 // override some base class virtuals
114 virtual bool Destroy();
115 virtual bool IsTopLevel() const { return TRUE
; }
116 virtual wxSize
GetMaxSize() const;
119 void OnCloseWindow(wxCloseEvent
& event
);
120 void OnSize(wxSizeEvent
& event
);
122 // this should go away, but for now it's called from docview.cpp,
123 // so should be there for all platforms
124 void OnActivate(wxActivateEvent
&WXUNUSED(event
)) { }
127 // the frame client to screen translation should take account of the
128 // toolbar which may shift the origin of the client area
129 virtual void DoClientToScreen(int *x
, int *y
) const;
130 virtual void DoScreenToClient(int *x
, int *y
) const;
132 // send the iconize event, return TRUE if processed
133 bool SendIconizeEvent(bool iconized
= TRUE
);
138 // test whether this window makes part of the frame
139 // (menubar, toolbar and statusbar are excluded from automatic layout)
140 virtual bool IsOneOfBars(const wxWindow
*WXUNUSED(win
)) const { return FALSE
; }
142 DECLARE_EVENT_TABLE()
146 // include the real class declaration
147 #if defined(__WXMSW__)
148 #include "wx/msw/toplevel.h"
149 #define wxTopLevelWindowNative wxTopLevelWindowMSW
150 #elif defined(__WXGTK__)
151 #include "wx/gtk/toplevel.h"
152 #define wxTopLevelWindowNative wxTopLevelWindowGTK
153 #elif defined(__WXX11__)
154 #include "wx/x11/toplevel.h"
155 #define wxTopLevelWindowNative wxTopLevelWindowX11
156 #elif defined(__WXMGL__)
157 #include "wx/mgl/toplevel.h"
158 #define wxTopLevelWindowNative wxTopLevelWindowMGL
159 #elif defined(__WXMAC__)
160 #include "wx/mac/toplevel.h"
161 #define wxTopLevelWindowNative wxTopLevelWindowMac
162 #elif defined(__WXPM__)
163 #include "wx/os2/toplevel.h"
164 #define wxTopLevelWindowNative wxTopLevelWindowOS2
167 #ifdef __WXUNIVERSAL__
168 #include "wx/univ/toplevel.h"
169 #else // !__WXUNIVERSAL__
170 #ifdef wxTopLevelWindowNative
171 class WXDLLEXPORT wxTopLevelWindow
: public wxTopLevelWindowNative
175 wxTopLevelWindow() { Init(); }
176 wxTopLevelWindow(wxWindow
*parent
,
178 const wxString
& title
,
179 const wxPoint
& pos
= wxDefaultPosition
,
180 const wxSize
& size
= wxDefaultSize
,
181 long style
= wxDEFAULT_FRAME_STYLE
,
182 const wxString
& name
= wxFrameNameStr
)
185 Create(parent
, id
, title
, pos
, size
, style
, name
);
188 DECLARE_DYNAMIC_CLASS(wxTopLevelWindow
)
190 #endif // wxTopLevelWindowNative
191 #endif // __WXUNIVERSAL__/!__WXUNIVERSAL__
194 #endif // _WX_TOPLEVEL_BASE_H_