1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/mdig.h
3 // Purpose: Generic MDI (Multiple Document Interface) classes
4 // Author: Hans Van Leemputten
8 // Copyright: (c) Hans Van Leemputten
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
21 #include "wx/notebook.h"
23 extern WXDLLEXPORT_DATA(const wxChar
) wxStatusLineNameStr
[];
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 class WXDLLIMPEXP_FWD_CORE wxGenericMDIParentFrame
;
31 class WXDLLIMPEXP_FWD_CORE wxGenericMDIClientWindow
;
32 class WXDLLIMPEXP_FWD_CORE wxGenericMDIChildFrame
;
34 //-----------------------------------------------------------------------------
35 // wxGenericMDIParentFrame
36 //-----------------------------------------------------------------------------
38 class WXDLLEXPORT wxGenericMDIParentFrame
: public wxFrame
41 wxGenericMDIParentFrame();
42 wxGenericMDIParentFrame(wxWindow
*parent
,
44 const wxString
& title
,
45 const wxPoint
& pos
= wxDefaultPosition
,
46 const wxSize
& size
= wxDefaultSize
,
47 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
48 const wxString
& name
= wxFrameNameStr
);
50 virtual ~wxGenericMDIParentFrame();
51 bool Create( wxWindow
*parent
,
53 const wxString
& title
,
54 const wxPoint
& pos
= wxDefaultPosition
,
55 const wxSize
& size
= wxDefaultSize
,
56 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
57 const wxString
& name
= wxFrameNameStr
);
60 wxMenu
* GetWindowMenu() const { return m_pWindowMenu
; };
61 void SetWindowMenu(wxMenu
* pMenu
);
63 virtual void SetMenuBar(wxMenuBar
*pMenuBar
);
66 void SetChildMenuBar(wxGenericMDIChildFrame
*pChild
);
68 virtual bool ProcessEvent(wxEvent
& event
);
70 wxGenericMDIChildFrame
*GetActiveChild() const;
71 inline void SetActiveChild(wxGenericMDIChildFrame
* pChildFrame
);
73 wxGenericMDIClientWindow
*GetClientWindow() const;
74 virtual wxGenericMDIClientWindow
*OnCreateClient();
76 virtual void Cascade() { /* Has no effect */ }
77 virtual void Tile(wxOrientation
WXUNUSED(orient
) = wxHORIZONTAL
) { }
78 virtual void ArrangeIcons() { /* Has no effect */ }
79 virtual void ActivateNext();
80 virtual void ActivatePrevious();
83 wxGenericMDIClientWindow
*m_pClientWindow
;
84 wxGenericMDIChildFrame
*m_pActiveChild
;
86 wxMenu
*m_pWindowMenu
;
87 wxMenuBar
*m_pMyMenuBar
;
94 void RemoveWindowMenu(wxMenuBar
*pMenuBar
);
95 void AddWindowMenu(wxMenuBar
*pMenuBar
);
97 void DoHandleMenu(wxCommandEvent
&event
);
100 virtual void DoGetClientSize(int *width
, int *height
) const;
103 DECLARE_EVENT_TABLE()
104 DECLARE_DYNAMIC_CLASS(wxGenericMDIParentFrame
)
107 //-----------------------------------------------------------------------------
108 // wxGenericMDIChildFrame
109 //-----------------------------------------------------------------------------
111 class WXDLLEXPORT wxGenericMDIChildFrame
: public wxPanel
114 wxGenericMDIChildFrame();
115 wxGenericMDIChildFrame( wxGenericMDIParentFrame
*parent
,
117 const wxString
& title
,
118 const wxPoint
& pos
= wxDefaultPosition
,
119 const wxSize
& size
= wxDefaultSize
,
120 long style
= wxDEFAULT_FRAME_STYLE
,
121 const wxString
& name
= wxFrameNameStr
);
123 virtual ~wxGenericMDIChildFrame();
124 bool Create( wxGenericMDIParentFrame
*parent
,
126 const wxString
& title
,
127 const wxPoint
& pos
= wxDefaultPosition
,
128 const wxSize
& size
= wxDefaultSize
,
129 long style
= wxDEFAULT_FRAME_STYLE
,
130 const wxString
& name
= wxFrameNameStr
);
133 virtual void SetMenuBar( wxMenuBar
*menu_bar
);
134 virtual wxMenuBar
*GetMenuBar() const;
135 #endif // wxUSE_MENUS
137 virtual void SetTitle(const wxString
& title
);
138 virtual wxString
GetTitle() const;
140 virtual void Activate();
144 virtual wxStatusBar
* CreateStatusBar( int WXUNUSED(number
) = 1,
145 long WXUNUSED(style
) = 1,
146 wxWindowID
WXUNUSED(winid
) = 1,
147 const wxString
& WXUNUSED(name
) = wxEmptyString
)
148 { return (wxStatusBar
*)NULL
; }
150 virtual wxStatusBar
*GetStatusBar() const { return (wxStatusBar
*)NULL
; }
151 virtual void SetStatusText( const wxString
&WXUNUSED(text
), int WXUNUSED(number
)=0 ) {}
152 virtual void SetStatusWidths( int WXUNUSED(n
), const int WXUNUSED(widths_field
)[] ) {}
156 virtual void DoSetSizeHints( int WXUNUSED(minW
),
158 int WXUNUSED(maxW
) = wxDefaultCoord
,
159 int WXUNUSED(maxH
) = wxDefaultCoord
,
160 int WXUNUSED(incW
) = wxDefaultCoord
,
161 int WXUNUSED(incH
) = wxDefaultCoord
) {}
165 virtual wxToolBar
* CreateToolBar( long WXUNUSED(style
),
166 wxWindowID
WXUNUSED(winid
),
167 const wxString
& WXUNUSED(name
) )
168 { return (wxToolBar
*)NULL
; }
169 virtual wxToolBar
*GetToolBar() const { return (wxToolBar
*)NULL
; }
173 virtual void SetIcons( const wxIconBundle
& WXUNUSED(icons
) ) { }
176 virtual void Maximize( bool WXUNUSED(maximize
) = true) { /* Has no effect */ }
177 virtual void Restore() { /* Has no effect */ }
178 virtual void Iconize(bool WXUNUSED(iconize
) = true) { /* Has no effect */ }
179 virtual bool IsMaximized() const { return true; }
180 virtual bool IsIconized() const { return false; }
181 virtual bool ShowFullScreen(bool WXUNUSED(show
), long WXUNUSED(style
)) { return false; }
182 virtual bool IsFullScreen() const { return false; }
184 virtual bool IsTopLevel() const { return false; }
186 void OnMenuHighlight(wxMenuEvent
& event
);
187 void OnActivate(wxActivateEvent
& event
);
189 // The next 2 are copied from top level...
190 void OnCloseWindow(wxCloseEvent
& event
);
191 void OnSize(wxSizeEvent
& event
);
193 void SetMDIParentFrame(wxGenericMDIParentFrame
* parentFrame
);
194 wxGenericMDIParentFrame
* GetMDIParentFrame() const;
197 wxGenericMDIParentFrame
*m_pMDIParentFrame
;
202 wxMenuBar
*m_pMenuBar
;
203 #endif // wxUSE_MENUS
208 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
210 // This function needs to be called when a size change is confirmed,
211 // we needed this function to prevent any body from the outside
212 // changing the panel... it messes the UI layout when we would allow it.
213 void ApplyMDIChildFrameRect();
216 DECLARE_DYNAMIC_CLASS(wxGenericMDIChildFrame
)
217 DECLARE_EVENT_TABLE()
219 friend class wxGenericMDIClientWindow
;
222 //-----------------------------------------------------------------------------
223 // wxGenericMDIClientWindow
224 //-----------------------------------------------------------------------------
226 class WXDLLEXPORT wxGenericMDIClientWindow
: public wxNotebook
229 wxGenericMDIClientWindow();
230 wxGenericMDIClientWindow( wxGenericMDIParentFrame
*parent
, long style
= 0 );
231 virtual ~wxGenericMDIClientWindow();
232 virtual bool CreateClient( wxGenericMDIParentFrame
*parent
, long style
= wxVSCROLL
| wxHSCROLL
);
234 virtual int SetSelection(size_t nPage
);
237 void PageChanged(int OldSelection
, int newSelection
);
239 void OnPageChanged(wxNotebookEvent
& event
);
240 void OnSize(wxSizeEvent
& event
);
243 DECLARE_DYNAMIC_CLASS(wxGenericMDIClientWindow
)
244 DECLARE_EVENT_TABLE()
249 * Define normal wxMDI classes based on wxGenericMDI
252 #ifndef wxUSE_GENERIC_MDI_AS_NATIVE
253 #if defined(__WXUNIVERSAL__) || defined(__WXPM__) || defined(__WXCOCOA__)
254 #define wxUSE_GENERIC_MDI_AS_NATIVE 1
256 #define wxUSE_GENERIC_MDI_AS_NATIVE 0
258 #endif // wxUSE_GENERIC_MDI_AS_NATIVE
260 #if wxUSE_GENERIC_MDI_AS_NATIVE
262 class wxMDIChildFrame
;
264 //-----------------------------------------------------------------------------
266 //-----------------------------------------------------------------------------
268 class WXDLLEXPORT wxMDIParentFrame
: public wxGenericMDIParentFrame
271 wxMDIParentFrame() {}
272 wxMDIParentFrame(wxWindow
*parent
,
274 const wxString
& title
,
275 const wxPoint
& pos
= wxDefaultPosition
,
276 const wxSize
& size
= wxDefaultSize
,
277 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
278 const wxString
& name
= wxFrameNameStr
)
279 :wxGenericMDIParentFrame(parent
, winid
, title
, pos
, size
, style
, name
)
283 wxMDIChildFrame
* GetActiveChild() const ;
287 DECLARE_DYNAMIC_CLASS(wxMDIParentFrame
)
290 //-----------------------------------------------------------------------------
292 //-----------------------------------------------------------------------------
294 class WXDLLEXPORT wxMDIChildFrame
: public wxGenericMDIChildFrame
299 wxMDIChildFrame( wxGenericMDIParentFrame
*parent
,
301 const wxString
& title
,
302 const wxPoint
& pos
= wxDefaultPosition
,
303 const wxSize
& size
= wxDefaultSize
,
304 long style
= wxDEFAULT_FRAME_STYLE
,
305 const wxString
& name
= wxFrameNameStr
)
306 :wxGenericMDIChildFrame(parent
, winid
, title
, pos
, size
, style
, name
)
310 DECLARE_DYNAMIC_CLASS(wxMDIChildFrame
)
313 //-----------------------------------------------------------------------------
315 //-----------------------------------------------------------------------------
317 class WXDLLEXPORT wxMDIClientWindow
: public wxGenericMDIClientWindow
320 wxMDIClientWindow() {}
322 wxMDIClientWindow( wxGenericMDIParentFrame
*parent
, long style
= 0 )
323 :wxGenericMDIClientWindow(parent
, style
)
328 DECLARE_DYNAMIC_CLASS(wxMDIClientWindow
)