]>
Commit | Line | Data |
---|---|---|
82c9f85c VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/msw/toplevel.h | |
3 | // Purpose: wxTopLevelWindowMSW is the MSW implementation of wxTLW | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 20.09.01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) | |
65571936 | 9 | // Licence: wxWindows licence |
82c9f85c VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_MSW_TOPLEVEL_H_ | |
13 | #define _WX_MSW_TOPLEVEL_H_ | |
14 | ||
82c9f85c VZ |
15 | // ---------------------------------------------------------------------------- |
16 | // wxTopLevelWindowMSW | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
53a2db12 | 19 | class WXDLLIMPEXP_CORE wxTopLevelWindowMSW : public wxTopLevelWindowBase |
82c9f85c VZ |
20 | { |
21 | public: | |
22 | // constructors and such | |
6463b9f5 | 23 | wxTopLevelWindowMSW() { Init(); } |
82c9f85c VZ |
24 | |
25 | wxTopLevelWindowMSW(wxWindow *parent, | |
26 | wxWindowID id, | |
27 | const wxString& title, | |
28 | const wxPoint& pos = wxDefaultPosition, | |
29 | const wxSize& size = wxDefaultSize, | |
30 | long style = wxDEFAULT_FRAME_STYLE, | |
6463b9f5 JS |
31 | const wxString& name = wxFrameNameStr) |
32 | { | |
33 | Init(); | |
34 | ||
35 | (void)Create(parent, id, title, pos, size, style, name); | |
36 | } | |
82c9f85c VZ |
37 | |
38 | bool Create(wxWindow *parent, | |
39 | wxWindowID id, | |
40 | const wxString& title, | |
41 | const wxPoint& pos = wxDefaultPosition, | |
42 | const wxSize& size = wxDefaultSize, | |
43 | long style = wxDEFAULT_FRAME_STYLE, | |
44 | const wxString& name = wxFrameNameStr); | |
45 | ||
46 | virtual ~wxTopLevelWindowMSW(); | |
47 | ||
48 | // implement base class pure virtuals | |
faa49bfd WS |
49 | virtual void SetTitle( const wxString& title); |
50 | virtual wxString GetTitle() const; | |
bfbb0b4c | 51 | virtual void Maximize(bool maximize = true); |
82c9f85c | 52 | virtual bool IsMaximized() const; |
bfbb0b4c | 53 | virtual void Iconize(bool iconize = true); |
82c9f85c | 54 | virtual bool IsIconized() const; |
f618020a | 55 | virtual void SetIcons(const wxIconBundle& icons ); |
82c9f85c | 56 | virtual void Restore(); |
d43eb2a0 | 57 | |
978af864 | 58 | virtual void SetLayoutDirection(wxLayoutDirection dir); |
82c9f85c | 59 | |
dc92adaf | 60 | virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO); |
1542ea39 | 61 | |
bfbb0b4c | 62 | virtual bool Show(bool show = true); |
7cee4f76 | 63 | virtual void Raise(); |
82c9f85c | 64 | |
dbc7ceb9 | 65 | virtual void ShowWithoutActivating(); |
41e929e5 VS |
66 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); |
67 | virtual bool IsFullScreen() const { return m_fsIsShowing; } | |
9b9cab37 | 68 | |
bfbb0b4c | 69 | // wxMSW only: EnableCloseButton(false) may be used to remove the "Close" |
a91cf80c | 70 | // button from the title bar |
5b5210ba | 71 | virtual bool EnableCloseButton(bool enable = true); |
a91cf80c | 72 | |
50f3c41d | 73 | // Set window transparency if the platform supports it |
07880314 RD |
74 | virtual bool SetTransparent(wxByte alpha); |
75 | virtual bool CanSetTransparent(); | |
50f3c41d | 76 | |
d43eb2a0 | 77 | |
ddae5262 VZ |
78 | // MSW-specific methods |
79 | // -------------------- | |
80 | ||
81 | // Return the menu representing the "system" menu of the window. You can | |
82 | // call wxMenu::AppendWhatever() methods on it but removing items from it | |
83 | // is in general not a good idea. | |
84 | // | |
85 | // The pointer returned by this method belongs to the window and will be | |
86 | // deleted when the window itself is, do not delete it yourself. May return | |
87 | // NULL if getting the system menu failed. | |
88 | wxMenu *MSWGetSystemMenu() const; | |
89 | ||
90 | ||
82c9f85c VZ |
91 | // implementation from now on |
92 | // -------------------------- | |
93 | ||
085ad686 VZ |
94 | // event handlers |
95 | void OnActivate(wxActivateEvent& event); | |
96 | ||
97 | // called by wxWindow whenever it gets focus | |
98 | void SetLastFocus(wxWindow *win) { m_winLastFocused = win; } | |
99 | wxWindow *GetLastFocus() const { return m_winLastFocused; } | |
100 | ||
9b141468 WS |
101 | #if defined(__SMARTPHONE__) && defined(__WXWINCE__) |
102 | virtual void SetLeftMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL); | |
103 | virtual void SetRightMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL); | |
fb8a56b7 | 104 | bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control); |
96dcd41a | 105 | virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg); |
9b141468 | 106 | #endif // __SMARTPHONE__ && __WXWINCE__ |
fb8a56b7 | 107 | |
b7e5ba8f JG |
108 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) |
109 | // Soft Input Panel (SIP) change notification | |
1272e71b | 110 | virtual bool HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam); |
b7e5ba8f JG |
111 | #endif |
112 | ||
6f02a879 VZ |
113 | // translate wxWidgets flags to Windows ones |
114 | virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const; | |
115 | ||
116 | // choose the right parent to use with CreateWindow() | |
117 | virtual WXHWND MSWGetParent() const; | |
118 | ||
119 | // window proc for the frames | |
120 | WXLRESULT MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
121 | ||
a047aff2 JS |
122 | // returns true if the platform should explicitly apply a theme border |
123 | virtual bool CanApplyThemeBorder() const { return false; } | |
124 | ||
95316a3f VZ |
125 | #if wxUSE_MENUS |
126 | bool HandleMenuSelect(WXWORD nItem, WXWORD nFlags, WXHMENU hMenu); | |
127 | ||
128 | // handle WM_EXITMENULOOP message for Win95 only | |
129 | bool HandleExitMenuLoop(WXWORD isPopup); | |
130 | ||
131 | // handle WM_(UN)INITMENUPOPUP message to generate wxEVT_MENU_OPEN/CLOSE | |
132 | bool HandleMenuPopup(wxEventType evtType, WXHMENU hMenu); | |
133 | ||
134 | // Command part of HandleMenuPopup() and HandleExitMenuLoop(). | |
135 | bool DoSendMenuOpenCloseEvent(wxEventType evtType, wxMenu* menu, bool popup); | |
136 | ||
137 | // Find the menu corresponding to the given handle. | |
138 | virtual wxMenu* MSWFindMenuFromHMENU(WXHMENU hMenu); | |
139 | #endif // wxUSE_MENUS | |
140 | ||
82c9f85c VZ |
141 | protected: |
142 | // common part of all ctors | |
143 | void Init(); | |
144 | ||
bfbb0b4c | 145 | // create a new frame, return false if it couldn't be created |
b225f659 VZ |
146 | bool CreateFrame(const wxString& title, |
147 | const wxPoint& pos, | |
148 | const wxSize& size); | |
149 | ||
150 | // create a new dialog using the given dialog template from resources, | |
bfbb0b4c | 151 | // return false if it couldn't be created |
6e8515a3 | 152 | bool CreateDialog(const void *dlgTemplate, |
b225f659 VZ |
153 | const wxString& title, |
154 | const wxPoint& pos, | |
155 | const wxSize& size); | |
156 | ||
82c9f85c VZ |
157 | // common part of Iconize(), Maximize() and Restore() |
158 | void DoShowWindow(int nShowCmd); | |
159 | ||
d43eb2a0 VZ |
160 | // override those to return the normal window coordinates even when the |
161 | // window is minimized | |
c5dc89a1 | 162 | #ifndef __WXWINCE__ |
d43eb2a0 VZ |
163 | virtual void DoGetPosition(int *x, int *y) const; |
164 | virtual void DoGetSize(int *width, int *height) const; | |
c5dc89a1 | 165 | #endif // __WXWINCE__ |
d43eb2a0 | 166 | |
17808a75 VZ |
167 | // Top level windows have different freeze semantics on Windows |
168 | virtual void DoFreeze(); | |
169 | virtual void DoThaw(); | |
170 | ||
b9e66233 VZ |
171 | // helper of SetIcons(): calls gets the icon with the size specified by the |
172 | // given system metrics (SM_C{X|Y}[SM]ICON) from the bundle and sets it | |
13f0cfee VS |
173 | // using WM_SETICON with the specified wParam (ICOM_SMALL or ICON_BIG); |
174 | // returns true if the icon was set | |
175 | bool DoSelectAndSetIcon(const wxIconBundle& icons, int smX, int smY, int i); | |
b9e66233 | 176 | |
fa5f4858 VZ |
177 | // override wxWindow virtual method to use CW_USEDEFAULT if necessary |
178 | virtual void MSWGetCreateWindowCoords(const wxPoint& pos, | |
179 | const wxSize& size, | |
180 | int& x, int& y, | |
181 | int& w, int& h) const; | |
182 | ||
d43eb2a0 | 183 | |
7e25f59e | 184 | // is the window currently iconized? |
82c9f85c VZ |
185 | bool m_iconized; |
186 | ||
187 | // should the frame be maximized when it will be shown? set by Maximize() | |
188 | // when it is called while the frame is hidden | |
189 | bool m_maximizeOnShow; | |
41e929e5 VS |
190 | |
191 | // Data to save/restore when calling ShowFullScreen | |
192 | long m_fsStyle; // Passed to ShowFullScreen | |
193 | wxRect m_fsOldSize; | |
194 | long m_fsOldWindowStyle; | |
195 | bool m_fsIsMaximized; | |
196 | bool m_fsIsShowing; | |
9dfef5ac | 197 | |
0c6dff03 VZ |
198 | // Save the current focus to m_winLastFocused if we're not iconized (the |
199 | // focus is always NULL when we're iconized). | |
200 | void DoSaveLastFocus(); | |
201 | ||
202 | // Restore focus to m_winLastFocused if possible and needed. | |
203 | void DoRestoreLastFocus(); | |
204 | ||
205 | // The last focused child: we remember it when we're deactivated and | |
206 | // restore focus to it when we're activated (this is done here) or restored | |
207 | // from iconic state (done by wxFrame). | |
085ad686 VZ |
208 | wxWindow *m_winLastFocused; |
209 | ||
9b141468 | 210 | #if defined(__SMARTPHONE__) && defined(__WXWINCE__) |
fb8a56b7 WS |
211 | class ButtonMenu |
212 | { | |
213 | public: | |
214 | ButtonMenu(); | |
215 | ~ButtonMenu(); | |
216 | ||
bfbb0b4c WS |
217 | void SetButton(int id = wxID_ANY, |
218 | const wxString& label = wxEmptyString, | |
fb8a56b7 WS |
219 | wxMenu *subMenu = NULL); |
220 | ||
221 | bool IsAssigned() const {return m_assigned;} | |
222 | bool IsMenu() const {return m_menu!=NULL;} | |
223 | ||
224 | int GetId() const {return m_id;} | |
225 | wxMenu* GetMenu() const {return m_menu;} | |
226 | wxString GetLabel() {return m_label;} | |
227 | ||
228 | static wxMenu *DuplicateMenu(wxMenu *menu); | |
229 | ||
230 | protected: | |
231 | int m_id; | |
232 | wxString m_label; | |
233 | wxMenu *m_menu; | |
234 | bool m_assigned; | |
235 | }; | |
236 | ||
237 | ButtonMenu m_LeftButton; | |
238 | ButtonMenu m_RightButton; | |
239 | HWND m_MenuBarHWND; | |
240 | ||
241 | void ReloadButton(ButtonMenu& button, UINT menuID); | |
242 | void ReloadAllButtons(); | |
9b141468 | 243 | #endif // __SMARTPHONE__ && __WXWINCE__ |
fb8a56b7 | 244 | |
08b97268 WS |
245 | private: |
246 | ||
247 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) | |
248 | void* m_activateInfo; | |
249 | #endif | |
250 | ||
ddae5262 VZ |
251 | // The system menu: initially NULL but can be set (once) by |
252 | // MSWGetSystemMenu(). Owned by this window. | |
253 | wxMenu *m_menuSystem; | |
254 | ||
1e5b533e VZ |
255 | // The number of currently opened menus: 0 initially, 1 when a top level |
256 | // menu is opened, 2 when its submenu is opened and so on. | |
257 | int m_menuDepth; | |
258 | ||
085ad686 | 259 | DECLARE_EVENT_TABLE() |
c0c133e1 | 260 | wxDECLARE_NO_COPY_CLASS(wxTopLevelWindowMSW); |
82c9f85c VZ |
261 | }; |
262 | ||
82c9f85c | 263 | #endif // _WX_MSW_TOPLEVEL_H_ |