1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: MDI (Multiple Document Interface) classes
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
17 extern WXDLLEXPORT_DATA(const wxChar
) wxStatusLineNameStr
[];
19 class WXDLLEXPORT wxMDIClientWindow
;
20 class WXDLLEXPORT wxMDIChildFrame
;
22 // ---------------------------------------------------------------------------
24 // ---------------------------------------------------------------------------
26 class WXDLLEXPORT wxMDIParentFrame
: public wxFrame
30 wxMDIParentFrame(wxWindow
*parent
,
32 const wxString
& title
,
33 const wxPoint
& pos
= wxDefaultPosition
,
34 const wxSize
& size
= wxDefaultSize
,
35 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
36 const wxString
& name
= wxFrameNameStr
)
38 Create(parent
, id
, title
, pos
, size
, style
, name
);
41 virtual ~wxMDIParentFrame();
43 bool Create(wxWindow
*parent
,
45 const wxString
& title
,
46 const wxPoint
& pos
= wxDefaultPosition
,
47 const wxSize
& size
= wxDefaultSize
,
48 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
49 const wxString
& name
= wxFrameNameStr
);
54 // Get the active MDI child window (Windows only)
55 wxMDIChildFrame
*GetActiveChild() const;
57 // Get the client window
58 wxMDIClientWindow
*GetClientWindow() const { return m_clientWindow
; }
60 // Create the client window class (don't Create the window,
61 // just return a new class)
62 virtual wxMDIClientWindow
*OnCreateClient(void);
65 wxMenu
* GetWindowMenu() const { return m_windowMenu
; };
66 void SetWindowMenu(wxMenu
* menu
) ;
67 virtual void DoMenuUpdates(wxMenu
* menu
= NULL
);
71 virtual void Cascade();
72 virtual void Tile(wxOrientation orient
= wxHORIZONTAL
);
73 virtual void ArrangeIcons();
74 virtual void ActivateNext();
75 virtual void ActivatePrevious();
80 // Responds to colour changes
81 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
83 void OnSize(wxSizeEvent
& event
);
84 void OnIconized(wxIconizeEvent
& event
);
86 bool HandleActivate(int state
, bool minimized
, WXHWND activate
);
87 bool HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
);
89 // override window proc for MDI-specific message processing
90 virtual WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
92 virtual WXLRESULT
MSWDefWindowProc(WXUINT
, WXWPARAM
, WXLPARAM
);
93 virtual bool MSWTranslateMessage(WXMSG
* msg
);
96 #if wxUSE_MENUS_NATIVE
97 virtual void InternalSetMenuBar();
98 #endif // wxUSE_MENUS_NATIVE
100 virtual WXHICON
GetDefaultIcon() const;
102 // set the size of the MDI client window to match the frame size
103 void UpdateClientSize();
106 wxMDIClientWindow
* m_clientWindow
;
107 wxMDIChildFrame
* m_currentChild
;
108 wxMenu
* m_windowMenu
;
110 // true if MDI Frame is intercepting commands, not child
111 bool m_parentFrameActive
;
114 friend class WXDLLEXPORT wxMDIChildFrame
;
116 DECLARE_EVENT_TABLE()
117 DECLARE_DYNAMIC_CLASS(wxMDIParentFrame
)
118 DECLARE_NO_COPY_CLASS(wxMDIParentFrame
)
121 // ---------------------------------------------------------------------------
123 // ---------------------------------------------------------------------------
125 class WXDLLEXPORT wxMDIChildFrame
: public wxFrame
128 wxMDIChildFrame() { Init(); }
129 wxMDIChildFrame(wxMDIParentFrame
*parent
,
131 const wxString
& title
,
132 const wxPoint
& pos
= wxDefaultPosition
,
133 const wxSize
& size
= wxDefaultSize
,
134 long style
= wxDEFAULT_FRAME_STYLE
,
135 const wxString
& name
= wxFrameNameStr
)
139 Create(parent
, id
, title
, pos
, size
, style
, name
);
142 virtual ~wxMDIChildFrame();
144 bool Create(wxMDIParentFrame
*parent
,
146 const wxString
& title
,
147 const wxPoint
& pos
= wxDefaultPosition
,
148 const wxSize
& size
= wxDefaultSize
,
149 long style
= wxDEFAULT_FRAME_STYLE
,
150 const wxString
& name
= wxFrameNameStr
);
152 virtual bool IsTopLevel() const { return false; }
155 virtual void Maximize(bool maximize
= true);
156 virtual void Restore();
157 virtual void Activate();
159 // Implementation only from now on
160 // -------------------------------
163 bool HandleMDIActivate(long bActivate
, WXHWND
, WXHWND
);
164 bool HandleWindowPosChanging(void *lpPos
);
165 bool HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
);
166 bool HandleGetMinMaxInfo(void *mmInfo
);
168 virtual WXLRESULT
MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
169 virtual WXLRESULT
MSWDefWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
170 virtual bool MSWTranslateMessage(WXMSG
*msg
);
172 virtual void MSWDestroyWindow();
174 bool ResetWindowStyle(void *vrect
);
176 void OnIdle(wxIdleEvent
& event
);
178 virtual bool Show(bool show
= true);
181 virtual void DoGetScreenPosition(int *x
, int *y
) const;
182 virtual void DoGetPosition(int *x
, int *y
) const;
183 virtual void DoSetClientSize(int width
, int height
);
184 virtual void InternalSetMenuBar();
185 virtual bool IsMDIChild() const { return true; }
186 virtual void DetachMenuBar();
188 virtual WXHICON
GetDefaultIcon() const;
190 // common part of all ctors
194 bool m_needsInitialShow
; // Show must be called in idle time after Creation
195 bool m_needsResize
; // flag which tells us to artificially resize the frame
197 DECLARE_EVENT_TABLE()
198 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMDIChildFrame
)
201 // ---------------------------------------------------------------------------
203 // ---------------------------------------------------------------------------
205 class WXDLLEXPORT wxMDIClientWindow
: public wxWindow
208 wxMDIClientWindow() { Init(); }
209 wxMDIClientWindow(wxMDIParentFrame
*parent
, long style
= 0)
213 CreateClient(parent
, style
);
216 // Note: this is virtual, to allow overridden behaviour.
217 virtual bool CreateClient(wxMDIParentFrame
*parent
,
218 long style
= wxVSCROLL
| wxHSCROLL
);
220 // Explicitly call default scroll behaviour
221 void OnScroll(wxScrollEvent
& event
);
224 virtual void DoSetSize(int x
, int y
,
225 int width
, int height
,
226 int sizeFlags
= wxSIZE_AUTO
);
228 void Init() { m_scrollX
= m_scrollY
= 0; }
230 int m_scrollX
, m_scrollY
;
233 DECLARE_EVENT_TABLE()
234 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMDIClientWindow
)