1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/mdi.cpp
3 // Purpose: MDI classes for wxMSW
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #if wxUSE_MDI && !defined(__WXUNIVERSAL__)
36 #include "wx/dialog.h"
37 #include "wx/statusbr.h"
38 #include "wx/settings.h"
41 #include "wx/toolbar.h"
44 #include "wx/stockitem.h"
45 #include "wx/msw/private.h"
47 #if wxUSE_STATUSBAR && wxUSE_NATIVE_STATUSBAR
48 #include "wx/msw/statbr95.h"
53 // ---------------------------------------------------------------------------
55 // ---------------------------------------------------------------------------
57 extern wxMenu
*wxCurrentPopupMenu
;
59 extern const wxChar
*wxMDIFrameClassName
; // from app.cpp
60 extern const wxChar
*wxMDIChildFrameClassName
;
61 extern const wxChar
*wxMDIChildFrameClassNameNoRedraw
;
62 extern void wxRemoveHandleAssociation(wxWindow
*win
);
64 // ---------------------------------------------------------------------------
66 // ---------------------------------------------------------------------------
68 static const int IDM_WINDOWTILEHOR
= 4001;
69 static const int IDM_WINDOWCASCADE
= 4002;
70 static const int IDM_WINDOWICONS
= 4003;
71 static const int IDM_WINDOWNEXT
= 4004;
72 static const int IDM_WINDOWTILEVERT
= 4005;
73 static const int IDM_WINDOWPREV
= 4006;
75 // This range gives a maximum of 500 MDI children. Should be enough :-)
76 static const int wxFIRST_MDI_CHILD
= 4100;
77 static const int wxLAST_MDI_CHILD
= 4600;
79 // ---------------------------------------------------------------------------
81 // ---------------------------------------------------------------------------
83 // set the MDI menus (by sending the WM_MDISETMENU message) and update the menu
84 // of the parent of win (which is supposed to be the MDI client window)
85 static void MDISetMenu(wxWindow
*win
, HMENU hmenuFrame
, HMENU hmenuWindow
);
87 // insert the window menu (subMenu) into menu just before "Help" submenu or at
88 // the very end if not found
89 static void InsertWindowMenu(wxWindow
*win
, WXHMENU menu
, HMENU subMenu
);
91 // Remove the window menu
92 static void RemoveWindowMenu(wxWindow
*win
, WXHMENU menu
);
94 // is this an id of an MDI child?
95 inline bool IsMdiCommandId(int id
)
97 return (id
>= wxFIRST_MDI_CHILD
) && (id
<= wxLAST_MDI_CHILD
);
100 // unpack the parameters of WM_MDIACTIVATE message
101 static void UnpackMDIActivate(WXWPARAM wParam
, WXLPARAM lParam
,
102 WXWORD
*activate
, WXHWND
*hwndAct
, WXHWND
*hwndDeact
);
104 // return the HMENU of the MDI menu
105 static inline HMENU
GetMDIWindowMenu(wxMDIParentFrame
*frame
)
107 wxMenu
*menu
= frame
->GetWindowMenu();
108 return menu
? GetHmenuOf(menu
) : 0;
111 // ===========================================================================
113 // ===========================================================================
115 // ---------------------------------------------------------------------------
117 // ---------------------------------------------------------------------------
119 IMPLEMENT_DYNAMIC_CLASS(wxMDIParentFrame
, wxFrame
)
120 IMPLEMENT_DYNAMIC_CLASS(wxMDIChildFrame
, wxFrame
)
121 IMPLEMENT_DYNAMIC_CLASS(wxMDIClientWindow
, wxWindow
)
123 BEGIN_EVENT_TABLE(wxMDIParentFrame
, wxFrame
)
124 EVT_SIZE(wxMDIParentFrame::OnSize
)
125 EVT_ICONIZE(wxMDIParentFrame::OnIconized
)
126 EVT_SYS_COLOUR_CHANGED(wxMDIParentFrame::OnSysColourChanged
)
129 BEGIN_EVENT_TABLE(wxMDIChildFrame
, wxFrame
)
130 EVT_IDLE(wxMDIChildFrame::OnIdle
)
133 BEGIN_EVENT_TABLE(wxMDIClientWindow
, wxWindow
)
134 EVT_SCROLL(wxMDIClientWindow::OnScroll
)
137 // ===========================================================================
138 // wxMDIParentFrame: the frame which contains the client window which manages
140 // ===========================================================================
142 wxMDIParentFrame::wxMDIParentFrame()
144 m_clientWindow
= NULL
;
145 m_currentChild
= NULL
;
146 m_windowMenu
= (wxMenu
*) NULL
;
147 m_parentFrameActive
= true;
150 bool wxMDIParentFrame::Create(wxWindow
*parent
,
152 const wxString
& title
,
156 const wxString
& name
)
158 m_clientWindow
= NULL
;
159 m_currentChild
= NULL
;
161 // this style can be used to prevent a window from having the standard MDI
163 if ( style
& wxFRAME_NO_WINDOW_MENU
)
165 m_windowMenu
= (wxMenu
*)NULL
;
167 else // normal case: we have the window menu, so construct it
169 m_windowMenu
= new wxMenu
;
171 m_windowMenu
->Append(IDM_WINDOWCASCADE
, _("&Cascade"));
172 m_windowMenu
->Append(IDM_WINDOWTILEHOR
, _("Tile &Horizontally"));
173 m_windowMenu
->Append(IDM_WINDOWTILEVERT
, _("Tile &Vertically"));
174 m_windowMenu
->AppendSeparator();
175 m_windowMenu
->Append(IDM_WINDOWICONS
, _("&Arrange Icons"));
176 m_windowMenu
->Append(IDM_WINDOWNEXT
, _("&Next"));
177 m_windowMenu
->Append(IDM_WINDOWPREV
, _("&Previous"));
180 m_parentFrameActive
= true;
183 wxTopLevelWindows
.Append(this);
186 m_windowStyle
= style
;
189 parent
->AddChild(this);
191 if ( id
!= wxID_ANY
)
194 m_windowId
= NewControlId();
197 WXDWORD msflags
= MSWGetCreateWindowFlags(&exflags
);
198 msflags
&= ~WS_VSCROLL
;
199 msflags
&= ~WS_HSCROLL
;
201 if ( !wxWindow::MSWCreate(wxMDIFrameClassName
,
210 SetOwnBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
));
212 // unlike (almost?) all other windows, frames are created hidden
218 wxMDIParentFrame::~wxMDIParentFrame()
220 // see comment in ~wxMDIChildFrame
222 m_frameToolBar
= NULL
;
225 m_frameStatusBar
= NULL
;
226 #endif // wxUSE_STATUSBAR
233 m_windowMenu
= (wxMenu
*) NULL
;
236 // the MDI frame menubar is not automatically deleted by Windows unlike for
240 ::DestroyMenu((HMENU
)m_hMenu
);
241 m_hMenu
= (WXHMENU
)NULL
;
244 if ( m_clientWindow
)
246 if ( m_clientWindow
->MSWGetOldWndProc() )
247 m_clientWindow
->UnsubclassWin();
249 m_clientWindow
->SetHWND(0);
250 delete m_clientWindow
;
254 #if wxUSE_MENUS_NATIVE
256 void wxMDIParentFrame::InternalSetMenuBar()
258 m_parentFrameActive
= true;
260 InsertWindowMenu(GetClientWindow(), m_hMenu
, GetMDIWindowMenu(this));
263 #endif // wxUSE_MENUS_NATIVE
265 void wxMDIParentFrame::SetWindowMenu(wxMenu
* menu
)
271 // Remove old window menu
272 RemoveWindowMenu(GetClientWindow(), m_hMenu
);
276 m_windowMenu
= (wxMenu
*) NULL
;
284 InsertWindowMenu(GetClientWindow(), m_hMenu
,
285 GetHmenuOf(m_windowMenu
));
290 void wxMDIParentFrame::DoMenuUpdates(wxMenu
* menu
)
292 wxMDIChildFrame
*child
= GetActiveChild();
295 wxEvtHandler
* source
= child
->GetEventHandler();
296 wxMenuBar
* bar
= child
->GetMenuBar();
300 menu
->UpdateUI(source
);
306 int nCount
= bar
->GetMenuCount();
307 for (int n
= 0; n
< nCount
; n
++)
308 bar
->GetMenu(n
)->UpdateUI(source
);
314 wxFrameBase::DoMenuUpdates(menu
);
318 void wxMDIParentFrame::UpdateClientSize()
320 if ( GetClientWindow() )
323 GetClientSize(&width
, &height
);
325 GetClientWindow()->SetSize(0, 0, width
, height
);
329 void wxMDIParentFrame::OnSize(wxSizeEvent
& WXUNUSED(event
))
333 // do not call event.Skip() here, it somehow messes up MDI client window
336 void wxMDIParentFrame::OnIconized(wxIconizeEvent
& event
)
340 if ( !event
.Iconized() )
346 // Returns the active MDI child window
347 wxMDIChildFrame
*wxMDIParentFrame::GetActiveChild() const
349 HWND hWnd
= (HWND
)::SendMessage(GetWinHwnd(GetClientWindow()),
350 WM_MDIGETACTIVE
, 0, 0L);
354 return (wxMDIChildFrame
*)wxFindWinFromHandle((WXHWND
) hWnd
);
357 // Create the client window class (don't Create the window, just return a new
359 wxMDIClientWindow
*wxMDIParentFrame::OnCreateClient()
361 return new wxMDIClientWindow
;
364 // Responds to colour changes, and passes event on to children.
365 void wxMDIParentFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
367 if ( m_clientWindow
)
369 m_clientWindow
->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
));
370 m_clientWindow
->Refresh();
376 WXHICON
wxMDIParentFrame::GetDefaultIcon() const
378 // we don't have any standard icons (any more)
382 // ---------------------------------------------------------------------------
384 // ---------------------------------------------------------------------------
386 void wxMDIParentFrame::Cascade()
388 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDICASCADE
, 0, 0);
391 void wxMDIParentFrame::Tile(wxOrientation orient
)
393 wxASSERT_MSG( orient
== wxHORIZONTAL
|| orient
== wxVERTICAL
,
394 _T("invalid orientation value") );
396 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDITILE
,
397 orient
== wxHORIZONTAL
? MDITILE_HORIZONTAL
398 : MDITILE_VERTICAL
, 0);
401 void wxMDIParentFrame::ArrangeIcons()
403 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDIICONARRANGE
, 0, 0);
406 void wxMDIParentFrame::ActivateNext()
408 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT
, 0, 0);
411 void wxMDIParentFrame::ActivatePrevious()
413 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT
, 0, 1);
416 // ---------------------------------------------------------------------------
417 // the MDI parent frame window proc
418 // ---------------------------------------------------------------------------
420 WXLRESULT
wxMDIParentFrame::MSWWindowProc(WXUINT message
,
425 bool processed
= false;
431 WXWORD state
, minimized
;
433 UnpackActivate(wParam
, lParam
, &state
, &minimized
, &hwnd
);
435 processed
= HandleActivate(state
, minimized
!= 0, hwnd
);
443 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
445 (void)HandleCommand(id
, cmd
, hwnd
);
447 // even if the frame didn't process it, there is no need to try it
448 // once again (i.e. call wxFrame::HandleCommand()) - we just did it,
449 // so pretend we processed the message anyhow
453 // always pass this message DefFrameProc(), otherwise MDI menu
454 // commands (and sys commands - more surprisingly!) won't work
455 MSWDefWindowProc(message
, wParam
, lParam
);
459 m_clientWindow
= OnCreateClient();
460 // Uses own style for client style
461 if ( !m_clientWindow
->CreateClient(this, GetWindowStyleFlag()) )
463 wxLogMessage(_("Failed to create MDI parent frame."));
474 // we erase background ourselves
482 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
);
484 if ( m_parentFrameActive
)
486 processed
= HandleMenuSelect(item
, flags
, hmenu
);
488 else if (m_currentChild
)
490 processed
= m_currentChild
->
491 HandleMenuSelect(item
, flags
, hmenu
);
497 // though we don't (usually) resize the MDI client to exactly fit the
498 // client area we need to pass this one to DefFrameProc to allow the children to show
503 rc
= wxFrame::MSWWindowProc(message
, wParam
, lParam
);
508 bool wxMDIParentFrame::HandleActivate(int state
, bool minimized
, WXHWND activate
)
510 bool processed
= false;
512 if ( wxWindow::HandleActivate(state
, minimized
, activate
) )
518 // If this window is an MDI parent, we must also send an OnActivate message
519 // to the current child.
520 if ( (m_currentChild
!= NULL
) &&
521 ((state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
)) )
523 wxActivateEvent
event(wxEVT_ACTIVATE
, true, m_currentChild
->GetId());
524 event
.SetEventObject( m_currentChild
);
525 if ( m_currentChild
->GetEventHandler()->ProcessEvent(event
) )
532 bool wxMDIParentFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND hwnd
)
534 // In case it's e.g. a toolbar.
537 wxWindow
*win
= wxFindWinFromHandle(hwnd
);
539 return win
->MSWCommand(cmd
, id
);
542 if (wxCurrentPopupMenu
)
544 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
545 wxCurrentPopupMenu
= NULL
;
546 if (popupMenu
->MSWCommand(cmd
, id
))
550 // is it one of standard MDI commands?
556 case IDM_WINDOWCASCADE
:
558 wParam
= MDITILE_SKIPDISABLED
;
561 case IDM_WINDOWTILEHOR
:
562 wParam
|= MDITILE_HORIZONTAL
;
565 case IDM_WINDOWTILEVERT
:
567 wParam
= MDITILE_VERTICAL
;
569 wParam
|= MDITILE_SKIPDISABLED
;
572 case IDM_WINDOWICONS
:
573 msg
= WM_MDIICONARRANGE
;
578 lParam
= 0; // next child
583 lParam
= 1; // previous child
592 ::SendMessage(GetWinHwnd(GetClientWindow()), msg
, wParam
, lParam
);
597 // FIXME VZ: what does this test do??
600 return false; // Get WndProc to call default proc
603 if ( IsMdiCommandId(id
) )
605 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
608 wxWindow
*child
= node
->GetData();
609 if ( child
->GetHWND() )
611 long childId
= wxGetWindowId(child
->GetHWND());
612 if (childId
== (long)id
)
614 ::SendMessage( GetWinHwnd(GetClientWindow()),
616 (WPARAM
)child
->GetHWND(), 0);
620 node
= node
->GetNext();
623 else if ( m_parentFrameActive
)
625 return ProcessCommand(id
);
627 else if ( m_currentChild
)
629 return m_currentChild
->HandleCommand(id
, cmd
, hwnd
);
633 // this shouldn't happen because it means that our messages are being
634 // lost (they're not sent to the parent frame nor to the children)
635 wxFAIL_MSG(wxT("MDI parent frame is not active, yet there is no active MDI child?"));
641 WXLRESULT
wxMDIParentFrame::MSWDefWindowProc(WXUINT message
,
646 if ( GetClientWindow() )
647 clientWnd
= GetClientWindow()->GetHWND();
651 return DefFrameProc(GetHwnd(), (HWND
)clientWnd
, message
, wParam
, lParam
);
654 bool wxMDIParentFrame::MSWTranslateMessage(WXMSG
* msg
)
656 MSG
*pMsg
= (MSG
*)msg
;
658 // first let the current child get it
659 if ( m_currentChild
&& m_currentChild
->GetHWND() &&
660 m_currentChild
->MSWTranslateMessage(msg
) )
665 // then try out accel table (will also check the menu accels)
666 if ( wxFrame::MSWTranslateMessage(msg
) )
671 // finally, check for MDI specific built in accel keys
672 if ( pMsg
->message
== WM_KEYDOWN
|| pMsg
->message
== WM_SYSKEYDOWN
)
674 if ( ::TranslateMDISysAccel(GetWinHwnd(GetClientWindow()), pMsg
))
681 // ===========================================================================
683 // ===========================================================================
685 void wxMDIChildFrame::Init()
687 m_needsResize
= true;
688 m_needsInitialShow
= true;
691 bool wxMDIChildFrame::Create(wxMDIParentFrame
*parent
,
693 const wxString
& title
,
697 const wxString
& name
)
701 if ( id
!= wxID_ANY
)
704 m_windowId
= (int)NewControlId();
708 parent
->AddChild(this);
718 mcs
.szClass
= style
& wxFULL_REPAINT_ON_RESIZE
719 ? wxMDIChildFrameClassName
720 : wxMDIChildFrameClassNameNoRedraw
;
722 mcs
.hOwner
= wxGetInstance();
723 if (x
!= wxDefaultCoord
)
726 mcs
.x
= CW_USEDEFAULT
;
728 if (y
!= wxDefaultCoord
)
731 mcs
.y
= CW_USEDEFAULT
;
733 if (width
!= wxDefaultCoord
)
736 mcs
.cx
= CW_USEDEFAULT
;
738 if (height
!= wxDefaultCoord
)
741 mcs
.cy
= CW_USEDEFAULT
;
743 DWORD msflags
= WS_OVERLAPPED
| WS_CLIPCHILDREN
;
744 if (style
& wxMINIMIZE_BOX
)
745 msflags
|= WS_MINIMIZEBOX
;
746 if (style
& wxMAXIMIZE_BOX
)
747 msflags
|= WS_MAXIMIZEBOX
;
748 if (style
& wxRESIZE_BORDER
)
749 msflags
|= WS_THICKFRAME
;
750 if (style
& wxSYSTEM_MENU
)
751 msflags
|= WS_SYSMENU
;
752 if ((style
& wxMINIMIZE
) || (style
& wxICONIZE
))
753 msflags
|= WS_MINIMIZE
;
754 if (style
& wxMAXIMIZE
)
755 msflags
|= WS_MAXIMIZE
;
756 if (style
& wxCAPTION
)
757 msflags
|= WS_CAPTION
;
763 wxWindowCreationHook
hook(this);
765 m_hWnd
= (WXHWND
)::SendMessage(GetWinHwnd(parent
->GetClientWindow()),
766 WM_MDICREATE
, 0, (LONG
)(LPSTR
)&mcs
);
770 wxLogLastError(_T("WM_MDICREATE"));
779 wxMDIChildFrame::~wxMDIChildFrame()
781 // will be destroyed by DestroyChildren() but reset them before calling it
782 // to avoid using dangling pointers if a callback comes in the meanwhile
784 m_frameToolBar
= NULL
;
787 m_frameStatusBar
= NULL
;
788 #endif // wxUSE_STATUSBAR
792 RemoveWindowMenu(NULL
, m_hMenu
);
797 bool wxMDIChildFrame::Show(bool show
)
799 m_needsInitialShow
= false;
801 if (!wxFrame::Show(show
))
804 // KH: Without this call, new MDI children do not become active.
805 // This was added here after the same BringWindowToTop call was
806 // removed from wxTopLevelWindow::Show (November 2005)
808 ::BringWindowToTop(GetHwnd());
810 // we need to refresh the MDI frame window menu to include (or exclude if
811 // we've been hidden) this frame
812 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
813 MDISetMenu(parent
->GetClientWindow(), NULL
, NULL
);
818 // Set the client size (i.e. leave the calculation of borders etc.
820 void wxMDIChildFrame::DoSetClientSize(int width
, int height
)
822 HWND hWnd
= GetHwnd();
825 ::GetClientRect(hWnd
, &rect
);
828 GetWindowRect(hWnd
, &rect2
);
830 // Find the difference between the entire window (title bar and all)
831 // and the client area; add this to the new client size to move the
833 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
834 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
837 if (GetStatusBar() && GetStatusBar()->IsShown())
840 GetStatusBar()->GetSize(&sx
, &sy
);
843 #endif // wxUSE_STATUSBAR
846 point
.x
= rect2
.left
;
849 // If there's an MDI parent, must subtract the parent's top left corner
850 // since MoveWindow moves relative to the parent
851 wxMDIParentFrame
*mdiParent
= (wxMDIParentFrame
*)GetParent();
852 ::ScreenToClient((HWND
) mdiParent
->GetClientWindow()->GetHWND(), &point
);
854 MoveWindow(hWnd
, point
.x
, point
.y
, actual_width
, actual_height
, (BOOL
)true);
856 wxSize
size(width
, height
);
857 wxSizeEvent
event(size
, m_windowId
);
858 event
.SetEventObject( this );
859 GetEventHandler()->ProcessEvent(event
);
862 void wxMDIChildFrame::DoGetPosition(int *x
, int *y
) const
865 GetWindowRect(GetHwnd(), &rect
);
870 // Since we now have the absolute screen coords,
871 // if there's a parent we must subtract its top left corner
872 wxMDIParentFrame
*mdiParent
= (wxMDIParentFrame
*)GetParent();
873 ::ScreenToClient((HWND
) mdiParent
->GetClientWindow()->GetHWND(), &point
);
881 void wxMDIChildFrame::InternalSetMenuBar()
883 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
885 InsertWindowMenu(parent
->GetClientWindow(),
886 m_hMenu
, GetMDIWindowMenu(parent
));
888 parent
->m_parentFrameActive
= false;
891 void wxMDIChildFrame::DetachMenuBar()
893 RemoveWindowMenu(NULL
, m_hMenu
);
894 wxFrame::DetachMenuBar();
897 WXHICON
wxMDIChildFrame::GetDefaultIcon() const
899 // we don't have any standard icons (any more)
903 // ---------------------------------------------------------------------------
905 // ---------------------------------------------------------------------------
907 void wxMDIChildFrame::Maximize(bool maximize
)
909 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
910 if ( parent
&& parent
->GetClientWindow() )
912 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()),
913 maximize
? WM_MDIMAXIMIZE
: WM_MDIRESTORE
,
914 (WPARAM
)GetHwnd(), 0);
918 void wxMDIChildFrame::Restore()
920 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
921 if ( parent
&& parent
->GetClientWindow() )
923 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIRESTORE
,
924 (WPARAM
) GetHwnd(), 0);
928 void wxMDIChildFrame::Activate()
930 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
931 if ( parent
&& parent
->GetClientWindow() )
933 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIACTIVATE
,
934 (WPARAM
) GetHwnd(), 0);
938 // ---------------------------------------------------------------------------
939 // MDI window proc and message handlers
940 // ---------------------------------------------------------------------------
942 WXLRESULT
wxMDIChildFrame::MSWWindowProc(WXUINT message
,
947 bool processed
= false;
955 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
,
958 processed
= HandleCommand(id
, cmd
, (WXHWND
)hwnd
);
962 case WM_GETMINMAXINFO
:
963 processed
= HandleGetMinMaxInfo((MINMAXINFO
*)lParam
);
969 WXHWND hwndAct
, hwndDeact
;
970 UnpackMDIActivate(wParam
, lParam
, &act
, &hwndAct
, &hwndDeact
);
972 processed
= HandleMDIActivate(act
, hwndAct
, hwndDeact
);
977 // must pass WM_MOVE to DefMDIChildProc() to recalculate MDI client
978 // scrollbars if necessary
983 // must pass WM_SIZE to DefMDIChildProc(), otherwise many weird
985 MSWDefWindowProc(message
, wParam
, lParam
);
989 // DefMDIChildProc handles SC_{NEXT/PREV}WINDOW here, so pass it
990 // the message (the base class version does not)
991 return MSWDefWindowProc(message
, wParam
, lParam
);
993 case WM_WINDOWPOSCHANGING
:
994 processed
= HandleWindowPosChanging((LPWINDOWPOS
)lParam
);
999 rc
= wxFrame::MSWWindowProc(message
, wParam
, lParam
);
1004 bool wxMDIChildFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND hwnd
)
1006 // In case it's e.g. a toolbar.
1009 wxWindow
*win
= wxFindWinFromHandle(hwnd
);
1011 return win
->MSWCommand(cmd
, id
);
1014 if (wxCurrentPopupMenu
)
1016 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
1017 wxCurrentPopupMenu
= NULL
;
1018 if (popupMenu
->MSWCommand(cmd
, id
))
1023 if (GetMenuBar() && GetMenuBar()->FindItem(id
))
1025 processed
= ProcessCommand(id
);
1035 bool wxMDIChildFrame::HandleMDIActivate(long WXUNUSED(activate
),
1039 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
1041 HMENU menuToSet
= 0;
1045 if ( m_hWnd
== hwndAct
)
1048 parent
->m_currentChild
= this;
1050 HMENU child_menu
= (HMENU
)GetWinMenu();
1053 parent
->m_parentFrameActive
= false;
1055 menuToSet
= child_menu
;
1058 else if ( m_hWnd
== hwndDeact
)
1060 wxASSERT_MSG( parent
->m_currentChild
== this,
1061 wxT("can't deactivate MDI child which wasn't active!") );
1064 parent
->m_currentChild
= NULL
;
1066 HMENU parent_menu
= (HMENU
)parent
->GetWinMenu();
1068 // activate the the parent menu only when there is no other child
1069 // that has been activated
1070 if ( parent_menu
&& !hwndAct
)
1072 parent
->m_parentFrameActive
= true;
1074 menuToSet
= parent_menu
;
1079 // we have nothing to do with it
1085 MDISetMenu(parent
->GetClientWindow(),
1086 menuToSet
, GetMDIWindowMenu(parent
));
1089 wxActivateEvent
event(wxEVT_ACTIVATE
, activated
, m_windowId
);
1090 event
.SetEventObject( this );
1092 ResetWindowStyle((void *)NULL
);
1094 return GetEventHandler()->ProcessEvent(event
);
1097 bool wxMDIChildFrame::HandleWindowPosChanging(void *pos
)
1099 WINDOWPOS
*lpPos
= (WINDOWPOS
*)pos
;
1101 if (!(lpPos
->flags
& SWP_NOSIZE
))
1104 DWORD dwExStyle
= ::GetWindowLong(GetHwnd(), GWL_EXSTYLE
);
1105 DWORD dwStyle
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1106 if (ResetWindowStyle((void *) & rectClient
) && (dwStyle
& WS_MAXIMIZE
))
1108 ::AdjustWindowRectEx(&rectClient
, dwStyle
, false, dwExStyle
);
1109 lpPos
->x
= rectClient
.left
;
1110 lpPos
->y
= rectClient
.top
;
1111 lpPos
->cx
= rectClient
.right
- rectClient
.left
;
1112 lpPos
->cy
= rectClient
.bottom
- rectClient
.top
;
1119 bool wxMDIChildFrame::HandleGetMinMaxInfo(void *mmInfo
)
1121 MINMAXINFO
*info
= (MINMAXINFO
*)mmInfo
;
1123 // let the default window proc calculate the size of MDI children
1124 // frames because it is based on the size of the MDI client window,
1125 // not on the values specified in wxWindow m_max variables
1126 bool processed
= MSWDefWindowProc(WM_GETMINMAXINFO
, 0, (LPARAM
)mmInfo
) != 0;
1128 int minWidth
= GetMinWidth(),
1129 minHeight
= GetMinHeight();
1131 // but allow GetSizeHints() to set the min size
1132 if ( minWidth
!= wxDefaultCoord
)
1134 info
->ptMinTrackSize
.x
= minWidth
;
1139 if ( minHeight
!= wxDefaultCoord
)
1141 info
->ptMinTrackSize
.y
= minHeight
;
1149 // ---------------------------------------------------------------------------
1150 // MDI specific message translation/preprocessing
1151 // ---------------------------------------------------------------------------
1153 WXLRESULT
wxMDIChildFrame::MSWDefWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1155 return DefMDIChildProc(GetHwnd(),
1156 (UINT
)message
, (WPARAM
)wParam
, (LPARAM
)lParam
);
1159 bool wxMDIChildFrame::MSWTranslateMessage(WXMSG
* msg
)
1161 // we must pass the parent frame to ::TranslateAccelerator(), otherwise it
1162 // doesn't do its job correctly for MDI child menus
1163 return MSWDoTranslateMessage((wxMDIChildFrame
*)GetParent(), msg
);
1166 // ---------------------------------------------------------------------------
1168 // ---------------------------------------------------------------------------
1170 void wxMDIChildFrame::MSWDestroyWindow()
1172 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
1174 // Must make sure this handle is invalidated (set to NULL) since all sorts
1175 // of things could happen after the child client is destroyed, but before
1176 // the wxFrame is destroyed.
1178 HWND oldHandle
= (HWND
)GetHWND();
1179 SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIDESTROY
,
1180 (WPARAM
)oldHandle
, 0);
1182 if (parent
->GetActiveChild() == (wxMDIChildFrame
*) NULL
)
1183 ResetWindowStyle((void*) NULL
);
1187 ::DestroyMenu((HMENU
) m_hMenu
);
1190 wxRemoveHandleAssociation(this);
1194 // Change the client window's extended style so we don't get a client edge
1195 // style when a child is maximised (a double border looks silly.)
1196 bool wxMDIChildFrame::ResetWindowStyle(void *vrect
)
1198 RECT
*rect
= (RECT
*)vrect
;
1199 wxMDIParentFrame
* pFrameWnd
= (wxMDIParentFrame
*)GetParent();
1200 wxMDIChildFrame
* pChild
= pFrameWnd
->GetActiveChild();
1202 if (!pChild
|| (pChild
== this))
1204 HWND hwndClient
= GetWinHwnd(pFrameWnd
->GetClientWindow());
1205 DWORD dwStyle
= ::GetWindowLong(hwndClient
, GWL_EXSTYLE
);
1207 // we want to test whether there is a maximized child, so just set
1208 // dwThisStyle to 0 if there is no child at all
1209 DWORD dwThisStyle
= pChild
1210 ? ::GetWindowLong(GetWinHwnd(pChild
), GWL_STYLE
) : 0;
1211 DWORD dwNewStyle
= dwStyle
;
1212 if ( dwThisStyle
& WS_MAXIMIZE
)
1213 dwNewStyle
&= ~(WS_EX_CLIENTEDGE
);
1215 dwNewStyle
|= WS_EX_CLIENTEDGE
;
1217 if (dwStyle
!= dwNewStyle
)
1219 // force update of everything
1220 ::RedrawWindow(hwndClient
, NULL
, NULL
,
1221 RDW_INVALIDATE
| RDW_ALLCHILDREN
);
1222 ::SetWindowLong(hwndClient
, GWL_EXSTYLE
, dwNewStyle
);
1223 ::SetWindowPos(hwndClient
, NULL
, 0, 0, 0, 0,
1224 SWP_FRAMECHANGED
| SWP_NOACTIVATE
|
1225 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOZORDER
|
1228 ::GetClientRect(hwndClient
, rect
);
1237 // ===========================================================================
1238 // wxMDIClientWindow: the window of predefined (by Windows) class which
1239 // contains the child frames
1240 // ===========================================================================
1242 bool wxMDIClientWindow::CreateClient(wxMDIParentFrame
*parent
, long style
)
1244 m_backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
);
1246 CLIENTCREATESTRUCT ccs
;
1247 m_windowStyle
= style
;
1250 ccs
.hWindowMenu
= GetMDIWindowMenu(parent
);
1251 ccs
.idFirstChild
= wxFIRST_MDI_CHILD
;
1253 DWORD msStyle
= MDIS_ALLCHILDSTYLES
| WS_VISIBLE
| WS_CHILD
|
1254 WS_CLIPCHILDREN
| WS_CLIPSIBLINGS
;
1256 if ( style
& wxHSCROLL
)
1257 msStyle
|= WS_HSCROLL
;
1258 if ( style
& wxVSCROLL
)
1259 msStyle
|= WS_VSCROLL
;
1261 DWORD exStyle
= WS_EX_CLIENTEDGE
;
1263 wxWindowCreationHook
hook(this);
1264 m_hWnd
= (WXHWND
)::CreateWindowEx
1274 (LPSTR
)(LPCLIENTCREATESTRUCT
)&ccs
);
1277 wxLogLastError(wxT("CreateWindowEx(MDI client)"));
1282 SubclassWin(m_hWnd
);
1287 // Explicitly call default scroll behaviour
1288 void wxMDIClientWindow::OnScroll(wxScrollEvent
& event
)
1290 // Note: for client windows, the scroll position is not set in
1291 // WM_HSCROLL, WM_VSCROLL, so we can't easily determine what
1292 // scroll position we're at.
1293 // This makes it hard to paint patterns or bitmaps in the background,
1294 // and have the client area scrollable as well.
1296 if ( event
.GetOrientation() == wxHORIZONTAL
)
1297 m_scrollX
= event
.GetPosition(); // Always returns zero!
1299 m_scrollY
= event
.GetPosition(); // Always returns zero!
1304 void wxMDIClientWindow::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1306 // Try to fix a problem whereby if you show an MDI child frame, then reposition the
1307 // client area, you can end up with a non-refreshed portion in the client window
1308 // (see OGL studio sample). So check if the position is changed and if so,
1309 // redraw the MDI child frames.
1311 const wxPoint oldPos
= GetPosition();
1313 wxWindow::DoSetSize(x
, y
, width
, height
, sizeFlags
| wxSIZE_FORCE
);
1315 const wxPoint newPos
= GetPosition();
1317 if ((newPos
.x
!= oldPos
.x
) || (newPos
.y
!= oldPos
.y
))
1321 wxWindowList::compatibility_iterator node
= GetParent()->GetChildren().GetFirst();
1324 wxWindow
*child
= node
->GetData();
1325 if (child
->IsKindOf(CLASSINFO(wxMDIChildFrame
)))
1327 ::RedrawWindow(GetHwndOf(child
),
1334 node
= node
->GetNext();
1340 void wxMDIChildFrame::OnIdle(wxIdleEvent
& event
)
1342 // wxMSW prior to 2.5.3 created MDI child frames as visible, which resulted
1343 // in flicker e.g. when the frame contained controls with non-trivial
1344 // layout. Since 2.5.3, the frame is created hidden as all other top level
1345 // windows. In order to maintain backward compatibility, the frame is shown
1346 // in OnIdle, unless Show(false) was called by the programmer before.
1347 if ( m_needsInitialShow
)
1352 // MDI child frames get their WM_SIZE when they're constructed but at this
1353 // moment they don't have any children yet so all child windows will be
1354 // positioned incorrectly when they are added later - to fix this, we
1355 // generate an artificial size event here
1356 if ( m_needsResize
)
1358 m_needsResize
= false; // avoid any possibility of recursion
1366 // ---------------------------------------------------------------------------
1367 // non member functions
1368 // ---------------------------------------------------------------------------
1370 static void MDISetMenu(wxWindow
*win
, HMENU hmenuFrame
, HMENU hmenuWindow
)
1372 if ( hmenuFrame
|| hmenuWindow
)
1374 if ( !::SendMessage(GetWinHwnd(win
),
1377 (LPARAM
)hmenuWindow
) )
1379 wxLogLastError(_T("SendMessage(WM_MDISETMENU)"));
1383 // update menu bar of the parent window
1384 wxWindow
*parent
= win
->GetParent();
1385 wxCHECK_RET( parent
, wxT("MDI client without parent frame? weird...") );
1387 ::SendMessage(GetWinHwnd(win
), WM_MDIREFRESHMENU
, 0, 0L);
1389 ::DrawMenuBar(GetWinHwnd(parent
));
1392 static void InsertWindowMenu(wxWindow
*win
, WXHMENU menu
, HMENU subMenu
)
1394 // Try to insert Window menu in front of Help, otherwise append it.
1395 HMENU hmenu
= (HMENU
)menu
;
1399 int N
= GetMenuItemCount(hmenu
);
1400 bool success
= false;
1401 for ( int i
= 0; i
< N
; i
++ )
1404 int chars
= GetMenuString(hmenu
, i
, buf
, WXSIZEOF(buf
), MF_BYPOSITION
);
1407 wxLogLastError(wxT("GetMenuString"));
1412 wxString
strBuf(buf
);
1413 if ( wxStripMenuCodes(strBuf
) == wxGetStockLabel(wxID_HELP
,false) )
1416 ::InsertMenu(hmenu
, i
, MF_BYPOSITION
| MF_POPUP
| MF_STRING
,
1417 (UINT
)subMenu
, _("&Window"));
1424 ::AppendMenu(hmenu
, MF_POPUP
, (UINT
)subMenu
, _("&Window"));
1428 MDISetMenu(win
, hmenu
, subMenu
);
1431 static void RemoveWindowMenu(wxWindow
*win
, WXHMENU menu
)
1433 HMENU hMenu
= (HMENU
)menu
;
1439 int N
= ::GetMenuItemCount(hMenu
);
1440 for ( int i
= 0; i
< N
; i
++ )
1442 if ( !::GetMenuString(hMenu
, i
, buf
, WXSIZEOF(buf
), MF_BYPOSITION
) )
1444 // Ignore successful read of menu string with length 0 which
1445 // occurs, for example, for a maximized MDI childs system menu
1446 if ( ::GetLastError() != 0 )
1448 wxLogLastError(wxT("GetMenuString"));
1454 if ( wxStrcmp(buf
, _("&Window")) == 0 )
1456 if ( !::RemoveMenu(hMenu
, i
, MF_BYPOSITION
) )
1458 wxLogLastError(wxT("RemoveMenu"));
1468 // we don't change the windows menu, but we update the main one
1469 MDISetMenu(win
, hMenu
, NULL
);
1473 static void UnpackMDIActivate(WXWPARAM wParam
, WXLPARAM lParam
,
1474 WXWORD
*activate
, WXHWND
*hwndAct
, WXHWND
*hwndDeact
)
1477 *hwndAct
= (WXHWND
)lParam
;
1478 *hwndDeact
= (WXHWND
)wParam
;
1481 #endif // wxUSE_MDI && !defined(__WXUNIVERSAL__)