]> git.saurik.com Git - wxWidgets.git/blame - include/wx/toplevel.h
small m_blinkedOut consistency corrections
[wxWidgets.git] / include / wx / toplevel.h
CommitLineData
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>
7d9f12f3 10// Vaclav Slavik <vaclav@wxwindows.org>
ec4f95c4
VZ
11// Licence: wxWindows licence
12///////////////////////////////////////////////////////////////////////////////
13
7d9f12f3
VS
14#ifndef _WX_TOPLEVEL_BASE_H_
15#define _WX_TOPLEVEL_BASE_H_
16
17// ----------------------------------------------------------------------------
18// headers
19// ----------------------------------------------------------------------------
20
21#ifdef __GNUG__
22 #pragma interface "toplevelbase.h"
23#endif
ec4f95c4
VZ
24
25#include "wx/window.h"
7d9f12f3
VS
26#include "wx/icon.h"
27
28// the default names for various classs
29WXDLLEXPORT_DATA(extern const wxChar*) wxFrameNameStr;
30
31class WXDLLEXPORT wxTopLevelWindowBase;
32
b22d16ad
VS
33// ----------------------------------------------------------------------------
34// constants
35// ----------------------------------------------------------------------------
36
7d9f12f3 37// Dialogs are created in a special way
21f4383a 38#define wxTOPLEVEL_EX_DIALOG 0x00000008
7d9f12f3
VS
39
40// Styles for ShowFullScreen
41// (note that wxTopLevelWindow only handles wxFULLSCREEN_NOBORDER and
42// wxFULLSCREEN_NOCAPTION; the rest is handled by wxTopLevelWindow)
b22d16ad
VS
43enum
44{
45 wxFULLSCREEN_NOMENUBAR = 0x0001,
46 wxFULLSCREEN_NOTOOLBAR = 0x0002,
47 wxFULLSCREEN_NOSTATUSBAR = 0x0004,
48 wxFULLSCREEN_NOBORDER = 0x0008,
49 wxFULLSCREEN_NOCAPTION = 0x0010,
d4597e13
VZ
50
51 wxFULLSCREEN_ALL = wxFULLSCREEN_NOMENUBAR | wxFULLSCREEN_NOTOOLBAR |
52 wxFULLSCREEN_NOSTATUSBAR | wxFULLSCREEN_NOBORDER |
b22d16ad
VS
53 wxFULLSCREEN_NOCAPTION
54};
55
ec4f95c4
VZ
56// ----------------------------------------------------------------------------
57// wxTopLevelWindow: a top level (as opposed to child) window
58// ----------------------------------------------------------------------------
59
7d9f12f3 60class WXDLLEXPORT wxTopLevelWindowBase : public wxWindow
ec4f95c4
VZ
61{
62public:
7d9f12f3
VS
63 // construction
64 wxTopLevelWindowBase();
799ea011 65 virtual ~wxTopLevelWindowBase();
b22d16ad 66
7d9f12f3
VS
67 // top level wnd state
68 // --------------------
69
70 // maximize = TRUE => maximize, otherwise - restore
71 virtual void Maximize(bool maximize = TRUE) = 0;
72
73 // undo Maximize() or Iconize()
74 virtual void Restore() = 0;
75
76 // iconize = TRUE => iconize, otherwise - restore
77 virtual void Iconize(bool iconize = TRUE) = 0;
78
79 // return TRUE if the frame is maximized
80 virtual bool IsMaximized() const = 0;
81
82 // return TRUE if the frame is iconized
83 virtual bool IsIconized() const = 0;
84
85 // get the frame icon
86 const wxIcon& GetIcon() const { return m_icon; }
87
88 // set the frame icon
89 virtual void SetIcon(const wxIcon& icon) { m_icon = icon; }
90
c8e8ae85
VS
91 // maximize the window to cover entire screen
92 virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) = 0;
d4597e13 93
c8e8ae85
VS
94 // return TRUE if the frame is in fullscreen mode
95 virtual bool IsFullScreen() const = 0;
96
ec4f95c4
VZ
97 /*
98 for now we already have them in wxWindow, but this is wrong: these
99 methods really only make sense for wxTopLevelWindow!
100
7d9f12f3 101 virtual void SetTitle(const wxString& title) = 0;
ec4f95c4
VZ
102 virtual wxString GetTitle() const = 0;
103 */
7d9f12f3
VS
104
105 // old functions, use the new ones instead!
106#if WXWIN_COMPATIBILITY_2
107 bool Iconized() const { return IsIconized(); }
108#endif // WXWIN_COMPATIBILITY_2
109
110 // implementation only from now on
111 // -------------------------------
112
113 // override some base class virtuals
114 virtual bool Destroy();
115 virtual bool IsTopLevel() const { return TRUE; }
116
117 // event handlers
118 void OnCloseWindow(wxCloseEvent& event);
119 void OnSize(wxSizeEvent& event);
120
121 // this should go away, but for now it's called from docview.cpp,
122 // so should be there for all platforms
123 void OnActivate(wxActivateEvent &WXUNUSED(event)) { }
124
6e33b9aa
DW
125 // Override in derived, platfrom specific, class if your OS coordinate
126 // system uses anything other than the top left as 0,0. The second
127 // method updates any internal sizing parameters such as OS/2's SWP struct
128 inline virtual void AlterChildPos(void) { }
129 inline virtual void UpdateInternalSize( wxWindow* WXUNUSED(pChild)
130 ,int WXUNUSED(nHeight)
131 ) { }
132
7d9f12f3
VS
133protected:
134 // the frame client to screen translation should take account of the
135 // toolbar which may shift the origin of the client area
136 virtual void DoClientToScreen(int *x, int *y) const;
137 virtual void DoScreenToClient(int *x, int *y) const;
138
139 // send the iconize event, return TRUE if processed
140 bool SendIconizeEvent(bool iconized = TRUE);
141
142 // the frame icon
143 wxIcon m_icon;
144
145 // test whether this window makes part of the frame
146 // (menubar, toolbar and statusbar are excluded from automatic layout)
147 virtual bool IsOneOfBars(const wxWindow *WXUNUSED(win)) const { return FALSE; }
148
149 DECLARE_EVENT_TABLE()
ec4f95c4
VZ
150};
151
7d9f12f3
VS
152
153// include the real class declaration
82c9f85c
VZ
154#if defined(__WXMSW__)
155 #include "wx/msw/toplevel.h"
156 #define wxTopLevelWindowNative wxTopLevelWindowMSW
157#elif defined(__WXGTK__)
7d9f12f3
VS
158 #include "wx/gtk/toplevel.h"
159 #define wxTopLevelWindowNative wxTopLevelWindowGTK
160#elif defined(__WXMGL__)
161 #include "wx/mgl/toplevel.h"
162 #define wxTopLevelWindowNative wxTopLevelWindowMGL
93b4dc4b
SC
163#elif defined(__WXMAC__)
164 #include "wx/mac/toplevel.h"
165 #define wxTopLevelWindowNative wxTopLevelWindowMac
c9782ca3
DW
166#elif defined(__WXPM__)
167 #include "wx/os2/toplevel.h"
168 #define wxTopLevelWindowNative wxTopLevelWindowOS2
7d9f12f3
VS
169#endif
170
171#ifdef __WXUNIVERSAL__
172 #include "wx/univ/toplevel.h"
173#else // !__WXUNIVERSAL__
174 #ifdef wxTopLevelWindowNative
175 class WXDLLEXPORT wxTopLevelWindow : public wxTopLevelWindowNative
176 {
177 public:
178 // construction
179 wxTopLevelWindow() { Init(); }
180 wxTopLevelWindow(wxWindow *parent,
181 wxWindowID id,
182 const wxString& title,
183 const wxPoint& pos = wxDefaultPosition,
184 const wxSize& size = wxDefaultSize,
185 long style = wxDEFAULT_FRAME_STYLE,
186 const wxString& name = wxFrameNameStr)
187 {
188 Init();
189 Create(parent, id, title, pos, size, style, name);
190 }
191
192 DECLARE_DYNAMIC_CLASS(wxTopLevelWindow)
193 };
194 #endif // wxTopLevelWindowNative
195#endif // __WXUNIVERSAL__/!__WXUNIVERSAL__
196
197
198#endif // _WX_TOPLEVEL_BASE_H_