1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/tabmdi.h
3 // Purpose: Generic MDI (Multiple Document Interface) classes
4 // Author: Hans Van Leemputten
5 // Modified by: Benjamin I. Williams / Kirix Corporation
8 // Copyright: (c) Hans Van Leemputten
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_AUITABMDI_H_
13 #define _WX_AUITABMDI_H_
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
23 #include "wx/notebook.h"
25 #include "wx/aui/auibook.h"
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 class WXDLLIMPEXP_FWD_AUI wxAuiMDIParentFrame
;
32 class WXDLLIMPEXP_FWD_AUI wxAuiMDIClientWindow
;
33 class WXDLLIMPEXP_FWD_AUI wxAuiMDIChildFrame
;
35 //-----------------------------------------------------------------------------
36 // wxAuiMDIParentFrame
37 //-----------------------------------------------------------------------------
39 class WXDLLIMPEXP_AUI wxAuiMDIParentFrame
: public wxFrame
42 wxAuiMDIParentFrame();
43 wxAuiMDIParentFrame(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
);
51 ~wxAuiMDIParentFrame();
53 bool Create(wxWindow
*parent
,
55 const wxString
& title
,
56 const wxPoint
& pos
= wxDefaultPosition
,
57 const wxSize
& size
= wxDefaultSize
,
58 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
59 const wxString
& name
= wxFrameNameStr
);
61 void SetArtProvider(wxAuiTabArt
* provider
);
62 wxAuiTabArt
* GetArtProvider();
63 wxAuiNotebook
* GetNotebook() const;
66 wxMenu
* GetWindowMenu() const { return m_pWindowMenu
; }
67 void SetWindowMenu(wxMenu
* pMenu
);
69 virtual void SetMenuBar(wxMenuBar
*pMenuBar
);
72 void SetChildMenuBar(wxAuiMDIChildFrame
*pChild
);
74 wxAuiMDIChildFrame
*GetActiveChild() const;
75 void SetActiveChild(wxAuiMDIChildFrame
* pChildFrame
);
77 wxAuiMDIClientWindow
*GetClientWindow() const;
78 virtual wxAuiMDIClientWindow
*OnCreateClient();
80 virtual void Cascade() { /* Has no effect */ }
81 virtual void Tile(wxOrientation orient
= wxHORIZONTAL
);
82 virtual void ArrangeIcons() { /* Has no effect */ }
83 virtual void ActivateNext();
84 virtual void ActivatePrevious();
87 wxAuiMDIClientWindow
* m_pClientWindow
;
88 wxAuiMDIChildFrame
* m_pActiveChild
;
92 wxMenu
*m_pWindowMenu
;
93 wxMenuBar
*m_pMyMenuBar
;
100 void RemoveWindowMenu(wxMenuBar
*pMenuBar
);
101 void AddWindowMenu(wxMenuBar
*pMenuBar
);
103 void DoHandleMenu(wxCommandEvent
&event
);
104 #endif // wxUSE_MENUS
106 virtual bool ProcessEvent(wxEvent
& event
);
108 virtual void DoGetClientSize(int *width
, int *height
) const;
111 DECLARE_EVENT_TABLE()
112 DECLARE_DYNAMIC_CLASS(wxAuiMDIParentFrame
)
115 //-----------------------------------------------------------------------------
116 // wxAuiMDIChildFrame
117 //-----------------------------------------------------------------------------
119 class WXDLLIMPEXP_AUI wxAuiMDIChildFrame
: public wxPanel
122 wxAuiMDIChildFrame();
123 wxAuiMDIChildFrame(wxAuiMDIParentFrame
*parent
,
125 const wxString
& title
,
126 const wxPoint
& pos
= wxDefaultPosition
,
127 const wxSize
& size
= wxDefaultSize
,
128 long style
= wxDEFAULT_FRAME_STYLE
,
129 const wxString
& name
= wxFrameNameStr
);
131 virtual ~wxAuiMDIChildFrame();
132 bool Create(wxAuiMDIParentFrame
*parent
,
134 const wxString
& title
,
135 const wxPoint
& pos
= wxDefaultPosition
,
136 const wxSize
& size
= wxDefaultSize
,
137 long style
= wxDEFAULT_FRAME_STYLE
,
138 const wxString
& name
= wxFrameNameStr
);
141 virtual void SetMenuBar(wxMenuBar
*menu_bar
);
142 virtual wxMenuBar
*GetMenuBar() const;
143 #endif // wxUSE_MENUS
145 virtual void SetTitle(const wxString
& title
);
146 virtual wxString
GetTitle() const;
148 virtual void SetIcons(const wxIconBundle
& icons
);
149 virtual const wxIconBundle
& GetIcons() const;
151 virtual void SetIcon(const wxIcon
& icon
);
152 virtual const wxIcon
& GetIcon() const;
154 virtual void Activate();
155 virtual bool Destroy();
157 virtual bool Show(bool show
= true);
161 virtual wxStatusBar
* CreateStatusBar(int WXUNUSED(number
) = 1,
162 long WXUNUSED(style
) = 1,
163 wxWindowID
WXUNUSED(winid
) = 1,
164 const wxString
& WXUNUSED(name
) = wxEmptyString
)
167 virtual wxStatusBar
*GetStatusBar() const { return NULL
; }
168 virtual void SetStatusText( const wxString
&WXUNUSED(text
), int WXUNUSED(number
)=0 ) {}
169 virtual void SetStatusWidths( int WXUNUSED(n
), const int WXUNUSED(widths_field
)[] ) {}
174 virtual wxToolBar
* CreateToolBar(long WXUNUSED(style
),
175 wxWindowID
WXUNUSED(winid
),
176 const wxString
& WXUNUSED(name
))
178 virtual wxToolBar
*GetToolBar() const { return NULL
; }
183 virtual void Maximize(bool WXUNUSED(maximize
) = true) { /* Has no effect */ }
184 virtual void Restore() { /* Has no effect */ }
185 virtual void Iconize(bool WXUNUSED(iconize
) = true) { /* Has no effect */ }
186 virtual bool IsMaximized() const { return true; }
187 virtual bool IsIconized() const { return false; }
188 virtual bool ShowFullScreen(bool WXUNUSED(show
), long WXUNUSED(style
)) { return false; }
189 virtual bool IsFullScreen() const { return false; }
191 virtual bool IsTopLevel() const { return false; }
193 void OnMenuHighlight(wxMenuEvent
& evt
);
194 void OnActivate(wxActivateEvent
& evt
);
195 void OnCloseWindow(wxCloseEvent
& evt
);
197 void SetMDIParentFrame(wxAuiMDIParentFrame
* parent
);
198 wxAuiMDIParentFrame
* GetMDIParentFrame() const;
202 virtual void DoSetSize(int x
, int y
, int width
, int height
, int size_flags
);
203 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
206 virtual void DoSetSizeHints(int WXUNUSED(minW
), int WXUNUSED(minH
),
207 int WXUNUSED(maxW
), int WXUNUSED(maxH
),
208 int WXUNUSED(incW
), int WXUNUSED(incH
)) {}
210 // This function needs to be called when a size change is confirmed,
211 // we needed this function to prevent anybody from the outside
212 // changing the panel... it messes the UI layout when we would allow it.
213 void ApplyMDIChildFrameRect();
214 void DoShow(bool show
);
217 wxAuiMDIParentFrame
* m_pMDIParentFrame
;
218 wxRect m_mdi_newrect
;
219 wxRect m_mdi_currect
;
222 wxIconBundle m_icon_bundle
;
223 bool m_activate_on_create
;
226 wxMenuBar
* m_pMenuBar
;
227 #endif // wxUSE_MENUS
232 DECLARE_DYNAMIC_CLASS(wxAuiMDIChildFrame
)
233 DECLARE_EVENT_TABLE()
235 friend class wxAuiMDIClientWindow
;
238 //-----------------------------------------------------------------------------
239 // wxAuiMDIClientWindow
240 //-----------------------------------------------------------------------------
242 class WXDLLIMPEXP_AUI wxAuiMDIClientWindow
: public wxAuiNotebook
245 wxAuiMDIClientWindow();
246 wxAuiMDIClientWindow(wxAuiMDIParentFrame
*parent
, long style
= 0);
247 ~wxAuiMDIClientWindow();
249 virtual bool CreateClient(wxAuiMDIParentFrame
*parent
,
250 long style
= wxVSCROLL
| wxHSCROLL
);
252 virtual int SetSelection(size_t page
);
256 void PageChanged(int old_selection
, int new_selection
);
257 void OnPageClose(wxAuiNotebookEvent
& evt
);
258 void OnPageChanged(wxAuiNotebookEvent
& evt
);
259 void OnSize(wxSizeEvent
& evt
);
262 DECLARE_DYNAMIC_CLASS(wxAuiMDIClientWindow
)
263 DECLARE_EVENT_TABLE()
267 #endif // _WX_AUITABMDI_H_