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