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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "mdi.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
31 #if wxUSE_MDI && !defined(__WXUNIVERSAL__)
39 #include "wx/dialog.h"
41 #include "wx/statusbr.h"
43 #include "wx/settings.h"
49 #include "wx/msw/private.h"
51 #if wxUSE_STATUSBAR && wxUSE_NATIVE_STATUSBAR
52 #include "wx/msw/statbr95.h"
56 #include "wx/toolbar.h"
57 #endif // wxUSE_TOOLBAR
61 // ---------------------------------------------------------------------------
63 // ---------------------------------------------------------------------------
65 extern wxMenu
*wxCurrentPopupMenu
;
67 extern const wxChar
*wxMDIFrameClassName
; // from app.cpp
68 extern const wxChar
*wxMDIChildFrameClassName
;
69 extern const wxChar
*wxMDIChildFrameClassNameNoRedraw
;
70 extern void wxAssociateWinWithHandle(HWND hWnd
, wxWindow
*win
);
71 extern void wxRemoveHandleAssociation(wxWindow
*win
);
73 static HWND invalidHandle
= 0;
75 // ---------------------------------------------------------------------------
77 // ---------------------------------------------------------------------------
79 static const int IDM_WINDOWTILE
= 4001;
80 static const int IDM_WINDOWTILEHOR
= 4001;
81 static const int IDM_WINDOWCASCADE
= 4002;
82 static const int IDM_WINDOWICONS
= 4003;
83 static const int IDM_WINDOWNEXT
= 4004;
84 static const int IDM_WINDOWTILEVERT
= 4005;
85 static const int IDM_WINDOWPREV
= 4006;
87 // This range gives a maximum of 500 MDI children. Should be enough :-)
88 static const int wxFIRST_MDI_CHILD
= 4100;
89 static const int wxLAST_MDI_CHILD
= 4600;
91 // Status border dimensions
92 static const int wxTHICK_LINE_BORDER
= 3;
93 static const int wxTHICK_LINE_WIDTH
= 1;
95 // ---------------------------------------------------------------------------
97 // ---------------------------------------------------------------------------
99 // set the MDI menus (by sending the WM_MDISETMENU message) and update the menu
100 // of the parent of win (which is supposed to be the MDI client window)
101 static void MDISetMenu(wxWindow
*win
, HMENU hmenuFrame
, HMENU hmenuWindow
);
103 // insert the window menu (subMenu) into menu just before "Help" submenu or at
104 // the very end if not found
105 static void InsertWindowMenu(wxWindow
*win
, WXHMENU menu
, HMENU subMenu
);
107 // Remove the window menu
108 static void RemoveWindowMenu(wxWindow
*win
, WXHMENU menu
);
110 // is this an id of an MDI child?
111 inline bool IsMdiCommandId(int id
)
113 return (id
>= wxFIRST_MDI_CHILD
) && (id
<= wxLAST_MDI_CHILD
);
116 // unpack the parameters of WM_MDIACTIVATE message
117 static void UnpackMDIActivate(WXWPARAM wParam
, WXLPARAM lParam
,
118 WXWORD
*activate
, WXHWND
*hwndAct
, WXHWND
*hwndDeact
);
120 // return the HMENU of the MDI menu
121 static inline HMENU
GetMDIWindowMenu(wxMDIParentFrame
*frame
)
123 wxMenu
*menu
= frame
->GetWindowMenu();
124 return menu
? GetHmenuOf(menu
) : 0;
127 // ===========================================================================
129 // ===========================================================================
131 // ---------------------------------------------------------------------------
133 // ---------------------------------------------------------------------------
135 IMPLEMENT_DYNAMIC_CLASS(wxMDIParentFrame
, wxFrame
)
136 IMPLEMENT_DYNAMIC_CLASS(wxMDIChildFrame
, wxFrame
)
137 IMPLEMENT_DYNAMIC_CLASS(wxMDIClientWindow
, wxWindow
)
139 BEGIN_EVENT_TABLE(wxMDIParentFrame
, wxFrame
)
140 EVT_SIZE(wxMDIParentFrame::OnSize
)
141 EVT_SYS_COLOUR_CHANGED(wxMDIParentFrame::OnSysColourChanged
)
144 BEGIN_EVENT_TABLE(wxMDIChildFrame
, wxFrame
)
145 EVT_IDLE(wxMDIChildFrame::OnIdle
)
148 BEGIN_EVENT_TABLE(wxMDIClientWindow
, wxWindow
)
149 EVT_SCROLL(wxMDIClientWindow::OnScroll
)
152 // ===========================================================================
153 // wxMDIParentFrame: the frame which contains the client window which manages
155 // ===========================================================================
157 wxMDIParentFrame::wxMDIParentFrame()
159 m_clientWindow
= NULL
;
160 m_currentChild
= NULL
;
161 m_windowMenu
= (wxMenu
*) NULL
;
162 m_parentFrameActive
= true;
165 bool wxMDIParentFrame::Create(wxWindow
*parent
,
167 const wxString
& title
,
171 const wxString
& name
)
173 m_clientWindow
= NULL
;
174 m_currentChild
= NULL
;
176 // this style can be used to prevent a window from having the standard MDI
178 if ( style
& wxFRAME_NO_WINDOW_MENU
)
180 m_windowMenu
= (wxMenu
*)NULL
;
182 else // normal case: we have the window menu, so construct it
184 m_windowMenu
= new wxMenu
;
186 m_windowMenu
->Append(IDM_WINDOWCASCADE
, _("&Cascade"));
187 m_windowMenu
->Append(IDM_WINDOWTILEHOR
, _("Tile &Horizontally"));
188 m_windowMenu
->Append(IDM_WINDOWTILEVERT
, _("Tile &Vertically"));
189 m_windowMenu
->AppendSeparator();
190 m_windowMenu
->Append(IDM_WINDOWICONS
, _("&Arrange Icons"));
191 m_windowMenu
->Append(IDM_WINDOWNEXT
, _("&Next"));
192 m_windowMenu
->Append(IDM_WINDOWPREV
, _("&Previous"));
195 m_parentFrameActive
= true;
198 wxTopLevelWindows
.Append(this);
201 m_windowStyle
= style
;
204 parent
->AddChild(this);
206 if ( id
!= wxID_ANY
)
209 m_windowId
= NewControlId();
212 WXDWORD msflags
= MSWGetCreateWindowFlags(&exflags
);
213 msflags
&= ~WS_VSCROLL
;
214 msflags
&= ~WS_HSCROLL
;
216 if ( !wxWindow::MSWCreate(wxMDIFrameClassName
,
225 // unlike (almost?) all other windows, frames are created hidden
231 wxMDIParentFrame::~wxMDIParentFrame()
233 // see comment in ~wxMDIChildFrame
235 m_frameToolBar
= NULL
;
238 m_frameStatusBar
= NULL
;
239 #endif // wxUSE_STATUSBAR
246 m_windowMenu
= (wxMenu
*) NULL
;
249 // the MDI frame menubar is not automatically deleted by Windows unlike for
253 ::DestroyMenu((HMENU
)m_hMenu
);
254 m_hMenu
= (WXHMENU
)NULL
;
257 if ( m_clientWindow
)
259 if ( m_clientWindow
->MSWGetOldWndProc() )
260 m_clientWindow
->UnsubclassWin();
262 m_clientWindow
->SetHWND(0);
263 delete m_clientWindow
;
267 #if wxUSE_MENUS_NATIVE
269 void wxMDIParentFrame::InternalSetMenuBar()
271 m_parentFrameActive
= true;
273 InsertWindowMenu(GetClientWindow(), m_hMenu
, GetMDIWindowMenu(this));
276 #endif // wxUSE_MENUS_NATIVE
278 void wxMDIParentFrame::SetWindowMenu(wxMenu
* menu
)
284 // Remove old window menu
285 RemoveWindowMenu(GetClientWindow(), m_hMenu
);
289 m_windowMenu
= (wxMenu
*) NULL
;
297 InsertWindowMenu(GetClientWindow(), m_hMenu
,
298 GetHmenuOf(m_windowMenu
));
303 void wxMDIParentFrame::DoMenuUpdates(wxMenu
* menu
)
305 wxMDIChildFrame
*child
= GetActiveChild();
308 wxEvtHandler
* source
= child
->GetEventHandler();
309 wxMenuBar
* bar
= child
->GetMenuBar();
313 menu
->UpdateUI(source
);
319 int nCount
= bar
->GetMenuCount();
320 for (int n
= 0; n
< nCount
; n
++)
321 bar
->GetMenu(n
)->UpdateUI(source
);
327 wxFrameBase::DoMenuUpdates(menu
);
331 void wxMDIParentFrame::OnSize(wxSizeEvent
&)
333 if ( GetClientWindow() )
336 GetClientSize(&width
, &height
);
338 GetClientWindow()->SetSize(0, 0, width
, height
);
342 // Returns the active MDI child window
343 wxMDIChildFrame
*wxMDIParentFrame::GetActiveChild() const
345 HWND hWnd
= (HWND
)::SendMessage(GetWinHwnd(GetClientWindow()),
346 WM_MDIGETACTIVE
, 0, 0L);
350 return (wxMDIChildFrame
*)wxFindWinFromHandle((WXHWND
) hWnd
);
353 // Create the client window class (don't Create the window, just return a new
355 wxMDIClientWindow
*wxMDIParentFrame::OnCreateClient()
357 return new wxMDIClientWindow
;
360 // Responds to colour changes, and passes event on to children.
361 void wxMDIParentFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
363 if ( m_clientWindow
)
365 m_clientWindow
->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
));
366 m_clientWindow
->Refresh();
372 WXHICON
wxMDIParentFrame::GetDefaultIcon() const
374 // we don't have any standard icons (any more)
378 // ---------------------------------------------------------------------------
380 // ---------------------------------------------------------------------------
382 void wxMDIParentFrame::Cascade()
384 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDICASCADE
, 0, 0);
387 // TODO: add a direction argument (hor/vert)
388 void wxMDIParentFrame::Tile()
390 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDITILE
, MDITILE_HORIZONTAL
, 0);
393 void wxMDIParentFrame::ArrangeIcons()
395 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDIICONARRANGE
, 0, 0);
398 void wxMDIParentFrame::ActivateNext()
400 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT
, 0, 0);
403 void wxMDIParentFrame::ActivatePrevious()
405 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT
, 0, 1);
408 // ---------------------------------------------------------------------------
409 // the MDI parent frame window proc
410 // ---------------------------------------------------------------------------
412 WXLRESULT
wxMDIParentFrame::MSWWindowProc(WXUINT message
,
417 bool processed
= false;
423 WXWORD state
, minimized
;
425 UnpackActivate(wParam
, lParam
, &state
, &minimized
, &hwnd
);
427 processed
= HandleActivate(state
, minimized
!= 0, hwnd
);
435 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
437 (void)HandleCommand(id
, cmd
, hwnd
);
439 // even if the frame didn't process it, there is no need to try it
440 // once again (i.e. call wxFrame::HandleCommand()) - we just did it,
441 // so pretend we processed the message anyhow
445 // always pass this message DefFrameProc(), otherwise MDI menu
446 // commands (and sys commands - more surprisingly!) won't work
447 MSWDefWindowProc(message
, wParam
, lParam
);
451 m_clientWindow
= OnCreateClient();
452 // Uses own style for client style
453 if ( !m_clientWindow
->CreateClient(this, GetWindowStyleFlag()) )
455 wxLogMessage(_("Failed to create MDI parent frame."));
466 // we erase background ourselves
474 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
);
476 if ( m_parentFrameActive
)
478 processed
= HandleMenuSelect(item
, flags
, hmenu
);
480 else if (m_currentChild
)
482 processed
= m_currentChild
->
483 HandleMenuSelect(item
, flags
, hmenu
);
489 // as we don't (usually) resize the MDI client to exactly fit the
490 // client area (we put it below the toolbar, above statusbar &c),
491 // we should not pass this one to DefFrameProc
496 rc
= wxFrame::MSWWindowProc(message
, wParam
, lParam
);
501 bool wxMDIParentFrame::HandleActivate(int state
, bool minimized
, WXHWND activate
)
503 bool processed
= false;
505 if ( wxWindow::HandleActivate(state
, minimized
, activate
) )
511 // If this window is an MDI parent, we must also send an OnActivate message
512 // to the current child.
513 if ( (m_currentChild
!= NULL
) &&
514 ((state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
)) )
516 wxActivateEvent
event(wxEVT_ACTIVATE
, true, m_currentChild
->GetId());
517 event
.SetEventObject( m_currentChild
);
518 if ( m_currentChild
->GetEventHandler()->ProcessEvent(event
) )
525 bool wxMDIParentFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND hwnd
)
527 // In case it's e.g. a toolbar.
530 wxWindow
*win
= wxFindWinFromHandle(hwnd
);
532 return win
->MSWCommand(cmd
, id
);
535 // is it one of standard MDI commands?
541 case IDM_WINDOWCASCADE
:
543 wParam
= MDITILE_SKIPDISABLED
;
546 case IDM_WINDOWTILEHOR
:
547 wParam
|= MDITILE_HORIZONTAL
;
550 case IDM_WINDOWTILEVERT
:
552 wParam
= MDITILE_VERTICAL
;
554 wParam
|= MDITILE_SKIPDISABLED
;
557 case IDM_WINDOWICONS
:
558 msg
= WM_MDIICONARRANGE
;
563 lParam
= 0; // next child
568 lParam
= 1; // previous child
577 ::SendMessage(GetWinHwnd(GetClientWindow()), msg
, wParam
, lParam
);
582 // FIXME VZ: what does this test do??
585 return false; // Get WndProc to call default proc
588 if ( IsMdiCommandId(id
) )
590 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
593 wxWindow
*child
= node
->GetData();
594 if ( child
->GetHWND() )
596 long childId
= wxGetWindowId(child
->GetHWND());
597 if (childId
== (long)id
)
599 ::SendMessage( GetWinHwnd(GetClientWindow()),
601 (WPARAM
)child
->GetHWND(), 0);
605 node
= node
->GetNext();
608 else if ( m_parentFrameActive
)
610 return ProcessCommand(id
);
612 else if ( m_currentChild
)
614 return m_currentChild
->HandleCommand(id
, cmd
, hwnd
);
618 // this shouldn't happen because it means that our messages are being
619 // lost (they're not sent to the parent frame nor to the children)
620 wxFAIL_MSG(wxT("MDI parent frame is not active, yet there is no active MDI child?"));
626 WXLRESULT
wxMDIParentFrame::MSWDefWindowProc(WXUINT message
,
631 if ( GetClientWindow() )
632 clientWnd
= GetClientWindow()->GetHWND();
636 return DefFrameProc(GetHwnd(), (HWND
)clientWnd
, message
, wParam
, lParam
);
639 bool wxMDIParentFrame::MSWTranslateMessage(WXMSG
* msg
)
641 MSG
*pMsg
= (MSG
*)msg
;
643 // first let the current child get it
644 if ( m_currentChild
&& m_currentChild
->GetHWND() &&
645 m_currentChild
->MSWTranslateMessage(msg
) )
650 // then try out accel table (will also check the menu accels)
651 if ( wxFrame::MSWTranslateMessage(msg
) )
656 // finally, check for MDI specific built in accel keys
657 if ( pMsg
->message
== WM_KEYDOWN
|| pMsg
->message
== WM_SYSKEYDOWN
)
659 if ( ::TranslateMDISysAccel(GetWinHwnd(GetClientWindow()), pMsg
))
666 // ===========================================================================
668 // ===========================================================================
670 void wxMDIChildFrame::Init()
672 m_needsResize
= true;
673 m_needsInitialShow
= true;
676 bool wxMDIChildFrame::Create(wxMDIParentFrame
*parent
,
678 const wxString
& title
,
682 const wxString
& name
)
686 if ( id
!= wxID_ANY
)
689 m_windowId
= (int)NewControlId();
693 parent
->AddChild(this);
703 mcs
.szClass
= style
& wxFULL_REPAINT_ON_RESIZE
704 ? wxMDIChildFrameClassName
705 : wxMDIChildFrameClassNameNoRedraw
;
707 mcs
.hOwner
= wxGetInstance();
708 if (x
!= wxDefaultCoord
)
711 mcs
.x
= CW_USEDEFAULT
;
713 if (y
!= wxDefaultCoord
)
716 mcs
.y
= CW_USEDEFAULT
;
718 if (width
!= wxDefaultCoord
)
721 mcs
.cx
= CW_USEDEFAULT
;
723 if (height
!= wxDefaultCoord
)
726 mcs
.cy
= CW_USEDEFAULT
;
728 DWORD msflags
= WS_OVERLAPPED
| WS_CLIPCHILDREN
;
729 if (style
& wxMINIMIZE_BOX
)
730 msflags
|= WS_MINIMIZEBOX
;
731 if (style
& wxMAXIMIZE_BOX
)
732 msflags
|= WS_MAXIMIZEBOX
;
733 if (style
& wxTHICK_FRAME
)
734 msflags
|= WS_THICKFRAME
;
735 if (style
& wxSYSTEM_MENU
)
736 msflags
|= WS_SYSMENU
;
737 if ((style
& wxMINIMIZE
) || (style
& wxICONIZE
))
738 msflags
|= WS_MINIMIZE
;
739 if (style
& wxMAXIMIZE
)
740 msflags
|= WS_MAXIMIZE
;
741 if (style
& wxCAPTION
)
742 msflags
|= WS_CAPTION
;
748 wxWindowCreationHook
hook(this);
750 m_hWnd
= (WXHWND
)::SendMessage(GetWinHwnd(parent
->GetClientWindow()),
751 WM_MDICREATE
, 0, (LONG
)(LPSTR
)&mcs
);
753 wxAssociateWinWithHandle((HWND
) GetHWND(), this);
758 wxMDIChildFrame::~wxMDIChildFrame()
760 // will be destroyed by DestroyChildren() but reset them before calling it
761 // to avoid using dangling pointers if a callback comes in the meanwhile
763 m_frameToolBar
= NULL
;
766 m_frameStatusBar
= NULL
;
767 #endif // wxUSE_STATUSBAR
771 RemoveWindowMenu(NULL
, m_hMenu
);
776 bool wxMDIChildFrame::Show(bool show
)
778 m_needsInitialShow
= false;
779 return wxFrame::Show(show
);
782 // Set the client size (i.e. leave the calculation of borders etc.
784 void wxMDIChildFrame::DoSetClientSize(int width
, int height
)
786 HWND hWnd
= GetHwnd();
789 ::GetClientRect(hWnd
, &rect
);
792 GetWindowRect(hWnd
, &rect2
);
794 // Find the difference between the entire window (title bar and all)
795 // and the client area; add this to the new client size to move the
797 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
798 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
801 if (GetStatusBar() && GetStatusBar()->IsShown())
804 GetStatusBar()->GetSize(&sx
, &sy
);
807 #endif // wxUSE_STATUSBAR
810 point
.x
= rect2
.left
;
813 // If there's an MDI parent, must subtract the parent's top left corner
814 // since MoveWindow moves relative to the parent
815 wxMDIParentFrame
*mdiParent
= (wxMDIParentFrame
*)GetParent();
816 ::ScreenToClient((HWND
) mdiParent
->GetClientWindow()->GetHWND(), &point
);
818 MoveWindow(hWnd
, point
.x
, point
.y
, actual_width
, actual_height
, (BOOL
)true);
820 wxSize
size(width
, height
);
821 wxSizeEvent
event(size
, m_windowId
);
822 event
.SetEventObject( this );
823 GetEventHandler()->ProcessEvent(event
);
826 void wxMDIChildFrame::DoGetPosition(int *x
, int *y
) const
829 GetWindowRect(GetHwnd(), &rect
);
834 // Since we now have the absolute screen coords,
835 // if there's a parent we must subtract its top left corner
836 wxMDIParentFrame
*mdiParent
= (wxMDIParentFrame
*)GetParent();
837 ::ScreenToClient((HWND
) mdiParent
->GetClientWindow()->GetHWND(), &point
);
843 void wxMDIChildFrame::InternalSetMenuBar()
845 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
847 InsertWindowMenu(parent
->GetClientWindow(),
848 m_hMenu
, GetMDIWindowMenu(parent
));
850 parent
->m_parentFrameActive
= false;
853 WXHICON
wxMDIChildFrame::GetDefaultIcon() const
855 // we don't have any standard icons (any more)
859 // ---------------------------------------------------------------------------
861 // ---------------------------------------------------------------------------
863 void wxMDIChildFrame::Maximize(bool maximize
)
865 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
866 if ( parent
&& parent
->GetClientWindow() )
868 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()),
869 maximize
? WM_MDIMAXIMIZE
: WM_MDIRESTORE
,
870 (WPARAM
)GetHwnd(), 0);
874 void wxMDIChildFrame::Restore()
876 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
877 if ( parent
&& parent
->GetClientWindow() )
879 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIRESTORE
,
880 (WPARAM
) GetHwnd(), 0);
884 void wxMDIChildFrame::Activate()
886 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
887 if ( parent
&& parent
->GetClientWindow() )
889 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIACTIVATE
,
890 (WPARAM
) GetHwnd(), 0);
894 // ---------------------------------------------------------------------------
895 // MDI window proc and message handlers
896 // ---------------------------------------------------------------------------
898 WXLRESULT
wxMDIChildFrame::MSWWindowProc(WXUINT message
,
903 bool processed
= false;
911 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
,
914 processed
= HandleCommand(id
, cmd
, (WXHWND
)hwnd
);
918 case WM_GETMINMAXINFO
:
919 processed
= HandleGetMinMaxInfo((MINMAXINFO
*)lParam
);
925 WXHWND hwndAct
, hwndDeact
;
926 UnpackMDIActivate(wParam
, lParam
, &act
, &hwndAct
, &hwndDeact
);
928 processed
= HandleMDIActivate(act
, hwndAct
, hwndDeact
);
933 // must pass WM_MOVE to DefMDIChildProc() to recalculate MDI client
934 // scrollbars if necessary
939 // must pass WM_SIZE to DefMDIChildProc(), otherwise many weird
941 MSWDefWindowProc(message
, wParam
, lParam
);
945 // DefMDIChildProc handles SC_{NEXT/PREV}WINDOW here, so pass it
946 // the message (the base class version does not)
947 return MSWDefWindowProc(message
, wParam
, lParam
);
949 case WM_WINDOWPOSCHANGING
:
950 processed
= HandleWindowPosChanging((LPWINDOWPOS
)lParam
);
955 rc
= wxFrame::MSWWindowProc(message
, wParam
, lParam
);
960 bool wxMDIChildFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND hwnd
)
962 // In case it's e.g. a toolbar.
965 wxWindow
*win
= wxFindWinFromHandle(hwnd
);
967 return win
->MSWCommand(cmd
, id
);
970 if (wxCurrentPopupMenu
)
972 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
973 wxCurrentPopupMenu
= NULL
;
974 if (popupMenu
->MSWCommand(cmd
, id
))
979 if (GetMenuBar() && GetMenuBar()->FindItem(id
))
981 processed
= ProcessCommand(id
);
991 bool wxMDIChildFrame::HandleMDIActivate(long WXUNUSED(activate
),
995 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
1001 if ( m_hWnd
== hwndAct
)
1004 parent
->m_currentChild
= this;
1006 HMENU child_menu
= (HMENU
)GetWinMenu();
1009 parent
->m_parentFrameActive
= false;
1011 menuToSet
= child_menu
;
1014 else if ( m_hWnd
== hwndDeact
)
1016 wxASSERT_MSG( parent
->m_currentChild
== this,
1017 wxT("can't deactivate MDI child which wasn't active!") );
1020 parent
->m_currentChild
= NULL
;
1022 HMENU parent_menu
= (HMENU
)parent
->GetWinMenu();
1024 // activate the the parent menu only when there is no other child
1025 // that has been activated
1026 if ( parent_menu
&& !hwndAct
)
1028 parent
->m_parentFrameActive
= true;
1030 menuToSet
= parent_menu
;
1035 // we have nothing to do with it
1041 MDISetMenu(parent
->GetClientWindow(),
1042 menuToSet
, GetMDIWindowMenu(parent
));
1045 wxActivateEvent
event(wxEVT_ACTIVATE
, activated
, m_windowId
);
1046 event
.SetEventObject( this );
1048 ResetWindowStyle((void *)NULL
);
1050 return GetEventHandler()->ProcessEvent(event
);
1053 bool wxMDIChildFrame::HandleWindowPosChanging(void *pos
)
1055 WINDOWPOS
*lpPos
= (WINDOWPOS
*)pos
;
1056 #if defined(__WIN95__)
1057 if (!(lpPos
->flags
& SWP_NOSIZE
))
1060 DWORD dwExStyle
= ::GetWindowLong(GetHwnd(), GWL_EXSTYLE
);
1061 DWORD dwStyle
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1062 if (ResetWindowStyle((void *) & rectClient
) && (dwStyle
& WS_MAXIMIZE
))
1064 ::AdjustWindowRectEx(&rectClient
, dwStyle
, false, dwExStyle
);
1065 lpPos
->x
= rectClient
.left
;
1066 lpPos
->y
= rectClient
.top
;
1067 lpPos
->cx
= rectClient
.right
- rectClient
.left
;
1068 lpPos
->cy
= rectClient
.bottom
- rectClient
.top
;
1071 wxMDIParentFrame
* pFrameWnd
= (wxMDIParentFrame
*)GetParent();
1072 if (pFrameWnd
&& pFrameWnd
->GetToolBar() && pFrameWnd
->GetToolBar()->IsShown())
1074 pFrameWnd
->GetToolBar()->Refresh();
1083 bool wxMDIChildFrame::HandleGetMinMaxInfo(void *mmInfo
)
1085 MINMAXINFO
*info
= (MINMAXINFO
*)mmInfo
;
1087 // let the default window proc calculate the size of MDI children
1088 // frames because it is based on the size of the MDI client window,
1089 // not on the values specified in wxWindow m_max variables
1090 bool processed
= MSWDefWindowProc(WM_GETMINMAXINFO
, 0, (LPARAM
)mmInfo
) != 0;
1092 int minWidth
= GetMinWidth(),
1093 minHeight
= GetMinHeight();
1095 // but allow GetSizeHints() to set the min size
1096 if ( minWidth
!= -1 )
1098 info
->ptMinTrackSize
.x
= minWidth
;
1103 if ( minHeight
!= -1 )
1105 info
->ptMinTrackSize
.y
= minHeight
;
1113 // ---------------------------------------------------------------------------
1114 // MDI specific message translation/preprocessing
1115 // ---------------------------------------------------------------------------
1117 WXLRESULT
wxMDIChildFrame::MSWDefWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1119 return DefMDIChildProc(GetHwnd(),
1120 (UINT
)message
, (WPARAM
)wParam
, (LPARAM
)lParam
);
1123 bool wxMDIChildFrame::MSWTranslateMessage(WXMSG
* msg
)
1125 return wxFrame::MSWTranslateMessage(msg
);
1128 // ---------------------------------------------------------------------------
1130 // ---------------------------------------------------------------------------
1132 void wxMDIChildFrame::MSWDestroyWindow()
1134 invalidHandle
= GetHwnd();
1136 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
1138 // Must make sure this handle is invalidated (set to NULL) since all sorts
1139 // of things could happen after the child client is destroyed, but before
1140 // the wxFrame is destroyed.
1142 HWND oldHandle
= (HWND
)GetHWND();
1143 SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIDESTROY
,
1144 (WPARAM
)oldHandle
, 0);
1146 if (parent
->GetActiveChild() == (wxMDIChildFrame
*) NULL
)
1147 ResetWindowStyle((void*) NULL
);
1153 ::DestroyMenu((HMENU
) m_hMenu
);
1156 wxRemoveHandleAssociation(this);
1160 // Change the client window's extended style so we don't get a client edge
1161 // style when a child is maximised (a double border looks silly.)
1162 bool wxMDIChildFrame::ResetWindowStyle(void *vrect
)
1164 #if defined(__WIN95__)
1165 RECT
*rect
= (RECT
*)vrect
;
1166 wxMDIParentFrame
* pFrameWnd
= (wxMDIParentFrame
*)GetParent();
1167 wxMDIChildFrame
* pChild
= pFrameWnd
->GetActiveChild();
1168 if (!pChild
|| (pChild
== this))
1170 HWND hwndClient
= GetWinHwnd(pFrameWnd
->GetClientWindow());
1171 DWORD dwStyle
= ::GetWindowLong(hwndClient
, GWL_EXSTYLE
);
1173 // we want to test whether there is a maximized child, so just set
1174 // dwThisStyle to 0 if there is no child at all
1175 DWORD dwThisStyle
= pChild
1176 ? ::GetWindowLong(GetWinHwnd(pChild
), GWL_STYLE
) : 0;
1177 DWORD dwNewStyle
= dwStyle
;
1178 if ( dwThisStyle
& WS_MAXIMIZE
)
1179 dwNewStyle
&= ~(WS_EX_CLIENTEDGE
);
1181 dwNewStyle
|= WS_EX_CLIENTEDGE
;
1183 if (dwStyle
!= dwNewStyle
)
1185 // force update of everything
1186 ::RedrawWindow(hwndClient
, NULL
, NULL
,
1187 RDW_INVALIDATE
| RDW_ALLCHILDREN
);
1188 ::SetWindowLong(hwndClient
, GWL_EXSTYLE
, dwNewStyle
);
1189 ::SetWindowPos(hwndClient
, NULL
, 0, 0, 0, 0,
1190 SWP_FRAMECHANGED
| SWP_NOACTIVATE
|
1191 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOZORDER
|
1194 ::GetClientRect(hwndClient
, rect
);
1204 // ===========================================================================
1205 // wxMDIClientWindow: the window of predefined (by Windows) class which
1206 // contains the child frames
1207 // ===========================================================================
1209 bool wxMDIClientWindow::CreateClient(wxMDIParentFrame
*parent
, long style
)
1211 m_backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
);
1213 CLIENTCREATESTRUCT ccs
;
1214 m_windowStyle
= style
;
1217 ccs
.hWindowMenu
= GetMDIWindowMenu(parent
);
1218 ccs
.idFirstChild
= wxFIRST_MDI_CHILD
;
1220 DWORD msStyle
= MDIS_ALLCHILDSTYLES
| WS_VISIBLE
| WS_CHILD
|
1221 WS_CLIPCHILDREN
| WS_CLIPSIBLINGS
;
1223 if ( style
& wxHSCROLL
)
1224 msStyle
|= WS_HSCROLL
;
1225 if ( style
& wxVSCROLL
)
1226 msStyle
|= WS_VSCROLL
;
1228 #if defined(__WIN95__)
1229 DWORD exStyle
= WS_EX_CLIENTEDGE
;
1234 wxWindowCreationHook
hook(this);
1235 m_hWnd
= (WXHWND
)::CreateWindowEx
1245 (LPSTR
)(LPCLIENTCREATESTRUCT
)&ccs
);
1248 wxLogLastError(wxT("CreateWindowEx(MDI client)"));
1253 SubclassWin(m_hWnd
);
1258 // Explicitly call default scroll behaviour
1259 void wxMDIClientWindow::OnScroll(wxScrollEvent
& event
)
1261 // Note: for client windows, the scroll position is not set in
1262 // WM_HSCROLL, WM_VSCROLL, so we can't easily determine what
1263 // scroll position we're at.
1264 // This makes it hard to paint patterns or bitmaps in the background,
1265 // and have the client area scrollable as well.
1267 if ( event
.GetOrientation() == wxHORIZONTAL
)
1268 m_scrollX
= event
.GetPosition(); // Always returns zero!
1270 m_scrollY
= event
.GetPosition(); // Always returns zero!
1275 void wxMDIClientWindow::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1277 // Try to fix a problem whereby if you show an MDI child frame, then reposition the
1278 // client area, you can end up with a non-refreshed portion in the client window
1279 // (see OGL studio sample). So check if the position is changed and if so,
1280 // redraw the MDI child frames.
1282 wxPoint oldPos
= GetPosition();
1284 wxWindow::DoSetSize(x
, y
, width
, height
, sizeFlags
);
1286 wxPoint newPos
= GetPosition();
1288 if ((newPos
.x
!= oldPos
.x
) || (newPos
.y
!= oldPos
.y
))
1292 wxWindowList::compatibility_iterator node
= GetParent()->GetChildren().GetFirst();
1295 wxWindow
*child
= node
->GetData();
1296 if (child
->IsKindOf(CLASSINFO(wxMDIChildFrame
)))
1298 ::RedrawWindow(GetHwndOf(child
),
1305 node
= node
->GetNext();
1311 void wxMDIChildFrame::OnIdle(wxIdleEvent
& event
)
1313 // wxMSW prior to 2.5.3 created MDI child frames as visible, which resulted
1314 // in flicker e.g. when the frame contained controls with non-trivial
1315 // layout. Since 2.5.3, the frame is created hidden as all other top level
1316 // windows. In order to maintain backward compatibility, the frame is shown
1317 // in OnIdle, unless Show(false) was called by the programmer before.
1318 if ( m_needsInitialShow
)
1323 // MDI child frames get their WM_SIZE when they're constructed but at this
1324 // moment they don't have any children yet so all child windows will be
1325 // positioned incorrectly when they are added later - to fix this, we
1326 // generate an artificial size event here
1327 if ( m_needsResize
)
1329 m_needsResize
= false; // avoid any possibility of recursion
1337 // ---------------------------------------------------------------------------
1338 // non member functions
1339 // ---------------------------------------------------------------------------
1341 static void MDISetMenu(wxWindow
*win
, HMENU hmenuFrame
, HMENU hmenuWindow
)
1343 ::SendMessage(GetWinHwnd(win
), WM_MDISETMENU
,
1345 (WPARAM
)hmenuFrame
, (LPARAM
)hmenuWindow
1347 0, MAKELPARAM(hmenuFrame
, hmenuWindow
)
1351 // update menu bar of the parent window
1352 wxWindow
*parent
= win
->GetParent();
1353 wxCHECK_RET( parent
, wxT("MDI client without parent frame? weird...") );
1355 ::SendMessage(GetWinHwnd(win
), WM_MDIREFRESHMENU
, 0, 0L);
1357 ::DrawMenuBar(GetWinHwnd(parent
));
1360 static void InsertWindowMenu(wxWindow
*win
, WXHMENU menu
, HMENU subMenu
)
1362 // Try to insert Window menu in front of Help, otherwise append it.
1363 HMENU hmenu
= (HMENU
)menu
;
1367 int N
= GetMenuItemCount(hmenu
);
1368 bool success
= false;
1369 for ( int i
= 0; i
< N
; i
++ )
1372 int chars
= GetMenuString(hmenu
, i
, buf
, WXSIZEOF(buf
), MF_BYPOSITION
);
1375 wxLogLastError(wxT("GetMenuString"));
1380 if ( wxStripMenuCodes(wxString(buf
)).IsSameAs(_("Help")) )
1383 ::InsertMenu(hmenu
, i
, MF_BYPOSITION
| MF_POPUP
| MF_STRING
,
1384 (UINT
)subMenu
, _("&Window"));
1391 ::AppendMenu(hmenu
, MF_POPUP
, (UINT
)subMenu
, _("&Window"));
1395 MDISetMenu(win
, hmenu
, subMenu
);
1398 static void RemoveWindowMenu(wxWindow
*win
, WXHMENU menu
)
1400 HMENU hMenu
= (HMENU
)menu
;
1406 int N
= ::GetMenuItemCount(hMenu
);
1407 for ( int i
= 0; i
< N
; i
++ )
1409 if ( !::GetMenuString(hMenu
, i
, buf
, WXSIZEOF(buf
), MF_BYPOSITION
) )
1411 // Ignore successful read of menu string with length 0 which
1412 // occurs, for example, for a maximized MDI childs system menu
1413 if ( ::GetLastError() != 0 )
1415 wxLogLastError(wxT("GetMenuString"));
1421 if ( wxStrcmp(buf
, _("&Window")) == 0 )
1423 if ( !::RemoveMenu(hMenu
, i
, MF_BYPOSITION
) )
1425 wxLogLastError(wxT("RemoveMenu"));
1435 // we don't change the windows menu, but we update the main one
1436 MDISetMenu(win
, hMenu
, NULL
);
1440 static void UnpackMDIActivate(WXWPARAM wParam
, WXLPARAM lParam
,
1441 WXWORD
*activate
, WXHWND
*hwndAct
, WXHWND
*hwndDeact
)
1444 *hwndAct
= (WXHWND
)lParam
;
1445 *hwndDeact
= (WXHWND
)wParam
;
1448 #endif // wxUSE_MDI && !defined(__WXUNIVERSAL__)