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 // ---------------------------------------------------------------------------
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"
46 #if wxUSE_MDI_ARCHITECTURE && !defined(__WXUNIVERSAL__)
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 wxWindowList wxModelessWindows
; // from dialog.cpp
66 extern wxMenu
*wxCurrentPopupMenu
;
68 extern const wxChar
*wxMDIFrameClassName
; // from app.cpp
69 extern const wxChar
*wxMDIChildFrameClassName
;
70 extern const wxChar
*wxMDIChildFrameClassNameNoRedraw
;
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;
87 static const int IDM_WINDOWPREV
= 4006;
89 // This range gives a maximum of 500 MDI children. Should be enough :-)
90 static const int wxFIRST_MDI_CHILD
= 4100;
91 static const int wxLAST_MDI_CHILD
= 4600;
93 // Status border dimensions
94 static const int wxTHICK_LINE_BORDER
= 3;
95 static const int wxTHICK_LINE_WIDTH
= 1;
97 // ---------------------------------------------------------------------------
99 // ---------------------------------------------------------------------------
101 // set the MDI menus (by sending the WM_MDISETMENU message) and update the menu
102 // of the parent of win (which is supposed to be the MDI client window)
103 static void MDISetMenu(wxWindow
*win
, HMENU hmenuFrame
, HMENU hmenuWindow
);
105 // insert the window menu (subMenu) into menu just before "Help" submenu or at
106 // the very end if not found
107 static void InsertWindowMenu(wxWindow
*win
, WXHMENU menu
, HMENU subMenu
);
109 // Remove the window menu
110 static void RemoveWindowMenu(wxWindow
*win
, WXHMENU menu
);
112 // is this an id of an MDI child?
113 inline bool IsMdiCommandId(int id
)
115 return (id
>= wxFIRST_MDI_CHILD
) && (id
<= wxLAST_MDI_CHILD
);
118 // unpack the parameters of WM_MDIACTIVATE message
119 static void UnpackMDIActivate(WXWPARAM wParam
, WXLPARAM lParam
,
120 WXWORD
*activate
, WXHWND
*hwndAct
, WXHWND
*hwndDeact
);
122 // return the HMENU of the MDI menu
123 static inline HMENU
GetMDIWindowMenu(wxMDIParentFrame
*frame
)
125 wxMenu
*menu
= frame
->GetWindowMenu();
126 return menu
? GetHmenuOf(menu
) : 0;
129 // ===========================================================================
131 // ===========================================================================
133 // ---------------------------------------------------------------------------
135 // ---------------------------------------------------------------------------
137 IMPLEMENT_DYNAMIC_CLASS(wxMDIParentFrame
, wxFrame
)
138 IMPLEMENT_DYNAMIC_CLASS(wxMDIChildFrame
, wxFrame
)
139 IMPLEMENT_DYNAMIC_CLASS(wxMDIClientWindow
, wxWindow
)
141 BEGIN_EVENT_TABLE(wxMDIParentFrame
, wxFrame
)
142 EVT_SIZE(wxMDIParentFrame::OnSize
)
143 EVT_SYS_COLOUR_CHANGED(wxMDIParentFrame::OnSysColourChanged
)
146 BEGIN_EVENT_TABLE(wxMDIChildFrame
, wxFrame
)
147 EVT_IDLE(wxMDIChildFrame::OnIdle
)
150 BEGIN_EVENT_TABLE(wxMDIClientWindow
, wxWindow
)
151 EVT_SCROLL(wxMDIClientWindow::OnScroll
)
154 // ===========================================================================
155 // wxMDIParentFrame: the frame which contains the client window which manages
157 // ===========================================================================
159 wxMDIParentFrame::wxMDIParentFrame()
161 m_clientWindow
= NULL
;
162 m_currentChild
= NULL
;
163 m_windowMenu
= (wxMenu
*) NULL
;
164 m_parentFrameActive
= true;
167 bool wxMDIParentFrame::Create(wxWindow
*parent
,
169 const wxString
& title
,
173 const wxString
& name
)
175 m_clientWindow
= NULL
;
176 m_currentChild
= NULL
;
178 // this style can be used to prevent a window from having the standard MDI
180 if ( style
& wxFRAME_NO_WINDOW_MENU
)
182 m_windowMenu
= (wxMenu
*)NULL
;
184 else // normal case: we have the window menu, so construct it
186 m_windowMenu
= new wxMenu
;
188 m_windowMenu
->Append(IDM_WINDOWCASCADE
, _("&Cascade"));
189 m_windowMenu
->Append(IDM_WINDOWTILEHOR
, _("Tile &Horizontally"));
190 m_windowMenu
->Append(IDM_WINDOWTILEVERT
, _("Tile &Vertically"));
191 m_windowMenu
->AppendSeparator();
192 m_windowMenu
->Append(IDM_WINDOWICONS
, _("&Arrange Icons"));
193 m_windowMenu
->Append(IDM_WINDOWNEXT
, _("&Next"));
194 m_windowMenu
->Append(IDM_WINDOWPREV
, _("&Previous"));
197 m_parentFrameActive
= true;
200 wxTopLevelWindows
.Append(this);
203 m_windowStyle
= style
;
206 parent
->AddChild(this);
211 m_windowId
= NewControlId();
214 WXDWORD msflags
= MSWGetCreateWindowFlags(&exflags
);
216 if ( !wxWindow::MSWCreate(wxMDIFrameClassName
,
225 wxModelessWindows
.Append(this);
227 // unlike (almost?) all other windows, frames are created hidden
233 wxMDIParentFrame::~wxMDIParentFrame()
237 // already delete by DestroyChildren()
238 m_frameToolBar
= NULL
;
239 m_frameStatusBar
= NULL
;
244 m_windowMenu
= (wxMenu
*) NULL
;
247 // the MDI frame menubar is not automatically deleted by Windows unlike for
251 ::DestroyMenu((HMENU
)m_hMenu
);
252 m_hMenu
= (WXHMENU
)NULL
;
255 if ( m_clientWindow
)
257 if ( m_clientWindow
->MSWGetOldWndProc() )
258 m_clientWindow
->UnsubclassWin();
260 m_clientWindow
->SetHWND(0);
261 delete m_clientWindow
;
265 #if wxUSE_MENUS_NATIVE
267 void wxMDIParentFrame::InternalSetMenuBar()
269 m_parentFrameActive
= true;
271 InsertWindowMenu(GetClientWindow(), m_hMenu
, GetMDIWindowMenu(this));
274 #endif // wxUSE_MENUS_NATIVE
276 void wxMDIParentFrame::SetWindowMenu(wxMenu
* menu
)
282 // Remove old window menu
283 RemoveWindowMenu(GetClientWindow(), m_hMenu
);
287 m_windowMenu
= (wxMenu
*) NULL
;
295 InsertWindowMenu(GetClientWindow(), m_hMenu
,
296 GetHmenuOf(m_windowMenu
));
301 void wxMDIParentFrame::OnSize(wxSizeEvent
&)
303 if ( GetClientWindow() )
306 GetClientSize(&width
, &height
);
308 GetClientWindow()->SetSize(0, 0, width
, height
);
312 // Returns the active MDI child window
313 wxMDIChildFrame
*wxMDIParentFrame::GetActiveChild() const
315 HWND hWnd
= (HWND
)::SendMessage(GetWinHwnd(GetClientWindow()),
316 WM_MDIGETACTIVE
, 0, 0L);
320 return (wxMDIChildFrame
*)wxFindWinFromHandle((WXHWND
) hWnd
);
323 // Create the client window class (don't Create the window, just return a new
325 wxMDIClientWindow
*wxMDIParentFrame::OnCreateClient()
327 return new wxMDIClientWindow
;
330 // Responds to colour changes, and passes event on to children.
331 void wxMDIParentFrame::OnSysColourChanged(wxSysColourChangedEvent
& event
)
333 if ( m_clientWindow
)
335 m_clientWindow
->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
));
336 m_clientWindow
->Refresh();
342 WXHICON
wxMDIParentFrame::GetDefaultIcon() const
344 return (WXHICON
)(wxSTD_MDIPARENTFRAME_ICON
? wxSTD_MDIPARENTFRAME_ICON
345 : wxDEFAULT_MDIPARENTFRAME_ICON
);
348 // ---------------------------------------------------------------------------
350 // ---------------------------------------------------------------------------
352 void wxMDIParentFrame::Cascade()
354 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDICASCADE
, 0, 0);
357 // TODO: add a direction argument (hor/vert)
358 void wxMDIParentFrame::Tile()
360 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDITILE
, MDITILE_HORIZONTAL
, 0);
363 void wxMDIParentFrame::ArrangeIcons()
365 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDIICONARRANGE
, 0, 0);
368 void wxMDIParentFrame::ActivateNext()
370 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT
, 0, 0);
373 void wxMDIParentFrame::ActivatePrevious()
375 ::SendMessage(GetWinHwnd(GetClientWindow()), WM_MDINEXT
, 0, 1);
378 // ---------------------------------------------------------------------------
379 // the MDI parent frame window proc
380 // ---------------------------------------------------------------------------
382 long wxMDIParentFrame::MSWWindowProc(WXUINT message
,
387 bool processed
= false;
393 WXWORD state
, minimized
;
395 UnpackActivate(wParam
, lParam
, &state
, &minimized
, &hwnd
);
397 processed
= HandleActivate(state
, minimized
!= 0, hwnd
);
405 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
407 (void)HandleCommand(id
, cmd
, hwnd
);
409 // even if the frame didn't process it, there is no need to try it
410 // once again (i.e. call wxFrame::HandleCommand()) - we just dud it,
411 // so pretend we processed the message anyhow
415 // always pass this message DefFrameProc(), otherwise MDI menu
416 // commands (and sys commands - more surprizingly!) won't work
417 MSWDefWindowProc(message
, wParam
, lParam
);
421 m_clientWindow
= OnCreateClient();
422 // Uses own style for client style
423 if ( !m_clientWindow
->CreateClient(this, GetWindowStyleFlag()) )
425 wxLogMessage(_("Failed to create MDI parent frame."));
436 // we erase background ourselves
444 UnpackMenuSelect(wParam
, lParam
, &item
, &flags
, &hmenu
);
446 if ( m_parentFrameActive
)
448 processed
= HandleMenuSelect(item
, flags
, hmenu
);
450 else if (m_currentChild
)
452 processed
= m_currentChild
->
453 HandleMenuSelect(item
, flags
, hmenu
);
459 // as we don't (usually) resize the MDI client to exactly fit the
460 // client area (we put it below the toolbar, above statusbar &c),
461 // we should not pass this one to DefFrameProc
466 rc
= wxFrame::MSWWindowProc(message
, wParam
, lParam
);
471 bool wxMDIParentFrame::HandleActivate(int state
, bool minimized
, WXHWND activate
)
473 bool processed
= false;
475 if ( wxWindow::HandleActivate(state
, minimized
, activate
) )
481 // If this window is an MDI parent, we must also send an OnActivate message
482 // to the current child.
483 if ( (m_currentChild
!= NULL
) &&
484 ((state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
)) )
486 wxActivateEvent
event(wxEVT_ACTIVATE
, true, m_currentChild
->GetId());
487 event
.SetEventObject( m_currentChild
);
488 if ( m_currentChild
->GetEventHandler()->ProcessEvent(event
) )
495 bool wxMDIParentFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND hwnd
)
497 // In case it's e.g. a toolbar.
500 wxWindow
*win
= wxFindWinFromHandle(hwnd
);
502 return win
->MSWCommand(cmd
, id
);
505 // is it one of standard MDI commands?
511 case IDM_WINDOWCASCADE
:
513 wParam
= MDITILE_SKIPDISABLED
;
516 case IDM_WINDOWTILEHOR
:
517 wParam
|= MDITILE_HORIZONTAL
;
520 case IDM_WINDOWTILEVERT
:
522 wParam
= MDITILE_VERTICAL
;
524 wParam
|= MDITILE_SKIPDISABLED
;
527 case IDM_WINDOWICONS
:
528 msg
= WM_MDIICONARRANGE
;
533 lParam
= 0; // next child
538 lParam
= 1; // previous child
547 ::SendMessage(GetWinHwnd(GetClientWindow()), msg
, wParam
, lParam
);
552 // FIXME VZ: what does this test do??
555 return false; // Get WndProc to call default proc
558 if ( IsMdiCommandId(id
) )
560 wxWindowList::Node
*node
= GetChildren().GetFirst();
563 wxWindow
*child
= node
->GetData();
564 if ( child
->GetHWND() )
566 long childId
= wxGetWindowId(child
->GetHWND());
567 if (childId
== (long)id
)
569 ::SendMessage( GetWinHwnd(GetClientWindow()),
571 (WPARAM
)child
->GetHWND(), 0);
575 node
= node
->GetNext();
578 else if ( m_parentFrameActive
)
580 return ProcessCommand(id
);
582 else if ( m_currentChild
)
584 return m_currentChild
->HandleCommand(id
, cmd
, hwnd
);
588 // this shouldn't happen because it means that our messages are being
589 // lost (they're not sent to the parent frame nor to the children)
590 wxFAIL_MSG(wxT("MDI parent frame is not active, yet there is no active MDI child?"));
596 long wxMDIParentFrame::MSWDefWindowProc(WXUINT message
,
601 if ( GetClientWindow() )
602 clientWnd
= GetClientWindow()->GetHWND();
606 return DefFrameProc(GetHwnd(), (HWND
)clientWnd
, message
, wParam
, lParam
);
609 bool wxMDIParentFrame::MSWTranslateMessage(WXMSG
* msg
)
611 MSG
*pMsg
= (MSG
*)msg
;
613 // first let the current child get it
614 if ( m_currentChild
&& m_currentChild
->GetHWND() &&
615 m_currentChild
->MSWTranslateMessage(msg
) )
620 // then try out accel table (will also check the menu accels)
621 if ( wxFrame::MSWTranslateMessage(msg
) )
626 // finally, check for MDI specific built in accel keys
627 if ( pMsg
->message
== WM_KEYDOWN
|| pMsg
->message
== WM_SYSKEYDOWN
)
629 if ( ::TranslateMDISysAccel(GetWinHwnd(GetClientWindow()), pMsg
))
636 // ===========================================================================
638 // ===========================================================================
640 void wxMDIChildFrame::Init()
642 m_needsResize
= true;
645 bool wxMDIChildFrame::Create(wxMDIParentFrame
*parent
,
647 const wxString
& title
,
651 const wxString
& name
)
654 wxWindowBase::Show(true); // MDI child frame starts off shown
659 m_windowId
= (int)NewControlId();
663 parent
->AddChild(this);
673 mcs
.szClass
= style
& wxNO_FULL_REPAINT_ON_RESIZE
674 ? wxMDIChildFrameClassNameNoRedraw
675 : wxMDIChildFrameClassName
;
677 mcs
.hOwner
= wxGetInstance();
681 mcs
.x
= CW_USEDEFAULT
;
686 mcs
.y
= CW_USEDEFAULT
;
691 mcs
.cx
= CW_USEDEFAULT
;
696 mcs
.cy
= CW_USEDEFAULT
;
698 DWORD msflags
= WS_OVERLAPPED
| WS_CLIPCHILDREN
| WS_THICKFRAME
| WS_VISIBLE
;
699 if (style
& wxMINIMIZE_BOX
)
700 msflags
|= WS_MINIMIZEBOX
;
701 if (style
& wxMAXIMIZE_BOX
)
702 msflags
|= WS_MAXIMIZEBOX
;
703 if (style
& wxTHICK_FRAME
)
704 msflags
|= WS_THICKFRAME
;
705 if (style
& wxSYSTEM_MENU
)
706 msflags
|= WS_SYSMENU
;
707 if ((style
& wxMINIMIZE
) || (style
& wxICONIZE
))
708 msflags
|= WS_MINIMIZE
;
709 if (style
& wxMAXIMIZE
)
710 msflags
|= WS_MAXIMIZE
;
711 if (style
& wxCAPTION
)
712 msflags
|= WS_CAPTION
;
718 wxWindowCreationHook
hook(this);
720 m_hWnd
= (WXHWND
)::SendMessage(GetWinHwnd(parent
->GetClientWindow()),
721 WM_MDICREATE
, 0, (LONG
)(LPSTR
)&mcs
);
723 wxAssociateWinWithHandle((HWND
) GetHWND(), this);
725 wxModelessWindows
.Append(this);
730 wxMDIChildFrame::~wxMDIChildFrame()
734 // already deleted by DestroyChildren()
735 m_frameToolBar
= NULL
;
736 m_frameStatusBar
= NULL
;
738 RemoveWindowMenu(NULL
, m_hMenu
);
743 // Set the client size (i.e. leave the calculation of borders etc.
745 void wxMDIChildFrame::DoSetClientSize(int width
, int height
)
747 HWND hWnd
= GetHwnd();
750 ::GetClientRect(hWnd
, &rect
);
753 GetWindowRect(hWnd
, &rect2
);
755 // Find the difference between the entire window (title bar and all)
756 // and the client area; add this to the new client size to move the
758 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
759 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
761 if (GetStatusBar() && GetStatusBar()->IsShown())
764 GetStatusBar()->GetSize(&sx
, &sy
);
769 point
.x
= rect2
.left
;
772 // If there's an MDI parent, must subtract the parent's top left corner
773 // since MoveWindow moves relative to the parent
774 wxMDIParentFrame
*mdiParent
= (wxMDIParentFrame
*)GetParent();
775 ::ScreenToClient((HWND
) mdiParent
->GetClientWindow()->GetHWND(), &point
);
777 MoveWindow(hWnd
, point
.x
, point
.y
, actual_width
, actual_height
, (BOOL
)true);
779 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
780 event
.SetEventObject( this );
781 GetEventHandler()->ProcessEvent(event
);
784 void wxMDIChildFrame::DoGetPosition(int *x
, int *y
) const
787 GetWindowRect(GetHwnd(), &rect
);
792 // Since we now have the absolute screen coords,
793 // if there's a parent we must subtract its top left corner
794 wxMDIParentFrame
*mdiParent
= (wxMDIParentFrame
*)GetParent();
795 ::ScreenToClient((HWND
) mdiParent
->GetClientWindow()->GetHWND(), &point
);
801 void wxMDIChildFrame::InternalSetMenuBar()
803 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
805 InsertWindowMenu(parent
->GetClientWindow(),
806 m_hMenu
, GetMDIWindowMenu(parent
));
808 parent
->m_parentFrameActive
= false;
811 WXHICON
wxMDIChildFrame::GetDefaultIcon() const
813 return (WXHICON
)(wxSTD_MDICHILDFRAME_ICON
? wxSTD_MDICHILDFRAME_ICON
814 : wxDEFAULT_MDICHILDFRAME_ICON
);
817 // ---------------------------------------------------------------------------
819 // ---------------------------------------------------------------------------
821 void wxMDIChildFrame::Maximize(bool maximize
)
823 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
824 if ( parent
&& parent
->GetClientWindow() )
826 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()),
827 maximize
? WM_MDIMAXIMIZE
: WM_MDIRESTORE
,
828 (WPARAM
)GetHwnd(), 0);
832 void wxMDIChildFrame::Restore()
834 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
835 if ( parent
&& parent
->GetClientWindow() )
837 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIRESTORE
,
838 (WPARAM
) GetHwnd(), 0);
842 void wxMDIChildFrame::Activate()
844 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
845 if ( parent
&& parent
->GetClientWindow() )
847 ::SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIACTIVATE
,
848 (WPARAM
) GetHwnd(), 0);
852 // ---------------------------------------------------------------------------
853 // MDI window proc and message handlers
854 // ---------------------------------------------------------------------------
856 long wxMDIChildFrame::MSWWindowProc(WXUINT message
,
861 bool processed
= false;
869 UnpackCommand((WXWPARAM
)wParam
, (WXLPARAM
)lParam
,
872 processed
= HandleCommand(id
, cmd
, (WXHWND
)hwnd
);
876 case WM_GETMINMAXINFO
:
877 processed
= HandleGetMinMaxInfo((MINMAXINFO
*)lParam
);
883 WXHWND hwndAct
, hwndDeact
;
884 UnpackMDIActivate(wParam
, lParam
, &act
, &hwndAct
, &hwndDeact
);
886 processed
= HandleMDIActivate(act
, hwndAct
, hwndDeact
);
891 // must pass WM_MOVE to DefMDIChildProc() to recalculate MDI client
892 // scrollbars if necessary
897 // must pass WM_SIZE to DefMDIChildProc(), otherwise many weird
899 MSWDefWindowProc(message
, wParam
, lParam
);
903 // DefMDIChildProc handles SC_{NEXT/PREV}WINDOW here, so pass it
904 // the message (the base class version does not)
905 return MSWDefWindowProc(message
, wParam
, lParam
);
907 case WM_WINDOWPOSCHANGING
:
908 processed
= HandleWindowPosChanging((LPWINDOWPOS
)lParam
);
913 rc
= wxFrame::MSWWindowProc(message
, wParam
, lParam
);
918 bool wxMDIChildFrame::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND hwnd
)
920 // In case it's e.g. a toolbar.
923 wxWindow
*win
= wxFindWinFromHandle(hwnd
);
925 return win
->MSWCommand(cmd
, id
);
928 if (wxCurrentPopupMenu
)
930 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
931 wxCurrentPopupMenu
= NULL
;
932 if (popupMenu
->MSWCommand(cmd
, id
))
937 if (GetMenuBar() && GetMenuBar()->FindItem(id
))
939 processed
= ProcessCommand(id
);
949 bool wxMDIChildFrame::HandleMDIActivate(long WXUNUSED(activate
),
953 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
959 if ( m_hWnd
== hwndAct
)
962 parent
->m_currentChild
= this;
964 HMENU child_menu
= (HMENU
)GetWinMenu();
967 parent
->m_parentFrameActive
= false;
969 menuToSet
= child_menu
;
972 else if ( m_hWnd
== hwndDeact
)
974 wxASSERT_MSG( parent
->m_currentChild
== this,
975 wxT("can't deactivate MDI child which wasn't active!") );
978 parent
->m_currentChild
= NULL
;
980 HMENU parent_menu
= (HMENU
)parent
->GetWinMenu();
982 // activate the the parent menu only when there is no other child
983 // that has been activated
984 if ( parent_menu
&& !hwndAct
)
986 parent
->m_parentFrameActive
= true;
988 menuToSet
= parent_menu
;
993 // we have nothing to do with it
999 MDISetMenu(parent
->GetClientWindow(),
1000 menuToSet
, GetMDIWindowMenu(parent
));
1003 wxActivateEvent
event(wxEVT_ACTIVATE
, activated
, m_windowId
);
1004 event
.SetEventObject( this );
1006 ResetWindowStyle((void *)NULL
);
1008 return GetEventHandler()->ProcessEvent(event
);
1011 bool wxMDIChildFrame::HandleWindowPosChanging(void *pos
)
1013 WINDOWPOS
*lpPos
= (WINDOWPOS
*)pos
;
1014 #if defined(__WIN95__)
1015 if (!(lpPos
->flags
& SWP_NOSIZE
))
1018 DWORD dwExStyle
= ::GetWindowLong(GetHwnd(), GWL_EXSTYLE
);
1019 DWORD dwStyle
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1020 if (ResetWindowStyle((void *) & rectClient
) && (dwStyle
& WS_MAXIMIZE
))
1022 ::AdjustWindowRectEx(&rectClient
, dwStyle
, false, dwExStyle
);
1023 lpPos
->x
= rectClient
.left
;
1024 lpPos
->y
= rectClient
.top
;
1025 lpPos
->cx
= rectClient
.right
- rectClient
.left
;
1026 lpPos
->cy
= rectClient
.bottom
- rectClient
.top
;
1028 wxMDIParentFrame
* pFrameWnd
= (wxMDIParentFrame
*)GetParent();
1029 if (pFrameWnd
&& pFrameWnd
->GetToolBar() && pFrameWnd
->GetToolBar()->IsShown())
1031 pFrameWnd
->GetToolBar()->Refresh();
1039 bool wxMDIChildFrame::HandleGetMinMaxInfo(void *mmInfo
)
1041 MINMAXINFO
*info
= (MINMAXINFO
*)mmInfo
;
1043 // let the default window proc calculate the size of MDI children
1044 // frames because it is based on the size of the MDI client window,
1045 // not on the values specified in wxWindow m_max variables
1046 bool processed
= MSWDefWindowProc(WM_GETMINMAXINFO
, 0, (LPARAM
)mmInfo
) != 0;
1048 int minWidth
= GetMinWidth(),
1049 minHeight
= GetMinHeight();
1051 // but allow GetSizeHints() to set the min size
1052 if ( minWidth
!= -1 )
1054 info
->ptMinTrackSize
.x
= minWidth
;
1059 if ( minHeight
!= -1 )
1061 info
->ptMinTrackSize
.y
= minHeight
;
1069 // ---------------------------------------------------------------------------
1070 // MDI specific message translation/preprocessing
1071 // ---------------------------------------------------------------------------
1073 long wxMDIChildFrame::MSWDefWindowProc(WXUINT message
, WXUINT wParam
, WXLPARAM lParam
)
1075 return DefMDIChildProc(GetHwnd(),
1076 (UINT
)message
, (WPARAM
)wParam
, (LPARAM
)lParam
);
1079 bool wxMDIChildFrame::MSWTranslateMessage(WXMSG
* msg
)
1081 return wxFrame::MSWTranslateMessage(msg
);
1084 // ---------------------------------------------------------------------------
1086 // ---------------------------------------------------------------------------
1088 void wxMDIChildFrame::MSWDestroyWindow()
1090 invalidHandle
= GetHwnd();
1092 wxMDIParentFrame
*parent
= (wxMDIParentFrame
*)GetParent();
1094 // Must make sure this handle is invalidated (set to NULL) since all sorts
1095 // of things could happen after the child client is destroyed, but before
1096 // the wxFrame is destroyed.
1098 HWND oldHandle
= (HWND
)GetHWND();
1099 SendMessage(GetWinHwnd(parent
->GetClientWindow()), WM_MDIDESTROY
,
1100 (WPARAM
)oldHandle
, 0);
1102 if (parent
->GetActiveChild() == (wxMDIChildFrame
*) NULL
)
1103 ResetWindowStyle((void*) NULL
);
1109 ::DestroyMenu((HMENU
) m_hMenu
);
1112 wxRemoveHandleAssociation(this);
1116 // Change the client window's extended style so we don't get a client edge
1117 // style when a child is maximised (a double border looks silly.)
1118 bool wxMDIChildFrame::ResetWindowStyle(void *vrect
)
1120 #if defined(__WIN95__)
1121 RECT
*rect
= (RECT
*)vrect
;
1122 wxMDIParentFrame
* pFrameWnd
= (wxMDIParentFrame
*)GetParent();
1123 wxMDIChildFrame
* pChild
= pFrameWnd
->GetActiveChild();
1124 if (!pChild
|| (pChild
== this))
1126 HWND hwndClient
= GetWinHwnd(pFrameWnd
->GetClientWindow());
1127 DWORD dwStyle
= ::GetWindowLong(hwndClient
, GWL_EXSTYLE
);
1129 // we want to test whether there is a maximized child, so just set
1130 // dwThisStyle to 0 if there is no child at all
1131 DWORD dwThisStyle
= pChild
1132 ? ::GetWindowLong(GetWinHwnd(pChild
), GWL_STYLE
) : 0;
1133 DWORD dwNewStyle
= dwStyle
;
1134 if ( dwThisStyle
& WS_MAXIMIZE
)
1135 dwNewStyle
&= ~(WS_EX_CLIENTEDGE
);
1137 dwNewStyle
|= WS_EX_CLIENTEDGE
;
1139 if (dwStyle
!= dwNewStyle
)
1141 // force update of everything
1142 ::RedrawWindow(hwndClient
, NULL
, NULL
,
1143 RDW_INVALIDATE
| RDW_ALLCHILDREN
);
1144 ::SetWindowLong(hwndClient
, GWL_EXSTYLE
, dwNewStyle
);
1145 ::SetWindowPos(hwndClient
, NULL
, 0, 0, 0, 0,
1146 SWP_FRAMECHANGED
| SWP_NOACTIVATE
|
1147 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOZORDER
|
1150 ::GetClientRect(hwndClient
, rect
);
1160 // ===========================================================================
1161 // wxMDIClientWindow: the window of predefined (by Windows) class which
1162 // contains the child frames
1163 // ===========================================================================
1165 bool wxMDIClientWindow::CreateClient(wxMDIParentFrame
*parent
, long style
)
1167 m_backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE
);
1169 CLIENTCREATESTRUCT ccs
;
1170 m_windowStyle
= style
;
1173 ccs
.hWindowMenu
= GetMDIWindowMenu(parent
);
1174 ccs
.idFirstChild
= wxFIRST_MDI_CHILD
;
1176 DWORD msStyle
= MDIS_ALLCHILDSTYLES
| WS_VISIBLE
| WS_CHILD
|
1177 WS_CLIPCHILDREN
| WS_CLIPSIBLINGS
;
1179 if ( style
& wxHSCROLL
)
1180 msStyle
|= WS_HSCROLL
;
1181 if ( style
& wxVSCROLL
)
1182 msStyle
|= WS_VSCROLL
;
1184 #if defined(__WIN95__)
1185 DWORD exStyle
= WS_EX_CLIENTEDGE
;
1190 wxWindowCreationHook
hook(this);
1191 m_hWnd
= (WXHWND
)::CreateWindowEx
1201 (LPSTR
)(LPCLIENTCREATESTRUCT
)&ccs
);
1204 wxLogLastError(wxT("CreateWindowEx(MDI client)"));
1209 SubclassWin(m_hWnd
);
1214 // Explicitly call default scroll behaviour
1215 void wxMDIClientWindow::OnScroll(wxScrollEvent
& event
)
1217 // Note: for client windows, the scroll position is not set in
1218 // WM_HSCROLL, WM_VSCROLL, so we can't easily determine what
1219 // scroll position we're at.
1220 // This makes it hard to paint patterns or bitmaps in the background,
1221 // and have the client area scrollable as well.
1223 if ( event
.GetOrientation() == wxHORIZONTAL
)
1224 m_scrollX
= event
.GetPosition(); // Always returns zero!
1226 m_scrollY
= event
.GetPosition(); // Always returns zero!
1231 void wxMDIClientWindow::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1233 // Try to fix a problem whereby if you show an MDI child frame, then reposition the
1234 // client area, you can end up with a non-refreshed portion in the client window
1235 // (see OGL studio sample). So check if the position is changed and if so,
1236 // redraw the MDI child frames.
1238 wxPoint oldPos
= GetPosition();
1240 wxWindow::DoSetSize(x
, y
, width
, height
, sizeFlags
);
1242 wxPoint newPos
= GetPosition();
1244 if ((newPos
.x
!= oldPos
.x
) || (newPos
.y
!= oldPos
.y
))
1248 wxWindowList::Node
*node
= GetParent()->GetChildren().GetFirst();
1251 wxWindow
*child
= node
->GetData();
1252 if (child
->IsKindOf(CLASSINFO(wxMDIChildFrame
)))
1254 ::RedrawWindow(GetHwndOf(child
),
1261 node
= node
->GetNext();
1267 void wxMDIChildFrame::OnIdle(wxIdleEvent
& event
)
1269 // MDI child frames get their WM_SIZE when they're constructed but at this
1270 // moment they don't have any children yet so all child windows will be
1271 // positioned incorrectly when they are added later - to fix this, we
1272 // generate an artificial size event here
1273 if ( m_needsResize
)
1275 m_needsResize
= false; // avoid any possibility of recursion
1283 // ---------------------------------------------------------------------------
1284 // non member functions
1285 // ---------------------------------------------------------------------------
1287 static void MDISetMenu(wxWindow
*win
, HMENU hmenuFrame
, HMENU hmenuWindow
)
1289 ::SendMessage(GetWinHwnd(win
), WM_MDISETMENU
,
1291 (WPARAM
)hmenuFrame
, (LPARAM
)hmenuWindow
1293 0, MAKELPARAM(hmenuFrame
, hmenuWindow
)
1297 // update menu bar of the parent window
1298 wxWindow
*parent
= win
->GetParent();
1299 wxCHECK_RET( parent
, wxT("MDI client without parent frame? weird...") );
1302 ::SendMessage(GetWinHwnd(win
), WM_MDIREFRESHMENU
, 0, 0L);
1305 ::DrawMenuBar(GetWinHwnd(parent
));
1308 static void InsertWindowMenu(wxWindow
*win
, WXHMENU menu
, HMENU subMenu
)
1310 // Try to insert Window menu in front of Help, otherwise append it.
1311 HMENU hmenu
= (HMENU
)menu
;
1315 int N
= GetMenuItemCount(hmenu
);
1316 bool success
= false;
1317 for ( int i
= 0; i
< N
; i
++ )
1320 int chars
= GetMenuString(hmenu
, i
, buf
, WXSIZEOF(buf
), MF_BYPOSITION
);
1323 wxLogLastError(wxT("GetMenuString"));
1328 if ( wxStripMenuCodes(wxString(buf
)).IsSameAs(_("Help")) )
1331 ::InsertMenu(hmenu
, i
, MF_BYPOSITION
| MF_POPUP
| MF_STRING
,
1332 (UINT
)subMenu
, _("&Window"));
1339 ::AppendMenu(hmenu
, MF_POPUP
, (UINT
)subMenu
, _("&Window"));
1343 MDISetMenu(win
, hmenu
, subMenu
);
1346 static void RemoveWindowMenu(wxWindow
*win
, WXHMENU menu
)
1348 HMENU hMenu
= (HMENU
)menu
;
1354 int N
= ::GetMenuItemCount(hMenu
);
1355 for ( int i
= 0; i
< N
; i
++ )
1357 if ( !::GetMenuString(hMenu
, i
, buf
, WXSIZEOF(buf
), MF_BYPOSITION
) )
1359 // Ignore successful read of menu string with length 0 which
1360 // occurs, for example, for a maximized MDI childs system menu
1361 if ( ::GetLastError() != 0 )
1363 wxLogLastError(wxT("GetMenuString"));
1369 if ( wxStrcmp(buf
, _("&Window")) == 0 )
1371 if ( !::RemoveMenu(hMenu
, i
, MF_BYPOSITION
) )
1373 wxLogLastError(wxT("RemoveMenu"));
1383 // we don't change the windows menu, but we update the main one
1384 MDISetMenu(win
, hMenu
, NULL
);
1388 static void UnpackMDIActivate(WXWPARAM wParam
, WXLPARAM lParam
,
1389 WXWORD
*activate
, WXHWND
*hwndAct
, WXHWND
*hwndDeact
)
1393 *hwndAct
= (WXHWND
)lParam
;
1394 *hwndDeact
= (WXHWND
)wParam
;
1396 *activate
= (WXWORD
)wParam
;
1397 *hwndAct
= (WXHWND
)LOWORD(lParam
);
1398 *hwndDeact
= (WXHWND
)HIWORD(lParam
);
1399 #endif // Win32/Win16
1403 // wxUSE_MDI_ARCHITECTURE && !defined(__WXUNIVERSAL__)