1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/mdi.cpp
3 // Purpose: MDI classes for wxMSW
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
21 #pragma implementation "mdi.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
37 #include "wx/dialog.h"
39 #include "wx/statusbr.h"
41 #include "wx/settings.h"
47 #include "wx/msw/private.h"
49 #if wxUSE_STATUSBAR && wxUSE_NATIVE_STATUSBAR
50 #include "wx/msw/statbr95.h"
54 #include "wx/toolbar.h"
55 #endif // wxUSE_TOOLBAR
59 // ---------------------------------------------------------------------------
61 // ---------------------------------------------------------------------------
63 extern wxWindowList wxModelessWindows
; // from dialog.cpp
64 extern wxMenu
*wxCurrentPopupMenu
;
66 extern const wxChar
*wxMDIFrameClassName
; // from app.cpp
67 extern const wxChar
*wxMDIChildFrameClassName
;
68 extern const wxChar
*wxMDIChildFrameClassNameNoRedraw
;
70 extern wxWindow
*wxWndHook
; // from window.cpp
72 extern void wxAssociateWinWithHandle(HWND hWnd
, wxWindow
*win
);
73 extern void wxRemoveHandleAssociation(wxWindow
*win
);
75 static HWND invalidHandle
= 0;
77 // ---------------------------------------------------------------------------
79 // ---------------------------------------------------------------------------
81 static const int IDM_WINDOWTILE
= 4001;
82 static const int IDM_WINDOWTILEHOR
= 4001;
83 static const int IDM_WINDOWCASCADE
= 4002;
84 static const int IDM_WINDOWICONS
= 4003;
85 static const int IDM_WINDOWNEXT
= 4004;
86 static const int IDM_WINDOWTILEVERT
= 4005;
88 // This range gives a maximum of 500 MDI children. Should be enough :-)
89 static const int wxFIRST_MDI_CHILD
= 4100;
90 static const int wxLAST_MDI_CHILD
= 4600;
92 // Status border dimensions
93 static const int wxTHICK_LINE_BORDER
= 3;
94 static const int wxTHICK_LINE_WIDTH
= 1;
96 // ---------------------------------------------------------------------------
98 // ---------------------------------------------------------------------------
100 // set the MDI menus (by sending the WM_MDISETMENU message) and update the menu
101 // of the parent of win (which is supposed to be the MDI client window)
102 static void MDISetMenu(wxWindow
*win
, HMENU hmenuFrame
, HMENU hmenuWindow
);
104 // insert the window menu (subMenu) into menu just before "Help" submenu or at
105 // the very end if not found
106 static void InsertWindowMenu(wxWindow
*win
, WXHMENU menu
, HMENU subMenu
);
108 // Remove the window menu
109 static void RemoveWindowMenu(wxWindow
*win
, WXHMENU menu
);
111 // is this an id of an MDI child?
112 inline bool IsMdiCommandId(int id
)
114 return (id
>= wxFIRST_MDI_CHILD
) && (id
<= wxLAST_MDI_CHILD
);
117 static void UnpackMDIActivate(WXWPARAM wParam
, WXLPARAM lParam
,
118 WXWORD
*activate
, WXHWND
*hwndAct
, WXHWND
*hwndDeact
);
120 // ===========================================================================
122 // ===========================================================================
124 // ---------------------------------------------------------------------------
126 // ---------------------------------------------------------------------------
128 IMPLEMENT_DYNAMIC_CLASS(wxMDIParentFrame
, wxFrame
)
129 IMPLEMENT_DYNAMIC_CLASS(wxMDIChildFrame
, wxFrame
)
130 IMPLEMENT_DYNAMIC_CLASS(wxMDIClientWindow
, wxWindow
)
132 BEGIN_EVENT_TABLE(wxMDIParentFrame
, wxFrame
)
133 EVT_SIZE(wxMDIParentFrame::OnSize
)
134 EVT_SYS_COLOUR_CHANGED(wxMDIParentFrame::OnSysColourChanged
)
137 BEGIN_EVENT_TABLE(wxMDIChildFrame
, wxFrame
)
138 EVT_IDLE(wxMDIChildFrame::OnIdle
)
141 BEGIN_EVENT_TABLE(wxMDIClientWindow
, wxWindow
)
142 EVT_SCROLL(wxMDIClientWindow::OnScroll
)
145 // ===========================================================================
146 // wxMDIParentFrame: the frame which contains the client window which manages
148 // ===========================================================================
150 wxMDIParentFrame::wxMDIParentFrame()
152 m_clientWindow
= NULL
;
153 m_currentChild
= NULL
;
154 m_windowMenu
= (wxMenu
*) NULL
;
155 m_parentFrameActive
= TRUE
;
158 bool wxMDIParentFrame::Create(wxWindow
*parent
,
160 const wxString
& title
,
164 const wxString
& name
)
166 m_clientWindow
= NULL
;
167 m_currentChild
= NULL
;
169 // this style can be used to prevent a window from having the standard MDI
171 if ( style
& wxFRAME_NO_WINDOW_MENU
)
173 m_windowMenu
= (wxMenu
*)NULL
;
175 else // normal case: we have the window menu, so construct it
177 m_windowMenu
= new wxMenu
;
179 m_windowMenu
->Append(IDM_WINDOWCASCADE
, _("&Cascade"));
180 m_windowMenu
->Append(IDM_WINDOWTILEHOR
, _("Tile &Horizontally"));
181 m_windowMenu
->Append(IDM_WINDOWTILEVERT
, _("Tile &Vertically"));
182 m_windowMenu
->AppendSeparator();
183 m_windowMenu
->Append(IDM_WINDOWICONS
, _("&Arrange Icons"));
184 m_windowMenu
->Append(IDM_WINDOWNEXT
, _("&Next"));
187 m_parentFrameActive
= TRUE
;
190 wxTopLevelWindows
.Append(this);
193 m_windowStyle
= style
;
195 if (parent
) parent
->AddChild(this);
200 m_windowId
= (int)NewControlId();
207 DWORD msflags
= WS_OVERLAPPED
;
208 if (style
& wxMINIMIZE_BOX
)
209 msflags
|= WS_MINIMIZEBOX
;
210 if (style
& wxMAXIMIZE_BOX
)
211 msflags
|= WS_MAXIMIZEBOX
;
212 if (style
& wxTHICK_FRAME
)
213 msflags
|= WS_THICKFRAME
;
214 if (style
& wxSYSTEM_MENU
)
215 msflags
|= WS_SYSMENU
;
216 if ((style
& wxMINIMIZE
) || (style
& wxICONIZE
))
217 msflags
|= WS_MINIMIZE
;
218 if (style
& wxMAXIMIZE
)
219 msflags
|= WS_MAXIMIZE
;
220 if (style
& wxCAPTION
)
221 msflags
|= WS_CAPTION
;
223 if (style
& wxCLIP_CHILDREN
)
224 msflags
|= WS_CLIPCHILDREN
;
226 if ( !wxWindow::MSWCreate(m_windowId
,
237 wxModelessWindows
.Append(this);
239 // unlike (almost?) all other windows, frames are created hidden
245 wxMDIParentFrame::~wxMDIParentFrame()
248 // already delete by DestroyChildren()
249 m_frameToolBar
= NULL
;
250 m_frameStatusBar
= NULL
;
252 // ::DestroyMenu((HMENU)m_windowMenu);
256 m_windowMenu
= (wxMenu
*) NULL
;
259 if ( m_clientWindow
)
261 if ( m_clientWindow
->MSWGetOldWndProc() )
262 m_clientWindow
->UnsubclassWin();
264 m_clientWindow
->SetHWND(0);
265 delete m_clientWindow
;
269 #if wxUSE_MENUS_NATIVE
271 void wxMDIParentFrame::InternalSetMenuBar()
273 m_parentFrameActive
= TRUE
;
275 wxMenu
*menu
= GetWindowMenu();
276 HMENU subMenu
= menu
? GetHmenuOf(menu
) : 0;
278 InsertWindowMenu(GetClientWindow(), m_hMenu
, subMenu
);
281 #endif // wxUSE_MENUS_NATIVE
283 void wxMDIParentFrame::SetWindowMenu(wxMenu
* menu
)
289 // Remove old window menu
290 RemoveWindowMenu(GetClientWindow(), m_hMenu
);
294 m_windowMenu
= (wxMenu
*) NULL
;
301 InsertWindowMenu(GetClientWindow(), m_hMenu
,
302 GetHmenuOf(m_windowMenu
));
307 void wxMDIParentFrame::OnSize(wxSizeEvent
&)
309 if ( GetClientWindow() )
312 GetClientSize(&width
, &height
);
314 GetClientWindow()->SetSize(0, 0, width
, height
);
318 // Returns the active MDI child window
319 wxMDIChildFrame
*wxMDIParentFrame::GetActiveChild() const
321 HWND hWnd
= (HWND
)::SendMessage(GetWinHwnd(GetClientWindow()),
322 WM_MDIGETACTIVE
, 0, 0L);
326 return (wxMDIChildFrame
*)wxFindWinFromHandle((WXHWND
) hWnd
);
329 // Create the client window class (don't Create the window, just return a new
331 wxMDIClientWindow
*wxMDIParentFrame::OnCreateClient()
333 return new wxMDIClientWindow
;
336 // Responds to colour changes, and passes event on to children.
337 void wxMDIParentFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
339 if ( m_clientWindow
)
341 m_clientWindow
->SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
));
342 m_clientWindow
->Refresh();
348 WXHICON
wxMDIParentFrame::GetDefaultIcon() const
350 return (WXHICON
)(wxSTD_MDIPARENTFRAME_ICON
? wxSTD_MDIPARENTFRAME_ICON
351 : wxDEFAULT_MDIPARENTFRAME_ICON
);
354 // ---------------------------------------------------------------------------
356 // ---------------------------------------------------------------------------
358 void wxMDIParentFrame::Cascade()
360 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDICASCADE
, 0, 0);
363 // TODO: add a direction argument (hor/vert)
364 void wxMDIParentFrame::Tile()
366 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDITILE
, MDITILE_HORIZONTAL
, 0);
369 void wxMDIParentFrame::ArrangeIcons()
371 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDIICONARRANGE
, 0, 0);
374 void wxMDIParentFrame::ActivateNext()
376 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT
, 0, 0);
379 void wxMDIParentFrame::ActivatePrevious()
381 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT
, 0, 1);
384 // ---------------------------------------------------------------------------
385 // the MDI parent frame window proc
386 // ---------------------------------------------------------------------------
388 long wxMDIParentFrame::MSWWindowProc(WXUINT message
,
393 bool processed
= FALSE
;
399 WXWORD state
, minimized
;
401 UnpackActivate(wParam
, lParam
, &state
, &minimized
, &hwnd
);
403 processed
= HandleActivate(state
, minimized
!= 0, hwnd
);
411 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
413 (void)HandleCommand(id
, cmd
, hwnd
);
415 // even if the frame didn't process it, there is no need to try it
416 // once again (i.e. call wxFrame::HandleCommand()) - we just dud it,
417 // so pretend we processed the message anyhow
421 // always pass this message DefFrameProc(), otherwise MDI menu
422 // commands (and sys commands - more surprizingly!) won't work
423 MSWDefWindowProc(message
, wParam
, lParam
);
427 m_clientWindow
= OnCreateClient();
428 // Uses own style for client style
429 if ( !m_clientWindow
->CreateClient(this, GetWindowStyleFlag()) )
431 wxLogMessage(_("Failed to create MDI parent frame."));
442 // we erase background ourselves
450 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
);
452 if ( m_parentFrameActive
)
454 processed
= HandleMenuSelect(item
, flags
, hmenu
);
456 else if (m_currentChild
)
458 processed
= m_currentChild
->
459 HandleMenuSelect(item
, flags
, hmenu
);
465 // as we don't (usually) resize the MDI client to exactly fit the
466 // client area (we put it below the toolbar, above statusbar &c),
467 // we should not pass this one to DefFrameProc
472 rc
= wxFrame::MSWWindowProc(message
, wParam
, lParam
);
477 bool wxMDIParentFrame::HandleActivate(int state
, bool minimized
, WXHWND activate
)
479 bool processed
= FALSE
;
481 if ( wxWindow::HandleActivate(state
, minimized
, activate
) )
487 // If this window is an MDI parent, we must also send an OnActivate message
488 // to the current child.
489 if ( (m_currentChild
!= NULL
) &&
490 ((state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
)) )
492 wxActivateEvent
event(wxEVT_ACTIVATE
, TRUE
, m_currentChild
->GetId());
493 event
.SetEventObject( m_currentChild
);
494 if ( m_currentChild
->GetEventHandler()->ProcessEvent(event
) )
501 bool wxMDIParentFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND hwnd
)
503 // In case it's e.g. a toolbar.
506 wxWindow
*win
= wxFindWinFromHandle(hwnd
);
508 return win
->MSWCommand(cmd
, id
);
511 // is it one of standard MDI commands?
516 case IDM_WINDOWCASCADE
:
518 wParam
= MDITILE_SKIPDISABLED
;
521 case IDM_WINDOWTILEHOR
:
522 wParam
|= MDITILE_HORIZONTAL
;
525 case IDM_WINDOWTILEVERT
:
527 wParam
= MDITILE_VERTICAL
;
529 wParam
|= MDITILE_SKIPDISABLED
;
532 case IDM_WINDOWICONS
:
533 msg
= WM_MDIICONARRANGE
;
546 ::SendMessage(GetWinHwnd(GetClientWindow()), msg
, wParam
, 0);
551 // FIXME VZ: what does this test do??
554 return FALSE
; // Get WndProc to call default proc
557 if ( IsMdiCommandId(id
) )
559 wxWindowList::Node
* node
= GetChildren().GetFirst();
562 wxWindow
* child
= node
->GetData();
563 if ( child
->GetHWND() )
565 long childId
= wxGetWindowId(child
->GetHWND());
566 if (childId
== (long)id
)
568 ::SendMessage( GetWinHwnd(GetClientWindow()),
570 (WPARAM
)child
->GetHWND(), 0);
574 node
= node
->GetNext();
577 else if ( m_parentFrameActive
)
579 return ProcessCommand(id
);
581 else if ( m_currentChild
)
583 return m_currentChild
->HandleCommand(id
, cmd
, hwnd
);
587 // this shouldn't happen because it means that our messages are being
588 // lost (they're not sent to the parent frame nor to the children)
589 wxFAIL_MSG(wxT("MDI parent frame is not active, yet there is no active MDI child?"));
595 long wxMDIParentFrame::MSWDefWindowProc(WXUINT message
,
600 if ( GetClientWindow() )
601 clientWnd
= GetClientWindow()->GetHWND();
605 return DefFrameProc(GetHwnd(), (HWND
)clientWnd
, message
, wParam
, lParam
);
608 bool wxMDIParentFrame::MSWTranslateMessage(WXMSG
* msg
)
610 MSG
*pMsg
= (MSG
*)msg
;
612 // first let the current child get it
613 if ( m_currentChild
&& m_currentChild
->GetHWND() &&
614 m_currentChild
->MSWTranslateMessage(msg
) )
619 // then try out accel table (will also check the menu accels)
620 if ( wxFrame::MSWTranslateMessage(msg
) )
625 // finally, check for MDI specific built in accel keys
626 if ( pMsg
->message
== WM_KEYDOWN
|| pMsg
->message
== WM_SYSKEYDOWN
)
628 if ( ::TranslateMDISysAccel(GetWinHwnd(GetClientWindow()), pMsg
))
635 // ===========================================================================
637 // ===========================================================================
639 void wxMDIChildFrame::Init()
641 m_needsResize
= TRUE
;
644 bool wxMDIChildFrame::Create(wxMDIParentFrame
*parent
,
646 const wxString
& title
,
650 const wxString
& name
)
653 wxWindowBase::Show(TRUE
); // MDI child frame starts off shown
658 m_windowId
= (int)NewControlId();
662 parent
->AddChild(this);
674 mcs
.szClass
= style
& wxNO_FULL_REPAINT_ON_RESIZE
675 ? wxMDIChildFrameClassNameNoRedraw
676 : wxMDIChildFrameClassName
;
678 mcs
.hOwner
= wxGetInstance();
682 mcs
.x
= CW_USEDEFAULT
;
687 mcs
.y
= CW_USEDEFAULT
;
692 mcs
.cx
= CW_USEDEFAULT
;
697 mcs
.cy
= CW_USEDEFAULT
;
699 DWORD msflags
= WS_OVERLAPPED
| WS_CLIPCHILDREN
| WS_THICKFRAME
| WS_VISIBLE
;
700 if (style
& wxMINIMIZE_BOX
)
701 msflags
|= WS_MINIMIZEBOX
;
702 if (style
& wxMAXIMIZE_BOX
)
703 msflags
|= WS_MAXIMIZEBOX
;
704 if (style
& wxTHICK_FRAME
)
705 msflags
|= WS_THICKFRAME
;
706 if (style
& wxSYSTEM_MENU
)
707 msflags
|= WS_SYSMENU
;
708 if ((style
& wxMINIMIZE
) || (style
& wxICONIZE
))
709 msflags
|= WS_MINIMIZE
;
710 if (style
& wxMAXIMIZE
)
711 msflags
|= WS_MAXIMIZE
;
712 if (style
& wxCAPTION
)
713 msflags
|= WS_CAPTION
;
719 m_hWnd
= (WXHWND
)::SendMessage(GetWinHwnd(parent
->GetClientWindow()),
720 WM_MDICREATE
, 0, (LONG
)(LPSTR
)&mcs
);
723 wxAssociateWinWithHandle((HWND
) GetHWND(), this);
725 // VZ: what's this? an act of piracy?
726 //SetWindowLong(GetHwnd(), 0, (long)this);
728 wxModelessWindows
.Append(this);
733 wxMDIChildFrame::~wxMDIChildFrame()
737 // already delete by DestroyChildren()
738 m_frameToolBar
= NULL
;
739 m_frameStatusBar
= NULL
;
744 // Set the client size (i.e. leave the calculation of borders etc.
746 void wxMDIChildFrame::DoSetClientSize(int width
, int height
)
748 HWND hWnd
= GetHwnd();
751 ::GetClientRect(hWnd
, &rect
);
754 GetWindowRect(hWnd
, &rect2
);
756 // Find the difference between the entire window (title bar and all)
757 // and the client area; add this to the new client size to move the
759 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
760 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
762 if (GetStatusBar() && GetStatusBar()->IsShown())
765 GetStatusBar()->GetSize(&sx
, &sy
);
770 point
.x
= rect2
.left
;
773 // If there's an MDI parent, must subtract the parent's top left corner
774 // since MoveWindow moves relative to the parent
775 wxMDIParentFrame
*mdiParent
= (wxMDIParentFrame
*)GetParent();
776 ::ScreenToClient((HWND
) mdiParent
->GetClientWindow()->GetHWND(), &point
);
778 MoveWindow(hWnd
, point
.x
, point
.y
, actual_width
, actual_height
, (BOOL
)TRUE
);
780 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
781 event
.SetEventObject( this );
782 GetEventHandler()->ProcessEvent(event
);
785 void wxMDIChildFrame::DoGetPosition(int *x
, int *y
) const
788 GetWindowRect(GetHwnd(), &rect
);
793 // Since we now have the absolute screen coords,
794 // if there's a parent we must subtract its top left corner
795 wxMDIParentFrame
*mdiParent
= (wxMDIParentFrame
*)GetParent();
796 ::ScreenToClient((HWND
) mdiParent
->GetClientWindow()->GetHWND(), &point
);
802 void wxMDIChildFrame::InternalSetMenuBar()
804 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
806 // HMENU subMenu = GetSubMenu((HMENU)parent->GetWindowMenu(), 0);
807 HMENU subMenu
= (HMENU
) 0;
808 if (parent
->GetWindowMenu())
809 subMenu
= (HMENU
) parent
->GetWindowMenu()->GetHMenu();
811 InsertWindowMenu(parent
->GetClientWindow(), m_hMenu
, subMenu
);
813 parent
->m_parentFrameActive
= FALSE
;
816 WXHICON
wxMDIChildFrame::GetDefaultIcon() const
818 return (WXHICON
)(wxSTD_MDICHILDFRAME_ICON
? wxSTD_MDICHILDFRAME_ICON
819 : wxDEFAULT_MDICHILDFRAME_ICON
);
822 // ---------------------------------------------------------------------------
824 // ---------------------------------------------------------------------------
826 void wxMDIChildFrame::Maximize(bool maximize
)
828 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
829 if ( parent
&& parent
->GetClientWindow() )
831 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()),
832 maximize
? WM_MDIMAXIMIZE
: WM_MDIRESTORE
,
833 (WPARAM
)GetHwnd(), 0);
837 void wxMDIChildFrame::Restore()
839 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
840 if ( parent
&& parent
->GetClientWindow() )
842 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIRESTORE
,
843 (WPARAM
) GetHwnd(), 0);
847 void wxMDIChildFrame::Activate()
849 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
850 if ( parent
&& parent
->GetClientWindow() )
852 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIACTIVATE
,
853 (WPARAM
) GetHwnd(), 0);
857 // ---------------------------------------------------------------------------
858 // MDI window proc and message handlers
859 // ---------------------------------------------------------------------------
861 long wxMDIChildFrame::MSWWindowProc(WXUINT message
,
866 bool processed
= FALSE
;
874 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
,
877 processed
= HandleCommand(id
, cmd
, (WXHWND
)hwnd
);
881 case WM_GETMINMAXINFO
:
882 processed
= HandleGetMinMaxInfo((MINMAXINFO
*)lParam
);
888 WXHWND hwndAct
, hwndDeact
;
889 UnpackMDIActivate(wParam
, lParam
, &act
, &hwndAct
, &hwndDeact
);
891 processed
= HandleMDIActivate(act
, hwndAct
, hwndDeact
);
896 // must pass WM_MOVE to DefMDIChildProc() to recalculate MDI client
897 // scrollbars if necessary
902 // must pass WM_SIZE to DefMDIChildProc(), otherwise many weird
904 MSWDefWindowProc(message
, wParam
, lParam
);
908 // DefMDIChildProc handles SC_{NEXT/PREV}WINDOW here, so pass it
909 // the message (the base class version does not)
910 return MSWDefWindowProc(message
, wParam
, lParam
);
912 case WM_WINDOWPOSCHANGING
:
913 processed
= HandleWindowPosChanging((LPWINDOWPOS
)lParam
);
918 rc
= wxFrame::MSWWindowProc(message
, wParam
, lParam
);
923 bool wxMDIChildFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND hwnd
)
925 // In case it's e.g. a toolbar.
928 wxWindow
*win
= wxFindWinFromHandle(hwnd
);
930 return win
->MSWCommand(cmd
, id
);
933 if (wxCurrentPopupMenu
)
935 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
936 wxCurrentPopupMenu
= NULL
;
937 if (popupMenu
->MSWCommand(cmd
, id
))
942 if (GetMenuBar() && GetMenuBar()->FindItem(id
))
944 processed
= ProcessCommand(id
);
954 bool wxMDIChildFrame::HandleMDIActivate(long WXUNUSED(activate
),
958 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
964 if ( m_hWnd
== hwndAct
)
967 parent
->m_currentChild
= this;
969 HMENU child_menu
= (HMENU
)GetWinMenu();
972 parent
->m_parentFrameActive
= FALSE
;
974 menuToSet
= child_menu
;
977 else if ( m_hWnd
== hwndDeact
)
979 wxASSERT_MSG( parent
->m_currentChild
== this,
980 wxT("can't deactivate MDI child which wasn't active!") );
983 parent
->m_currentChild
= NULL
;
985 HMENU parent_menu
= (HMENU
)parent
->GetWinMenu();
987 // activate the the parent menu only when there is no other child
988 // that has been activated
989 if ( parent_menu
&& !hwndAct
)
991 parent
->m_parentFrameActive
= TRUE
;
993 menuToSet
= parent_menu
;
998 // we have nothing to do with it
1004 HMENU subMenu
= (HMENU
) 0;
1005 if (parent
->GetWindowMenu())
1006 subMenu
= (HMENU
) parent
->GetWindowMenu()->GetHMenu();
1008 MDISetMenu(parent
->GetClientWindow(), menuToSet
, subMenu
);
1011 wxActivateEvent
event(wxEVT_ACTIVATE
, activated
, m_windowId
);
1012 event
.SetEventObject( this );
1014 ResetWindowStyle((void *)NULL
);
1016 return GetEventHandler()->ProcessEvent(event
);
1019 bool wxMDIChildFrame::HandleWindowPosChanging(void *pos
)
1021 WINDOWPOS
*lpPos
= (WINDOWPOS
*)pos
;
1022 #if defined(__WIN95__)
1023 if (!(lpPos
->flags
& SWP_NOSIZE
))
1026 DWORD dwExStyle
= ::GetWindowLong(GetHwnd(), GWL_EXSTYLE
);
1027 DWORD dwStyle
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1028 if (ResetWindowStyle((void *) & rectClient
) && (dwStyle
& WS_MAXIMIZE
))
1030 ::AdjustWindowRectEx(&rectClient
, dwStyle
, FALSE
, dwExStyle
);
1031 lpPos
->x
= rectClient
.left
;
1032 lpPos
->y
= rectClient
.top
;
1033 lpPos
->cx
= rectClient
.right
- rectClient
.left
;
1034 lpPos
->cy
= rectClient
.bottom
- rectClient
.top
;
1036 wxMDIParentFrame
* pFrameWnd
= (wxMDIParentFrame
*)GetParent();
1037 if (pFrameWnd
&& pFrameWnd
->GetToolBar() && pFrameWnd
->GetToolBar()->IsShown())
1039 pFrameWnd
->GetToolBar()->Refresh();
1047 bool wxMDIChildFrame::HandleGetMinMaxInfo(void *mmInfo
)
1049 MINMAXINFO
*info
= (MINMAXINFO
*)mmInfo
;
1051 // let the default window proc calculate the size of MDI children
1052 // frames because it is based on the size of the MDI client window,
1053 // not on the values specified in wxWindow m_max variables
1054 bool processed
= MSWDefWindowProc(WM_GETMINMAXINFO
, 0, (LPARAM
)mmInfo
) != 0;
1056 // but allow GetSizeHints() to set the min size
1057 if ( m_minWidth
!= -1 )
1059 info
->ptMinTrackSize
.x
= m_minWidth
;
1064 if ( m_minHeight
!= -1 )
1066 info
->ptMinTrackSize
.y
= m_minHeight
;
1074 // ---------------------------------------------------------------------------
1075 // MDI specific message translation/preprocessing
1076 // ---------------------------------------------------------------------------
1078 long wxMDIChildFrame::MSWDefWindowProc(WXUINT message
, WXUINT wParam
, WXLPARAM lParam
)
1080 return DefMDIChildProc(GetHwnd(),
1081 (UINT
)message
, (WPARAM
)wParam
, (LPARAM
)lParam
);
1084 bool wxMDIChildFrame::MSWTranslateMessage(WXMSG
* msg
)
1086 return wxFrame::MSWTranslateMessage(msg
);
1089 // ---------------------------------------------------------------------------
1091 // ---------------------------------------------------------------------------
1093 void wxMDIChildFrame::MSWDestroyWindow()
1095 MSWDetachWindowMenu();
1096 invalidHandle
= GetHwnd();
1098 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
1100 // Must make sure this handle is invalidated (set to NULL) since all sorts
1101 // of things could happen after the child client is destroyed, but before
1102 // the wxFrame is destroyed.
1104 HWND oldHandle
= (HWND
)GetHWND();
1105 SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIDESTROY
,
1106 (WPARAM
)oldHandle
, 0);
1108 if (parent
->GetActiveChild() == (wxMDIChildFrame
*) NULL
)
1109 ResetWindowStyle((void*) NULL
);
1115 ::DestroyMenu((HMENU
) m_hMenu
);
1118 wxRemoveHandleAssociation(this);
1122 // Change the client window's extended style so we don't get a client edge
1123 // style when a child is maximised (a double border looks silly.)
1124 bool wxMDIChildFrame::ResetWindowStyle(void *vrect
)
1126 #if defined(__WIN95__)
1127 RECT
*rect
= (RECT
*)vrect
;
1128 wxMDIParentFrame
* pFrameWnd
= (wxMDIParentFrame
*)GetParent();
1129 wxMDIChildFrame
* pChild
= pFrameWnd
->GetActiveChild();
1130 if (!pChild
|| (pChild
== this))
1132 HWND hwndClient
= GetWinHwnd(pFrameWnd
->GetClientWindow());
1133 DWORD dwStyle
= ::GetWindowLong(hwndClient
, GWL_EXSTYLE
);
1135 // we want to test whether there is a maximized child, so just set
1136 // dwThisStyle to 0 if there is no child at all
1137 DWORD dwThisStyle
= pChild
1138 ? ::GetWindowLong(GetWinHwnd(pChild
), GWL_STYLE
) : 0;
1139 DWORD dwNewStyle
= dwStyle
;
1140 if ( dwThisStyle
& WS_MAXIMIZE
)
1141 dwNewStyle
&= ~(WS_EX_CLIENTEDGE
);
1143 dwNewStyle
|= WS_EX_CLIENTEDGE
;
1145 if (dwStyle
!= dwNewStyle
)
1147 // force update of everything
1148 ::RedrawWindow(hwndClient
, NULL
, NULL
,
1149 RDW_INVALIDATE
| RDW_ALLCHILDREN
);
1150 ::SetWindowLong(hwndClient
, GWL_EXSTYLE
, dwNewStyle
);
1151 ::SetWindowPos(hwndClient
, NULL
, 0, 0, 0, 0,
1152 SWP_FRAMECHANGED
| SWP_NOACTIVATE
|
1153 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOZORDER
|
1156 ::GetClientRect(hwndClient
, rect
);
1166 // ===========================================================================
1167 // wxMDIClientWindow: the window of predefined (by Windows) class which
1168 // contains the child frames
1169 // ===========================================================================
1171 bool wxMDIClientWindow::CreateClient(wxMDIParentFrame
*parent
, long style
)
1173 m_backgroundColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE
);
1175 CLIENTCREATESTRUCT ccs
;
1176 m_windowStyle
= style
;
1179 ccs
.hWindowMenu
= (HMENU
) 0;
1180 if (parent
->GetWindowMenu())
1181 ccs
.hWindowMenu
= (HMENU
) parent
->GetWindowMenu()->GetHMenu();
1182 ccs
.idFirstChild
= wxFIRST_MDI_CHILD
;
1184 DWORD msStyle
= MDIS_ALLCHILDSTYLES
| WS_VISIBLE
| WS_CHILD
|
1185 WS_CLIPCHILDREN
| WS_CLIPSIBLINGS
;
1187 if ( style
& wxHSCROLL
)
1188 msStyle
|= WS_HSCROLL
;
1189 if ( style
& wxVSCROLL
)
1190 msStyle
|= WS_VSCROLL
;
1192 #if defined(__WIN95__)
1193 DWORD exStyle
= WS_EX_CLIENTEDGE
;
1199 m_hWnd
= (WXHWND
)::CreateWindowEx
1209 (LPSTR
)(LPCLIENTCREATESTRUCT
)&ccs
);
1212 wxLogLastError(wxT("CreateWindowEx(MDI client)"));
1217 SubclassWin(m_hWnd
);
1223 // Explicitly call default scroll behaviour
1224 void wxMDIClientWindow::OnScroll(wxScrollEvent
& event
)
1226 // Note: for client windows, the scroll position is not set in
1227 // WM_HSCROLL, WM_VSCROLL, so we can't easily determine what
1228 // scroll position we're at.
1229 // This makes it hard to paint patterns or bitmaps in the background,
1230 // and have the client area scrollable as well.
1232 if ( event
.GetOrientation() == wxHORIZONTAL
)
1233 m_scrollX
= event
.GetPosition(); // Always returns zero!
1235 m_scrollY
= event
.GetPosition(); // Always returns zero!
1240 void wxMDIClientWindow::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1242 // Try to fix a problem whereby if you show an MDI child frame, then reposition the
1243 // client area, you can end up with a non-refreshed portion in the client window
1244 // (see OGL studio sample). So check if the position is changed and if so,
1245 // redraw the MDI child frames.
1247 wxPoint oldPos
= GetPosition();
1249 wxWindow::DoSetSize(x
, y
, width
, height
, sizeFlags
);
1251 wxPoint newPos
= GetPosition();
1253 if ((newPos
.x
!= oldPos
.x
) || (newPos
.y
!= oldPos
.y
))
1257 wxNode
* node
= GetParent()->GetChildren().First();
1260 wxWindow
* child
= (wxWindow
*) node
->Data();
1261 if (child
->IsKindOf(CLASSINFO(wxMDIChildFrame
)))
1263 HWND hWnd
= (HWND
) child
->GetHWND();
1264 ::RedrawWindow(hWnd
, NULL
, NULL
, RDW_FRAME
|RDW_ALLCHILDREN
|RDW_INVALIDATE
);
1266 node
= node
->Next();
1272 void wxMDIChildFrame::OnIdle(wxIdleEvent
& event
)
1274 // MDI child frames get their WM_SIZE when they're constructed but at this
1275 // moment they don't have any children yet so all child windows will be
1276 // positioned incorrectly when they are added later - to fix this, we
1277 // generate an artificial size event here
1278 if ( m_needsResize
)
1280 m_needsResize
= FALSE
; // avoid any possibility of recursion
1288 // ---------------------------------------------------------------------------
1289 // non member functions
1290 // ---------------------------------------------------------------------------
1292 static void MDISetMenu(wxWindow
*win
, HMENU hmenuFrame
, HMENU hmenuWindow
)
1294 ::SendMessage(GetWinHwnd(win
), WM_MDISETMENU
,
1296 (WPARAM
)hmenuFrame
, (LPARAM
)hmenuWindow
1298 0, MAKELPARAM(hmenuFrame
, hmenuWindow
)
1302 // update menu bar of the parent window
1303 wxWindow
*parent
= win
->GetParent();
1304 wxCHECK_RET( parent
, wxT("MDI client without parent frame? weird...") );
1307 ::SendMessage(GetWinHwnd(win
), WM_MDIREFRESHMENU
, 0, 0L);
1310 ::DrawMenuBar(GetWinHwnd(parent
));
1313 static void InsertWindowMenu(wxWindow
*win
, WXHMENU menu
, HMENU subMenu
)
1315 // Try to insert Window menu in front of Help, otherwise append it.
1316 HMENU hmenu
= (HMENU
)menu
;
1320 int N
= GetMenuItemCount(hmenu
);
1321 bool success
= FALSE
;
1322 for ( int i
= 0; i
< N
; i
++ )
1325 int chars
= GetMenuString(hmenu
, i
, buf
, WXSIZEOF(buf
), MF_BYPOSITION
);
1328 wxLogLastError(wxT("GetMenuString"));
1333 if ( wxStripMenuCodes(wxString(buf
)).IsSameAs(_("Help")) )
1336 ::InsertMenu(hmenu
, i
, MF_BYPOSITION
| MF_POPUP
| MF_STRING
,
1337 (UINT
)subMenu
, _("&Window"));
1344 ::AppendMenu(hmenu
, MF_POPUP
, (UINT
)subMenu
, _("&Window"));
1348 MDISetMenu(win
, hmenu
, subMenu
);
1351 static void RemoveWindowMenu(wxWindow
*win
, WXHMENU menu
)
1353 // Try to insert Window menu in front of Help, otherwise append it.
1354 HMENU hmenu
= (HMENU
)menu
;
1355 int N
= GetMenuItemCount(hmenu
);
1356 for ( int i
= 0; i
< N
; i
++ )
1359 int chars
= GetMenuString(hmenu
, i
, buf
, WXSIZEOF(buf
), MF_BYPOSITION
);
1362 wxLogLastError(wxT("GetMenuString"));
1367 if ( wxStripMenuCodes(wxString(buf
)).IsSameAs(_("Window")) )
1369 ::RemoveMenu(hmenu
, i
, MF_BYPOSITION
);
1374 // Does passing 0 for the window menu really work with WM_MDISETMENU?
1375 MDISetMenu(win
, hmenu
, 0);
1378 static void UnpackMDIActivate(WXWPARAM wParam
, WXLPARAM lParam
,
1379 WXWORD
*activate
, WXHWND
*hwndAct
, WXHWND
*hwndDeact
)
1383 *hwndAct
= (WXHWND
)lParam
;
1384 *hwndDeact
= (WXHWND
)wParam
;
1386 *activate
= (WXWORD
)wParam
;
1387 *hwndAct
= (WXHWND
)LOWORD(lParam
);
1388 *hwndDeact
= (WXHWND
)HIWORD(lParam
);
1389 #endif // Win32/Win16