]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: frame.cpp | |
3 | // Purpose: wxFrame | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "frame.h" | |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
9f3362c4 | 20 | #pragma hdrstop |
2bda0e17 KB |
21 | #endif |
22 | ||
23 | #ifndef WX_PRECOMP | |
9f3362c4 VZ |
24 | #include "wx/setup.h" |
25 | #include "wx/frame.h" | |
26 | #include "wx/menu.h" | |
27 | #include "wx/app.h" | |
28 | #include "wx/utils.h" | |
29 | #include "wx/dialog.h" | |
30 | #include "wx/settings.h" | |
31 | #include "wx/dcclient.h" | |
32 | #endif // WX_PRECOMP | |
2bda0e17 KB |
33 | |
34 | #include "wx/msw/private.h" | |
35 | #include "wx/statusbr.h" | |
81d66cf3 | 36 | #include "wx/toolbar.h" |
2bda0e17 | 37 | #include "wx/menuitem.h" |
6776a0b2 | 38 | #include "wx/log.h" |
2bda0e17 | 39 | |
47d67540 | 40 | #if wxUSE_NATIVE_STATUSBAR |
9f3362c4 | 41 | #include <wx/msw/statbr95.h> |
2bda0e17 KB |
42 | #endif |
43 | ||
a23fd0e1 | 44 | extern wxWindowList wxModelessWindows; |
cde9f08e | 45 | extern wxList WXDLLEXPORT wxPendingDelete; |
837e5743 | 46 | extern wxChar wxFrameClassName[]; |
e1a6fc11 | 47 | extern wxMenu *wxCurrentPopupMenu; |
2bda0e17 KB |
48 | |
49 | #if !USE_SHARED_LIBRARY | |
50 | BEGIN_EVENT_TABLE(wxFrame, wxWindow) | |
51 | EVT_SIZE(wxFrame::OnSize) | |
52 | EVT_ACTIVATE(wxFrame::OnActivate) | |
53 | EVT_MENU_HIGHLIGHT_ALL(wxFrame::OnMenuHighlight) | |
54 | EVT_SYS_COLOUR_CHANGED(wxFrame::OnSysColourChanged) | |
55 | EVT_IDLE(wxFrame::OnIdle) | |
56 | EVT_CLOSE(wxFrame::OnCloseWindow) | |
57 | END_EVENT_TABLE() | |
58 | ||
59 | IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow) | |
60 | #endif | |
61 | ||
47d67540 | 62 | #if wxUSE_NATIVE_STATUSBAR |
9f3362c4 | 63 | bool wxFrame::m_useNativeStatusBar = TRUE; |
2bda0e17 | 64 | #else |
9f3362c4 | 65 | bool wxFrame::m_useNativeStatusBar = FALSE; |
2bda0e17 KB |
66 | #endif |
67 | ||
bfc6fde4 | 68 | wxFrame::wxFrame() |
2bda0e17 | 69 | { |
73e7daa0 | 70 | m_frameToolBar = NULL ; |
2bda0e17 KB |
71 | m_frameMenuBar = NULL; |
72 | m_frameStatusBar = NULL; | |
73 | ||
2bda0e17 KB |
74 | m_iconized = FALSE; |
75 | } | |
76 | ||
77 | bool wxFrame::Create(wxWindow *parent, | |
debe6624 | 78 | wxWindowID id, |
2bda0e17 KB |
79 | const wxString& title, |
80 | const wxPoint& pos, | |
81 | const wxSize& size, | |
debe6624 | 82 | long style, |
2bda0e17 KB |
83 | const wxString& name) |
84 | { | |
9f3362c4 VZ |
85 | #if wxUSE_TOOLTIPS |
86 | m_hwndToolTip = 0; | |
87 | #endif | |
88 | ||
2bda0e17 KB |
89 | if (!parent) |
90 | wxTopLevelWindows.Append(this); | |
91 | ||
92 | SetName(name); | |
2bda0e17 KB |
93 | m_windowStyle = style; |
94 | m_frameMenuBar = NULL; | |
73e7daa0 | 95 | m_frameToolBar = NULL ; |
2bda0e17 KB |
96 | m_frameStatusBar = NULL; |
97 | ||
98 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE)); | |
99 | ||
100 | // m_icon = NULL; | |
101 | if ( id > -1 ) | |
102 | m_windowId = id; | |
103 | else | |
104 | m_windowId = (int)NewControlId(); | |
105 | ||
106 | if (parent) parent->AddChild(this); | |
107 | ||
108 | int x = pos.x; | |
109 | int y = pos.y; | |
110 | int width = size.x; | |
111 | int height = size.y; | |
112 | ||
113 | m_iconized = FALSE; | |
d2aef312 VZ |
114 | |
115 | // we pass NULL as parent to MSWCreate because frames with parents behave | |
116 | // very strangely under Win95 shell | |
aeab10d0 JS |
117 | // Alteration by JACS: keep normal Windows behaviour (float on top of parent) |
118 | // with this style. | |
119 | if ((m_windowStyle & wxFRAME_FLOAT_ON_PARENT) == 0) | |
120 | parent = NULL; | |
121 | ||
122 | MSWCreate(m_windowId, parent, wxFrameClassName, this, title, | |
d2aef312 | 123 | x, y, width, height, style); |
2bda0e17 KB |
124 | |
125 | wxModelessWindows.Append(this); | |
126 | return TRUE; | |
127 | } | |
128 | ||
bfc6fde4 | 129 | wxFrame::~wxFrame() |
2bda0e17 KB |
130 | { |
131 | m_isBeingDeleted = TRUE; | |
132 | wxTopLevelWindows.DeleteObject(this); | |
133 | ||
134 | if (m_frameStatusBar) | |
135 | delete m_frameStatusBar; | |
136 | if (m_frameMenuBar) | |
137 | delete m_frameMenuBar; | |
138 | ||
139 | /* New behaviour March 1998: check if it's the last top-level window */ | |
140 | // if (wxTheApp && (this == wxTheApp->GetTopWindow())) | |
141 | ||
142 | if (wxTheApp && (wxTopLevelWindows.Number() == 0)) | |
143 | { | |
144 | wxTheApp->SetTopWindow(NULL); | |
145 | ||
146 | if (wxTheApp->GetExitOnFrameDelete()) | |
147 | { | |
148 | PostQuitMessage(0); | |
149 | } | |
150 | } | |
151 | ||
152 | wxModelessWindows.DeleteObject(this); | |
153 | ||
154 | // For some reason, wxWindows can activate another task altogether | |
155 | // when a frame is destroyed after a modal dialog has been invoked. | |
156 | // Try to bring the parent to the top. | |
157 | if (GetParent() && GetParent()->GetHWND()) | |
158 | ::BringWindowToTop((HWND) GetParent()->GetHWND()); | |
159 | } | |
160 | ||
81d66cf3 | 161 | // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc. |
cc2b7472 | 162 | void wxFrame::DoGetClientSize(int *x, int *y) const |
2bda0e17 KB |
163 | { |
164 | RECT rect; | |
42e69d6b | 165 | ::GetClientRect(GetHwnd(), &rect); |
2bda0e17 | 166 | |
81d66cf3 | 167 | if ( GetStatusBar() ) |
2bda0e17 | 168 | { |
81d66cf3 JS |
169 | int statusX, statusY; |
170 | GetStatusBar()->GetClientSize(&statusX, &statusY); | |
171 | rect.bottom -= statusY; | |
2bda0e17 | 172 | } |
81d66cf3 JS |
173 | |
174 | wxPoint pt(GetClientAreaOrigin()); | |
175 | rect.bottom -= pt.y; | |
176 | rect.right -= pt.x; | |
177 | ||
2bda0e17 KB |
178 | *x = rect.right; |
179 | *y = rect.bottom; | |
180 | } | |
181 | ||
182 | // Set the client size (i.e. leave the calculation of borders etc. | |
183 | // to wxWindows) | |
bfc6fde4 | 184 | void wxFrame::DoSetClientSize(int width, int height) |
2bda0e17 | 185 | { |
42e69d6b | 186 | HWND hWnd = GetHwnd(); |
2bda0e17 KB |
187 | |
188 | RECT rect; | |
2de8030d | 189 | ::GetClientRect(hWnd, &rect); |
2bda0e17 KB |
190 | |
191 | RECT rect2; | |
192 | GetWindowRect(hWnd, &rect2); | |
193 | ||
194 | // Find the difference between the entire window (title bar and all) | |
195 | // and the client area; add this to the new client size to move the | |
196 | // window | |
197 | int actual_width = rect2.right - rect2.left - rect.right + width; | |
198 | int actual_height = rect2.bottom - rect2.top - rect.bottom + height; | |
199 | ||
81d66cf3 | 200 | if ( GetStatusBar() ) |
2bda0e17 | 201 | { |
81d66cf3 JS |
202 | int statusX, statusY; |
203 | GetStatusBar()->GetClientSize(&statusX, &statusY); | |
204 | actual_height += statusY; | |
2bda0e17 KB |
205 | } |
206 | ||
81d66cf3 JS |
207 | wxPoint pt(GetClientAreaOrigin()); |
208 | actual_width += pt.y; | |
209 | actual_height += pt.x; | |
210 | ||
2bda0e17 KB |
211 | POINT point; |
212 | point.x = rect2.left; | |
213 | point.y = rect2.top; | |
214 | ||
215 | MoveWindow(hWnd, point.x, point.y, actual_width, actual_height, (BOOL)TRUE); | |
debe6624 | 216 | |
2bda0e17 KB |
217 | wxSizeEvent event(wxSize(width, height), m_windowId); |
218 | event.SetEventObject( this ); | |
219 | GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
220 | } |
221 | ||
cc2b7472 | 222 | void wxFrame::DoGetSize(int *width, int *height) const |
2bda0e17 KB |
223 | { |
224 | RECT rect; | |
42e69d6b | 225 | GetWindowRect(GetHwnd(), &rect); |
2bda0e17 KB |
226 | *width = rect.right - rect.left; |
227 | *height = rect.bottom - rect.top; | |
228 | } | |
229 | ||
cc2b7472 | 230 | void wxFrame::DoGetPosition(int *x, int *y) const |
2bda0e17 KB |
231 | { |
232 | RECT rect; | |
42e69d6b | 233 | GetWindowRect(GetHwnd(), &rect); |
2bda0e17 KB |
234 | POINT point; |
235 | point.x = rect.left; | |
236 | point.y = rect.top; | |
237 | ||
238 | *x = point.x; | |
239 | *y = point.y; | |
240 | } | |
241 | ||
bfc6fde4 | 242 | void wxFrame::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
2bda0e17 KB |
243 | { |
244 | int currentX, currentY; | |
245 | int x1 = x; | |
246 | int y1 = y; | |
247 | int w1 = width; | |
248 | int h1 = height; | |
249 | ||
250 | GetPosition(¤tX, ¤tY); | |
251 | if (x == -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) | |
252 | x1 = currentX; | |
253 | if (y == -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE)) | |
254 | y1 = currentY; | |
255 | ||
256 | int ww,hh ; | |
257 | GetSize(&ww,&hh) ; | |
258 | if (width == -1) w1 = ww ; | |
259 | if (height==-1) h1 = hh ; | |
260 | ||
42e69d6b | 261 | MoveWindow(GetHwnd(), x1, y1, w1, h1, (BOOL)TRUE); |
2bda0e17 | 262 | |
2bda0e17 KB |
263 | wxSizeEvent event(wxSize(width, height), m_windowId); |
264 | event.SetEventObject( this ); | |
265 | GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
266 | } |
267 | ||
debe6624 | 268 | bool wxFrame::Show(bool show) |
2bda0e17 KB |
269 | { |
270 | int cshow; | |
271 | if (show) | |
272 | cshow = SW_SHOW; | |
273 | else | |
274 | cshow = SW_HIDE; | |
275 | ||
276 | if (!show) | |
277 | { | |
278 | // Try to highlight the correct window (the parent) | |
279 | HWND hWndParent = 0; | |
280 | if (GetParent()) | |
281 | { | |
282 | hWndParent = (HWND) GetParent()->GetHWND(); | |
283 | if (hWndParent) | |
284 | ::BringWindowToTop(hWndParent); | |
285 | } | |
286 | } | |
287 | ||
42e69d6b | 288 | ShowWindow(GetHwnd(), (BOOL)cshow); |
2bda0e17 KB |
289 | if (show) |
290 | { | |
42e69d6b | 291 | BringWindowToTop(GetHwnd()); |
2bda0e17 | 292 | |
2bda0e17 KB |
293 | wxActivateEvent event(wxEVT_ACTIVATE, TRUE, m_windowId); |
294 | event.SetEventObject( this ); | |
295 | GetEventHandler()->ProcessEvent(event); | |
2bda0e17 KB |
296 | } |
297 | return TRUE; | |
298 | } | |
299 | ||
debe6624 | 300 | void wxFrame::Iconize(bool iconize) |
2bda0e17 KB |
301 | { |
302 | if (!iconize) | |
303 | Show(TRUE); | |
304 | ||
305 | int cshow; | |
306 | if (iconize) | |
307 | cshow = SW_MINIMIZE; | |
308 | else | |
309 | cshow = SW_RESTORE; | |
42e69d6b | 310 | ShowWindow(GetHwnd(), (BOOL)cshow); |
2bda0e17 KB |
311 | m_iconized = iconize; |
312 | } | |
313 | ||
314 | // Equivalent to maximize/restore in Windows | |
debe6624 | 315 | void wxFrame::Maximize(bool maximize) |
2bda0e17 KB |
316 | { |
317 | Show(TRUE); | |
318 | int cshow; | |
319 | if (maximize) | |
320 | cshow = SW_MAXIMIZE; | |
321 | else | |
322 | cshow = SW_RESTORE; | |
42e69d6b | 323 | ShowWindow(GetHwnd(), cshow); |
2bda0e17 KB |
324 | m_iconized = FALSE; |
325 | } | |
326 | ||
bfc6fde4 | 327 | bool wxFrame::IsIconized() const |
2bda0e17 | 328 | { |
42e69d6b | 329 | ((wxFrame *)this)->m_iconized = (::IsIconic(GetHwnd()) != 0); |
2bda0e17 KB |
330 | return m_iconized; |
331 | } | |
332 | ||
6f63ec3f | 333 | // Is it maximized? |
bfc6fde4 | 334 | bool wxFrame::IsMaximized() const |
6f63ec3f | 335 | { |
42e69d6b | 336 | return (::IsZoomed(GetHwnd()) != 0) ; |
2bda0e17 KB |
337 | } |
338 | ||
339 | void wxFrame::SetIcon(const wxIcon& icon) | |
340 | { | |
341 | m_icon = icon; | |
342 | #if defined(__WIN95__) | |
343 | if ( m_icon.Ok() ) | |
42e69d6b | 344 | SendMessage(GetHwnd(), WM_SETICON, |
2bda0e17 KB |
345 | (WPARAM)TRUE, (LPARAM)(HICON) m_icon.GetHICON()); |
346 | #endif | |
347 | } | |
348 | ||
d427503c | 349 | #if wxUSE_STATUSBAR |
81d66cf3 JS |
350 | wxStatusBar *wxFrame::OnCreateStatusBar(int number, long style, wxWindowID id, |
351 | const wxString& name) | |
2bda0e17 KB |
352 | { |
353 | wxStatusBar *statusBar = NULL; | |
354 | ||
47d67540 | 355 | #if wxUSE_NATIVE_STATUSBAR |
2bda0e17 KB |
356 | if (UsesNativeStatusBar()) |
357 | { | |
81d66cf3 | 358 | statusBar = new wxStatusBar95(this, id, style); |
2bda0e17 KB |
359 | } |
360 | else | |
361 | #endif | |
362 | { | |
81d66cf3 JS |
363 | statusBar = new wxStatusBar(this, id, wxPoint(0, 0), wxSize(100, 20), |
364 | style, name); | |
2bda0e17 KB |
365 | |
366 | // Set the height according to the font and the border size | |
367 | wxClientDC dc(statusBar); | |
c0ed460c | 368 | dc.SetFont(statusBar->GetFont()); |
2bda0e17 KB |
369 | |
370 | long x, y; | |
371 | dc.GetTextExtent("X", &x, &y); | |
372 | ||
373 | int height = (int)( (y * 1.1) + 2* statusBar->GetBorderY()); | |
374 | ||
375 | statusBar->SetSize(-1, -1, 100, height); | |
376 | } | |
377 | ||
378 | statusBar->SetFieldsCount(number); | |
379 | return statusBar; | |
380 | } | |
381 | ||
81d66cf3 JS |
382 | wxStatusBar* wxFrame::CreateStatusBar(int number, long style, wxWindowID id, |
383 | const wxString& name) | |
2bda0e17 KB |
384 | { |
385 | // VZ: calling CreateStatusBar twice is an error - why anyone would do it? | |
c2dcfdef | 386 | wxCHECK_MSG( m_frameStatusBar == NULL, FALSE, |
837e5743 | 387 | _T("recreating status bar in wxFrame") ); |
2bda0e17 | 388 | |
81d66cf3 JS |
389 | m_frameStatusBar = OnCreateStatusBar(number, style, id, |
390 | name); | |
2bda0e17 KB |
391 | if ( m_frameStatusBar ) |
392 | { | |
393 | PositionStatusBar(); | |
81d66cf3 | 394 | return m_frameStatusBar; |
2bda0e17 KB |
395 | } |
396 | else | |
81d66cf3 | 397 | return NULL; |
2bda0e17 KB |
398 | } |
399 | ||
debe6624 | 400 | void wxFrame::SetStatusText(const wxString& text, int number) |
2bda0e17 | 401 | { |
837e5743 | 402 | wxCHECK_RET( m_frameStatusBar != NULL, _T("no statusbar to set text for") ); |
2bda0e17 KB |
403 | |
404 | m_frameStatusBar->SetStatusText(text, number); | |
405 | } | |
406 | ||
8b9518ee | 407 | void wxFrame::SetStatusWidths(int n, const int widths_field[]) |
2bda0e17 | 408 | { |
837e5743 | 409 | wxCHECK_RET( m_frameStatusBar != NULL, _T("no statusbar to set widths for") ); |
2bda0e17 KB |
410 | |
411 | m_frameStatusBar->SetStatusWidths(n, widths_field); | |
412 | PositionStatusBar(); | |
413 | } | |
414 | ||
bfc6fde4 | 415 | void wxFrame::PositionStatusBar() |
2bda0e17 KB |
416 | { |
417 | // native status bar positions itself | |
418 | if (m_frameStatusBar | |
47d67540 | 419 | #if wxUSE_NATIVE_STATUSBAR |
2bda0e17 KB |
420 | && !m_frameStatusBar->IsKindOf(CLASSINFO(wxStatusBar95)) |
421 | #endif | |
422 | ) | |
423 | { | |
424 | int w, h; | |
425 | GetClientSize(&w, &h); | |
426 | int sw, sh; | |
427 | m_frameStatusBar->GetSize(&sw, &sh); | |
81d66cf3 JS |
428 | |
429 | // Since we wish the status bar to be directly under the client area, | |
430 | // we use the adjusted sizes without using wxSIZE_NO_ADJUSTMENTS. | |
2bda0e17 KB |
431 | m_frameStatusBar->SetSize(0, h, w, sh); |
432 | } | |
433 | } | |
d427503c | 434 | #endif // wxUSE_STATUSBAR |
2bda0e17 KB |
435 | |
436 | void wxFrame::SetMenuBar(wxMenuBar *menu_bar) | |
437 | { | |
c2dcfdef VZ |
438 | if (!menu_bar) |
439 | { | |
440 | m_frameMenuBar = NULL; | |
441 | return; | |
442 | } | |
2bda0e17 | 443 | |
837e5743 | 444 | wxCHECK_RET( !menu_bar->GetFrame(), _T("this menubar is already attached") ); |
2bda0e17 | 445 | |
c2dcfdef VZ |
446 | if (m_frameMenuBar) |
447 | delete m_frameMenuBar; | |
2bda0e17 | 448 | |
c2dcfdef | 449 | m_hMenu = menu_bar->Create(); |
2bda0e17 | 450 | |
c2dcfdef VZ |
451 | if ( !m_hMenu ) |
452 | return; | |
2bda0e17 | 453 | |
42e69d6b | 454 | InternalSetMenuBar(); |
2bda0e17 | 455 | |
c2dcfdef VZ |
456 | m_frameMenuBar = menu_bar; |
457 | menu_bar->Attach(this); | |
2bda0e17 KB |
458 | } |
459 | ||
42e69d6b | 460 | void wxFrame::InternalSetMenuBar() |
2bda0e17 | 461 | { |
42e69d6b | 462 | if ( !::SetMenu(GetHwnd(), (HMENU)m_hMenu) ) |
2bda0e17 | 463 | { |
42e69d6b | 464 | wxLogLastError("SetMenu"); |
2bda0e17 | 465 | } |
2bda0e17 KB |
466 | } |
467 | ||
468 | // Responds to colour changes, and passes event on to children. | |
469 | void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event) | |
470 | { | |
471 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE)); | |
472 | Refresh(); | |
473 | ||
474 | if ( m_frameStatusBar ) | |
475 | { | |
476 | wxSysColourChangedEvent event2; | |
477 | event2.SetEventObject( m_frameStatusBar ); | |
02800301 | 478 | m_frameStatusBar->GetEventHandler()->ProcessEvent(event2); |
2bda0e17 KB |
479 | } |
480 | ||
481 | // Propagate the event to the non-top-level children | |
482 | wxWindow::OnSysColourChanged(event); | |
483 | } | |
484 | ||
485 | /* | |
486 | * Frame window | |
487 | * | |
488 | */ | |
489 | ||
837e5743 | 490 | bool wxFrame::MSWCreate(int id, wxWindow *parent, const wxChar *wclass, wxWindow *wx_win, const wxChar *title, |
debe6624 | 491 | int x, int y, int width, int height, long style) |
2bda0e17 KB |
492 | |
493 | { | |
494 | m_defaultIcon = (WXHICON) (wxSTD_FRAME_ICON ? wxSTD_FRAME_ICON : wxDEFAULT_FRAME_ICON); | |
495 | ||
496 | // If child windows aren't properly drawn initially, WS_CLIPCHILDREN | |
497 | // could be the culprit. But without it, you can get a lot of flicker. | |
498 | ||
2bda0e17 KB |
499 | DWORD msflags = 0; |
500 | if ((style & wxCAPTION) == wxCAPTION) | |
1c089c47 | 501 | msflags = WS_OVERLAPPED; |
2bda0e17 | 502 | else |
1c089c47 | 503 | msflags = WS_POPUP; |
2bda0e17 KB |
504 | |
505 | if (style & wxMINIMIZE_BOX) | |
506 | msflags |= WS_MINIMIZEBOX; | |
507 | if (style & wxMAXIMIZE_BOX) | |
508 | msflags |= WS_MAXIMIZEBOX; | |
509 | if (style & wxTHICK_FRAME) | |
510 | msflags |= WS_THICKFRAME; | |
511 | if (style & wxSYSTEM_MENU) | |
512 | msflags |= WS_SYSMENU; | |
513 | if ((style & wxMINIMIZE) || (style & wxICONIZE)) | |
514 | msflags |= WS_MINIMIZE; | |
515 | if (style & wxMAXIMIZE) | |
516 | msflags |= WS_MAXIMIZE; | |
517 | if (style & wxCAPTION) | |
518 | msflags |= WS_CAPTION; | |
1c089c47 JS |
519 | if (style & wxCLIP_CHILDREN) |
520 | msflags |= WS_CLIPCHILDREN; | |
2bda0e17 KB |
521 | |
522 | // Keep this in wxFrame because it saves recoding this function | |
523 | // in wxTinyFrame | |
47d67540 | 524 | #if wxUSE_ITSY_BITSY |
2bda0e17 KB |
525 | if (style & wxTINY_CAPTION_VERT) |
526 | msflags |= IBS_VERTCAPTION; | |
527 | if (style & wxTINY_CAPTION_HORIZ) | |
528 | msflags |= IBS_HORZCAPTION; | |
529 | #else | |
530 | if (style & wxTINY_CAPTION_VERT) | |
531 | msflags |= WS_CAPTION; | |
532 | if (style & wxTINY_CAPTION_HORIZ) | |
533 | msflags |= WS_CAPTION; | |
534 | #endif | |
535 | if ((style & wxTHICK_FRAME) == 0) | |
536 | msflags |= WS_BORDER; | |
537 | ||
538 | WXDWORD extendedStyle = MakeExtendedStyle(style); | |
539 | ||
2432b92d | 540 | #if !defined(__WIN16__) && !defined(__SC__) |
cd2df130 JS |
541 | if (style & wxFRAME_TOOL_WINDOW) |
542 | extendedStyle |= WS_EX_TOOLWINDOW; | |
1e6d9499 | 543 | #endif |
cd2df130 | 544 | |
2bda0e17 KB |
545 | if (style & wxSTAY_ON_TOP) |
546 | extendedStyle |= WS_EX_TOPMOST; | |
547 | ||
548 | m_iconized = FALSE; | |
a23fd0e1 VZ |
549 | if ( !wxWindow::MSWCreate(id, parent, wclass, wx_win, title, x, y, width, height, |
550 | msflags, NULL, extendedStyle) ) | |
551 | return FALSE; | |
552 | ||
2bda0e17 KB |
553 | // Seems to be necessary if we use WS_POPUP |
554 | // style instead of WS_OVERLAPPED | |
555 | if (width > -1 && height > -1) | |
42e69d6b | 556 | ::PostMessage(GetHwnd(), WM_SIZE, SIZE_RESTORED, MAKELPARAM(width, height)); |
a23fd0e1 VZ |
557 | |
558 | return TRUE; | |
2bda0e17 KB |
559 | } |
560 | ||
a23fd0e1 VZ |
561 | // Default resizing behaviour - if only ONE subwindow, resize to client |
562 | // rectangle size | |
2bda0e17 KB |
563 | void wxFrame::OnSize(wxSizeEvent& event) |
564 | { | |
a23fd0e1 VZ |
565 | // if we're using constraints - do use them |
566 | #if wxUSE_CONSTRAINTS | |
567 | if ( GetAutoLayout() ) | |
568 | { | |
569 | Layout(); | |
570 | return; | |
cd70477b | 571 | } |
a23fd0e1 | 572 | #endif |
cd70477b | 573 | |
a23fd0e1 VZ |
574 | // do we have _exactly_ one child? |
575 | wxWindow *child = NULL; | |
d427503c VZ |
576 | for ( wxWindowList::Node *node = GetChildren().GetFirst(); |
577 | node; | |
578 | node = node->GetNext() ) | |
2bda0e17 | 579 | { |
d427503c VZ |
580 | wxWindow *win = node->GetData(); |
581 | if ( !win->IsTopLevel() | |
582 | #if wxUSE_STATUSBAR | |
583 | && (win != GetStatusBar()) | |
584 | #endif // wxUSE_STATUSBAR | |
585 | #if wxUSE_TOOLBAR | |
586 | && (win != GetToolBar()) | |
587 | #endif // wxUSE_TOOLBAR | |
588 | ) | |
a23fd0e1 VZ |
589 | { |
590 | if ( child ) | |
591 | return; // it's our second subwindow - nothing to do | |
592 | child = win; | |
593 | } | |
2bda0e17 | 594 | } |
2bda0e17 | 595 | |
a23fd0e1 VZ |
596 | if ( child ) { |
597 | // we have exactly one child - set it's size to fill the whole frame | |
598 | int clientW, clientH; | |
599 | GetClientSize(&clientW, &clientH); | |
2bda0e17 | 600 | |
a23fd0e1 VZ |
601 | int x = 0; |
602 | int y = 0; | |
73e7daa0 | 603 | |
a23fd0e1 VZ |
604 | child->SetSize(x, y, clientW, clientH); |
605 | } | |
2bda0e17 KB |
606 | } |
607 | ||
608 | // Default activation behaviour - set the focus for the first child | |
609 | // subwindow found. | |
610 | void wxFrame::OnActivate(wxActivateEvent& event) | |
611 | { | |
c0ed460c | 612 | for(wxNode *node = GetChildren().First(); node; node = node->Next()) |
2bda0e17 KB |
613 | { |
614 | // Find a child that's a subwindow, but not a dialog box. | |
615 | wxWindow *child = (wxWindow *)node->Data(); | |
616 | if (!child->IsKindOf(CLASSINFO(wxFrame)) && | |
617 | !child->IsKindOf(CLASSINFO(wxDialog))) | |
618 | { | |
2bda0e17 KB |
619 | child->SetFocus(); |
620 | return; | |
621 | } | |
622 | } | |
623 | } | |
624 | ||
e3065973 | 625 | // The default implementation for the close window event. |
2bda0e17 KB |
626 | void wxFrame::OnCloseWindow(wxCloseEvent& event) |
627 | { | |
42e69d6b | 628 | Destroy(); |
47fa7969 JS |
629 | } |
630 | ||
2bda0e17 | 631 | // Destroy the window (delayed, if a managed window) |
bfc6fde4 | 632 | bool wxFrame::Destroy() |
2bda0e17 KB |
633 | { |
634 | if (!wxPendingDelete.Member(this)) | |
635 | wxPendingDelete.Append(this); | |
636 | return TRUE; | |
637 | } | |
638 | ||
639 | // Default menu selection behaviour - display a help string | |
640 | void wxFrame::OnMenuHighlight(wxMenuEvent& event) | |
641 | { | |
642 | if (GetStatusBar()) | |
643 | { | |
d20eef8a VZ |
644 | int menuId = event.GetMenuId(); |
645 | if ( menuId != -1 ) | |
2bda0e17 KB |
646 | { |
647 | wxMenuBar *menuBar = GetMenuBar(); | |
58abfef6 | 648 | if (menuBar && menuBar->FindItem(menuId)) |
2bda0e17 | 649 | { |
d20eef8a VZ |
650 | // set status text even if the string is empty - this will at |
651 | // least remove the string from the item which was previously | |
652 | // selected | |
653 | SetStatusText(menuBar->GetHelpString(menuId)); | |
2bda0e17 KB |
654 | } |
655 | } | |
656 | } | |
657 | } | |
658 | ||
bfc6fde4 | 659 | wxMenuBar *wxFrame::GetMenuBar() const |
2bda0e17 KB |
660 | { |
661 | return m_frameMenuBar; | |
662 | } | |
663 | ||
42e69d6b | 664 | bool wxFrame::ProcessCommand(int id) |
2bda0e17 | 665 | { |
42e69d6b VZ |
666 | wxMenuBar *bar = GetMenuBar() ; |
667 | if ( !bar ) | |
668 | return FALSE; | |
2bda0e17 | 669 | |
42e69d6b VZ |
670 | wxMenuItem *item = bar->FindItemForId(id); |
671 | if ( !item ) | |
672 | return FALSE; | |
e702ff0f | 673 | |
42e69d6b VZ |
674 | if ( item->IsCheckable() ) |
675 | { | |
676 | bar->Check(id, !bar->IsChecked(id)) ; | |
677 | } | |
e702ff0f | 678 | |
42e69d6b VZ |
679 | wxCommandEvent commandEvent(wxEVT_COMMAND_MENU_SELECTED, id); |
680 | commandEvent.SetInt( id ); | |
681 | commandEvent.SetEventObject( this ); | |
6c41a418 | 682 | |
42e69d6b | 683 | return GetEventHandler()->ProcessEvent(commandEvent); |
2bda0e17 KB |
684 | } |
685 | ||
81d66cf3 JS |
686 | // Checks if there is a toolbar, and returns the first free client position |
687 | wxPoint wxFrame::GetClientAreaOrigin() const | |
688 | { | |
689 | wxPoint pt(0, 0); | |
690 | if (GetToolBar()) | |
691 | { | |
692 | int w, h; | |
693 | GetToolBar()->GetSize(& w, & h); | |
694 | ||
695 | if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL) | |
696 | { | |
697 | pt.x += w; | |
698 | } | |
699 | else | |
700 | { | |
701 | pt.y += h; | |
702 | } | |
703 | } | |
704 | return pt; | |
705 | } | |
706 | ||
87d1e11f JS |
707 | void wxFrame::ScreenToClient(int *x, int *y) const |
708 | { | |
709 | wxWindow::ScreenToClient(x, y); | |
710 | ||
711 | // We may be faking the client origin. | |
712 | // So a window that's really at (0, 30) may appear | |
713 | // (to wxWin apps) to be at (0, 0). | |
714 | wxPoint pt(GetClientAreaOrigin()); | |
715 | *x -= pt.x; | |
716 | *y -= pt.y; | |
717 | } | |
718 | ||
719 | void wxFrame::ClientToScreen(int *x, int *y) const | |
720 | { | |
721 | // We may be faking the client origin. | |
722 | // So a window that's really at (0, 30) may appear | |
723 | // (to wxWin apps) to be at (0, 0). | |
724 | wxPoint pt1(GetClientAreaOrigin()); | |
725 | *x += pt1.x; | |
726 | *y += pt1.y; | |
727 | ||
728 | wxWindow::ClientToScreen(x, y); | |
729 | } | |
730 | ||
d427503c | 731 | #if wxUSE_TOOLBAR |
81d66cf3 JS |
732 | wxToolBar* wxFrame::CreateToolBar(long style, wxWindowID id, const wxString& name) |
733 | { | |
734 | wxCHECK_MSG( m_frameToolBar == NULL, FALSE, | |
837e5743 | 735 | _T("recreating toolbar in wxFrame") ); |
81d66cf3 JS |
736 | |
737 | wxToolBar* toolBar = OnCreateToolBar(style, id, name); | |
738 | if (toolBar) | |
739 | { | |
740 | SetToolBar(toolBar); | |
741 | PositionToolBar(); | |
742 | return toolBar; | |
743 | } | |
744 | else | |
745 | { | |
746 | return NULL; | |
747 | } | |
748 | } | |
749 | ||
750 | wxToolBar* wxFrame::OnCreateToolBar(long style, wxWindowID id, const wxString& name) | |
751 | { | |
752 | return new wxToolBar(this, id, wxDefaultPosition, wxDefaultSize, style, name); | |
753 | } | |
754 | ||
bfc6fde4 | 755 | void wxFrame::PositionToolBar() |
81d66cf3 | 756 | { |
81d66cf3 | 757 | RECT rect; |
42e69d6b | 758 | ::GetClientRect(GetHwnd(), &rect); |
81d66cf3 JS |
759 | |
760 | if ( GetStatusBar() ) | |
761 | { | |
762 | int statusX, statusY; | |
763 | GetStatusBar()->GetClientSize(&statusX, &statusY); | |
764 | rect.bottom -= statusY; | |
765 | } | |
766 | ||
767 | if (GetToolBar()) | |
768 | { | |
769 | int tw, th; | |
770 | GetToolBar()->GetSize(& tw, & th); | |
771 | ||
772 | if (GetToolBar()->GetWindowStyleFlag() & wxTB_VERTICAL) | |
773 | { | |
774 | // Use the 'real' MSW position | |
775 | GetToolBar()->SetSize(0, 0, tw, rect.bottom, wxSIZE_NO_ADJUSTMENTS); | |
776 | } | |
777 | else | |
778 | { | |
779 | // Use the 'real' MSW position | |
780 | GetToolBar()->SetSize(0, 0, rect.right, th, wxSIZE_NO_ADJUSTMENTS); | |
781 | } | |
782 | } | |
783 | } | |
d427503c | 784 | #endif // wxUSE_TOOLBAR |
d2aef312 | 785 | |
a23fd0e1 VZ |
786 | // propagate our state change to all child frames: this allows us to emulate X |
787 | // Windows behaviour where child frames float independently of the parent one | |
788 | // on the desktop, but are iconized/restored with it | |
d2aef312 VZ |
789 | void wxFrame::IconizeChildFrames(bool bIconize) |
790 | { | |
a23fd0e1 VZ |
791 | for ( wxWindowList::Node *node = GetChildren().GetFirst(); |
792 | node; | |
793 | node = node->GetNext() ) | |
794 | { | |
795 | wxWindow *win = node->GetData(); | |
796 | ||
797 | if ( win->IsKindOf(CLASSINFO(wxFrame)) ) | |
798 | { | |
799 | ((wxFrame *)win)->Iconize(bIconize); | |
800 | } | |
d2aef312 | 801 | } |
d2aef312 VZ |
802 | } |
803 | ||
b5423899 RD |
804 | |
805 | // make the window modal (all other windows unresponsive) | |
806 | void wxFrame::MakeModal(bool modal) | |
807 | { | |
808 | if (modal) { | |
809 | wxEnableTopLevelWindows(FALSE); | |
810 | Enable(TRUE); // keep this window enabled | |
811 | } | |
812 | else { | |
813 | wxEnableTopLevelWindows(TRUE); | |
814 | } | |
815 | } | |
816 | ||
817 | ||
a23fd0e1 | 818 | // =========================================================================== |
42e69d6b | 819 | // message processing |
a23fd0e1 VZ |
820 | // =========================================================================== |
821 | ||
42e69d6b VZ |
822 | // --------------------------------------------------------------------------- |
823 | // preprocessing | |
824 | // --------------------------------------------------------------------------- | |
825 | ||
826 | bool wxFrame::MSWTranslateMessage(WXMSG* pMsg) | |
827 | { | |
828 | if ( wxWindow::MSWTranslateMessage(pMsg) ) | |
829 | return TRUE; | |
830 | ||
831 | // try the menu bar accels | |
832 | wxMenuBar *menuBar = GetMenuBar(); | |
833 | if ( !menuBar ) | |
834 | return FALSE; | |
835 | ||
836 | const wxAcceleratorTable& acceleratorTable = menuBar->GetAccelTable(); | |
837 | return acceleratorTable.Ok() && | |
838 | ::TranslateAccelerator(GetHwnd(), | |
839 | GetTableHaccel(acceleratorTable), | |
840 | (MSG *)pMsg); | |
841 | } | |
842 | ||
843 | // --------------------------------------------------------------------------- | |
844 | // our private (non virtual) message handlers | |
845 | // --------------------------------------------------------------------------- | |
846 | ||
847 | bool wxFrame::HandlePaint() | |
848 | { | |
849 | RECT rect; | |
850 | if ( GetUpdateRect(GetHwnd(), &rect, FALSE) ) | |
851 | { | |
852 | if ( m_iconized ) | |
853 | { | |
854 | HICON hIcon = m_icon.Ok() ? GetIconHicon(m_icon) | |
855 | : (HICON)m_defaultIcon; | |
856 | ||
857 | // Hold a pointer to the dc so long as the OnPaint() message | |
858 | // is being processed | |
859 | PAINTSTRUCT ps; | |
860 | HDC hdc = ::BeginPaint(GetHwnd(), &ps); | |
861 | ||
862 | // Erase background before painting or we get white background | |
863 | MSWDefWindowProc(WM_ICONERASEBKGND, (WORD)(LONG)ps.hdc, 0L); | |
864 | ||
865 | if ( hIcon ) | |
866 | { | |
867 | RECT rect; | |
868 | ::GetClientRect(GetHwnd(), &rect); | |
869 | ||
870 | // FIXME: why hardcoded? | |
871 | static const int icon_width = 32; | |
872 | static const int icon_height = 32; | |
873 | ||
874 | int icon_x = (int)((rect.right - icon_width)/2); | |
875 | int icon_y = (int)((rect.bottom - icon_height)/2); | |
876 | ||
877 | ::DrawIcon(hdc, icon_x, icon_y, hIcon); | |
878 | } | |
879 | ||
880 | ::EndPaint(GetHwnd(), &ps); | |
881 | ||
882 | return TRUE; | |
883 | } | |
884 | else | |
885 | { | |
886 | wxPaintEvent event(m_windowId); | |
887 | event.m_eventObject = this; | |
888 | ||
889 | return GetEventHandler()->ProcessEvent(event); | |
890 | } | |
891 | } | |
892 | else | |
893 | { | |
894 | // nothing to paint - processed | |
895 | return TRUE; | |
896 | } | |
897 | } | |
898 | ||
899 | bool wxFrame::HandleSize(int x, int y, WXUINT id) | |
900 | { | |
901 | bool processed = FALSE; | |
902 | ||
903 | switch ( id ) | |
904 | { | |
905 | case SIZENORMAL: | |
906 | // only do it it if we were iconized before, otherwise resizing the | |
907 | // parent frame has a curious side effect of bringing it under it's | |
908 | // children | |
909 | if ( !m_iconized ) | |
910 | break; | |
911 | ||
912 | // restore all child frames too | |
913 | IconizeChildFrames(FALSE); | |
914 | ||
915 | // fall through | |
916 | ||
917 | case SIZEFULLSCREEN: | |
918 | m_iconized = FALSE; | |
919 | break; | |
920 | ||
921 | case SIZEICONIC: | |
922 | // iconize all child frames too | |
923 | IconizeChildFrames(TRUE); | |
924 | ||
925 | m_iconized = TRUE; | |
926 | break; | |
927 | } | |
928 | ||
929 | if ( !m_iconized ) | |
930 | { | |
931 | // forward WM_SIZE to status bar control | |
932 | #if wxUSE_NATIVE_STATUSBAR | |
933 | if (m_frameStatusBar && m_frameStatusBar->IsKindOf(CLASSINFO(wxStatusBar95))) | |
934 | { | |
935 | wxSizeEvent event(wxSize(x, y), m_frameStatusBar->GetId()); | |
936 | event.SetEventObject( m_frameStatusBar ); | |
937 | ||
938 | ((wxStatusBar95 *)m_frameStatusBar)->OnSize(event); | |
939 | } | |
940 | #endif // wxUSE_NATIVE_STATUSBAR | |
941 | ||
942 | PositionStatusBar(); | |
943 | PositionToolBar(); | |
944 | ||
945 | wxSizeEvent event(wxSize(x, y), m_windowId); | |
946 | event.SetEventObject( this ); | |
947 | processed = GetEventHandler()->ProcessEvent(event); | |
948 | } | |
949 | ||
950 | return processed; | |
951 | } | |
952 | ||
953 | bool wxFrame::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control) | |
954 | { | |
955 | if ( control ) | |
956 | { | |
957 | // In case it's e.g. a toolbar. | |
958 | wxWindow *win = wxFindWinFromHandle(control); | |
959 | if ( win ) | |
960 | return win->MSWCommand(cmd, id); | |
961 | } | |
962 | ||
963 | // handle here commands from menus and accelerators | |
964 | if ( cmd == 0 || cmd == 1 ) | |
965 | { | |
966 | if ( wxCurrentPopupMenu ) | |
967 | { | |
968 | wxMenu *popupMenu = wxCurrentPopupMenu; | |
969 | wxCurrentPopupMenu = NULL; | |
970 | ||
971 | return popupMenu->MSWCommand(cmd, id); | |
972 | } | |
973 | ||
974 | if ( ProcessCommand(id) ) | |
975 | { | |
976 | return TRUE; | |
977 | } | |
978 | } | |
979 | ||
980 | return FALSE; | |
981 | } | |
982 | ||
a23fd0e1 VZ |
983 | bool wxFrame::HandleMenuSelect(WXWORD nItem, WXWORD nFlags, WXHMENU hMenu) |
984 | { | |
985 | int item; | |
986 | if ( nFlags == 0xFFFF && hMenu == 0 ) | |
987 | { | |
988 | // FIXME: what does this do? does it ever happen? | |
989 | item = -1; | |
990 | } | |
991 | else if ((nFlags != MF_SEPARATOR) && (nItem != 0) && (nItem != 65535)) | |
992 | { | |
993 | item = nItem; | |
994 | } | |
995 | else | |
996 | { | |
997 | return FALSE; | |
998 | } | |
999 | ||
1000 | wxMenuEvent event(wxEVT_MENU_HIGHLIGHT, item); | |
1001 | event.SetEventObject( this ); | |
1002 | ||
1003 | return GetEventHandler()->ProcessEvent(event); | |
1004 | } | |
1005 | ||
1006 | // --------------------------------------------------------------------------- | |
1007 | // the window proc for wxFrame | |
1008 | // --------------------------------------------------------------------------- | |
1009 | ||
1010 | long wxFrame::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam) | |
1011 | { | |
1012 | long rc = 0; | |
1013 | bool processed = FALSE; | |
1014 | ||
1015 | switch ( message ) | |
1016 | { | |
42e69d6b VZ |
1017 | case WM_CLOSE: |
1018 | // if we can't close, tell the system that we processed the | |
1019 | // message - otherwise it would close us | |
1020 | processed = !Close(); | |
1021 | break; | |
1022 | ||
1023 | case WM_COMMAND: | |
1024 | { | |
1025 | WORD id, cmd; | |
1026 | WXHWND hwnd; | |
1027 | UnpackCommand((WXWPARAM)wParam, (WXLPARAM)lParam, | |
1028 | &id, &hwnd, &cmd); | |
1029 | ||
1030 | processed = HandleCommand(id, cmd, (WXHWND)hwnd); | |
1031 | } | |
1032 | break; | |
1033 | ||
a23fd0e1 VZ |
1034 | case WM_MENUSELECT: |
1035 | { | |
42e69d6b VZ |
1036 | WXWORD item, flags; |
1037 | WXHMENU hmenu; | |
1038 | UnpackMenuSelect(wParam, lParam, &item, &flags, &hmenu); | |
1039 | ||
1040 | processed = HandleMenuSelect(item, flags, hmenu); | |
a23fd0e1 VZ |
1041 | } |
1042 | break; | |
42e69d6b VZ |
1043 | |
1044 | case WM_PAINT: | |
1045 | processed = HandlePaint(); | |
1046 | break; | |
1047 | ||
1048 | case WM_QUERYDRAGICON: | |
1049 | { | |
1050 | HICON hIcon = m_icon.Ok() ? GetIconHicon(m_icon) | |
1051 | : (HICON)(m_defaultIcon); | |
1052 | rc = (long)hIcon; | |
1053 | processed = rc != 0; | |
1054 | } | |
1055 | break; | |
1056 | ||
1057 | case WM_SIZE: | |
1058 | processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam); | |
1059 | break; | |
a23fd0e1 VZ |
1060 | } |
1061 | ||
1062 | if ( !processed ) | |
1063 | rc = wxWindow::MSWWindowProc(message, wParam, lParam); | |
1064 | ||
1065 | return rc; | |
1066 | } |