]>
git.saurik.com Git - wxWidgets.git/blob - interface/mdi.h
7444b51a85415a885b5296ca5d631bfc3478c1dc
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxMDIClientWindow class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxMDIClientWindow
13 An MDI client window is a child of wxMDIParentFrame, and manages zero or
14 more wxMDIChildFrame objects.
20 wxMDIChildFrame, wxMDIParentFrame, wxFrame
22 class wxMDIClientWindow
: public wxWindow
27 Constructor, creating the window.
33 The window style. Currently unused.
35 @remarks The second style of constructor is called within
36 wxMDIParentFrame::OnCreateClient.
38 @sa wxMDIParentFrame::wxMDIParentFrame, wxMDIParentFrame::OnCreateClient
41 wxMDIClientWindow(wxMDIParentFrame
* parent
, long style
= 0);
50 Used in two-step frame construction. See wxMDIClientWindow()
53 bool CreateClient(wxMDIParentFrame
* parent
, long style
= 0);
58 @class wxMDIParentFrame
61 An MDI (Multiple Document Interface) parent frame is a window which can contain
62 MDI child frames in its own 'desktop'. It is a convenient way to avoid window
64 and is used in many popular Windows applications, such as Microsoft Word(TM).
68 Puts a caption on the frame.
69 @style{wxDEFAULT_FRAME_STYLE}:
70 Defined as wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxTHICK_FRAME |
71 wxSYSTEM_MENU | wxCAPTION.
73 Displays a horizontal scrollbar in the client window, allowing the
74 user to view child frames that are off the current view.
76 Display the frame iconized (minimized) (Windows only).
78 Displays the frame maximized (Windows only).
79 @style{wxMAXIMIZE_BOX}:
80 Displays a maximize box on the frame (Windows and Motif only).
82 Identical to wxICONIZE.
83 @style{wxMINIMIZE_BOX}:
84 Displays a minimize box on the frame (Windows and Motif only).
85 @style{wxRESIZE_BORDER}:
86 Displays a resizeable border around the window (Motif only; for
87 Windows, it is implicit in wxTHICK_FRAME).
88 @style{wxSTAY_ON_TOP}:
89 Stay on top of other windows (Windows only).
90 @style{wxSYSTEM_MENU}:
91 Displays a system menu (Windows and Motif only).
92 @style{wxTHICK_FRAME}:
93 Displays a thick frame around the window (Windows and Motif only).
95 Displays a vertical scrollbar in the client window, allowing the
96 user to view child frames that are off the current view.
97 @style{wxFRAME_NO_WINDOW_MENU}:
98 Under Windows, removes the Window menu that is normally added
103 @category{managedwnd}
106 wxMDIChildFrame, wxMDIClientWindow, wxFrame, wxDialog
108 class wxMDIParentFrame
: public wxFrame
113 Constructor, creating the window.
116 The window parent. This should be @NULL.
119 The window identifier. It may take a value of -1 to indicate a default value.
122 The caption to be displayed on the frame's title bar.
125 The window position. The value wxDefaultPosition indicates a default position, chosen by
126 either the windowing system or wxWidgets, depending on platform.
129 The window size. The value wxDefaultSize indicates a default size, chosen by
130 either the windowing system or wxWidgets, depending on platform.
133 The window style. See wxMDIParentFrame.
136 The name of the window. This parameter is used to associate a name with the
138 allowing the application user to set Motif resource values for
141 @remarks During the construction of the frame, the client window will be
142 created. To use a different class from
143 wxMDIClientWindow, override
146 @sa Create(), OnCreateClient()
149 wxMDIParentFrame(wxWindow
* parent
, wxWindowID id
,
150 const wxString
& title
,
151 const wxPoint
& pos
= wxDefaultPosition
,
152 const wxSize
& size
= wxDefaultSize
,
153 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
154 const wxString
& name
= "frame");
158 Destructor. Destroys all child windows and menu bar if present.
163 Activates the MDI child following the currently active one.
165 @sa ActivatePrevious()
170 Activates the MDI child preceding the currently active one.
174 void ActivatePrevious();
177 Arranges any iconized (minimized) MDI child windows.
179 @sa Cascade(), Tile()
184 Arranges the MDI child windows in a cascade.
186 @sa Tile(), ArrangeIcons()
191 Used in two-step frame construction. See wxMDIParentFrame()
194 bool Create(wxWindow
* parent
, wxWindowID id
,
195 const wxString
& title
,
196 const wxPoint
& pos
= wxDefaultPosition
,
197 const wxSize
& size
= wxDefaultSize
,
198 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
199 const wxString
& name
= "frame");
202 Returns a pointer to the active MDI child, if there is one.
204 wxMDIChildFrame
* GetActiveChild();
207 This gets the size of the frame 'client area' in pixels.
210 Receives the client width in pixels.
213 Receives the client height in pixels.
215 @remarks The client area is the area which may be drawn on by the
216 programmer, excluding title bar, border, status bar,
217 and toolbar if present.
219 @sa GetToolBar(), SetToolBar(),
222 virtual void GetClientSize(int* width
, int* height
);
225 Returns a pointer to the client window.
229 wxMDIClientWindow
* GetClientWindow();
232 Returns the window being used as the toolbar for this frame.
236 virtual wxWindow
* GetToolBar();
239 Returns the current Window menu (added by wxWidgets to the menubar). This
241 is available under Windows only.
243 wxMenu
* GetWindowMenu();
246 Override this to return a different kind of client window. If you override this
248 you must create your parent frame in two stages, or your function will never be
250 due to the way C++ treats virtual functions called from constructors. For
253 @remarks You might wish to derive from wxMDIClientWindow in order to
254 implement different erase behaviour, for example,
255 such as painting a bitmap on the background.
257 @sa GetClientWindow(), wxMDIClientWindow
259 virtual wxMDIClientWindow
* OnCreateClient();
262 Sets the window to be used as a toolbar for this
263 MDI parent window. It saves the application having to manage the positioning
264 of the toolbar MDI client window.
269 @remarks When the frame is resized, the toolbar is resized to be the
270 width of the frame client area, and the toolbar
271 height is kept the same.
273 @sa GetToolBar(), GetClientSize()
275 virtual void SetToolBar(wxWindow
* toolbar
);
278 Call this to change the current Window menu. Ownership of the menu object
280 the frame when you call this function.
282 This call is available under Windows only.
284 To remove the window completely, use the wxFRAME_NO_WINDOW_MENU window style.
286 void SetWindowMenu(wxMenu
* menu
);
289 Tiles the MDI child windows either horizontally or vertically depending on
290 whether @e orient is wxHORIZONTAL or wxVERTICAL.
292 Currently only implemented for MSW, does nothing under the other platforms.
294 void Tile(wxOrientation orient
= wxHORIZONTAL
);
299 @class wxMDIChildFrame
302 An MDI child frame is a frame that can only exist on a wxMDIClientWindow,
303 which is itself a child of wxMDIParentFrame.
307 Puts a caption on the frame.
308 @style{wxDEFAULT_FRAME_STYLE}:
309 Defined as wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxTHICK_FRAME |
310 wxSYSTEM_MENU | wxCAPTION.
312 Display the frame iconized (minimized) (Windows only).
314 Displays the frame maximized (Windows only).
315 @style{wxMAXIMIZE_BOX}:
316 Displays a maximize box on the frame (Windows and Motif only).
318 Identical to wxICONIZE.
319 @style{wxMINIMIZE_BOX}:
320 Displays a minimize box on the frame (Windows and Motif only).
321 @style{wxRESIZE_BORDER}:
322 Displays a resizeable border around the window (Motif only; for
323 Windows, it is implicit in wxTHICK_FRAME).
324 @style{wxSTAY_ON_TOP}:
325 Stay on top of other windows (Windows only).
326 @style{wxSYSTEM_MENU}:
327 Displays a system menu (Windows and Motif only).
328 @style{wxTHICK_FRAME}:
329 Displays a thick frame around the window (Windows and Motif only).
333 @category{managedwnd}
336 wxMDIClientWindow, wxMDIParentFrame, wxFrame
338 class wxMDIChildFrame
: public wxFrame
343 Constructor, creating the window.
346 The window parent. This should not be @NULL.
349 The window identifier. It may take a value of -1 to indicate a default value.
352 The caption to be displayed on the frame's title bar.
355 The window position. The value wxDefaultPosition indicates a default position, chosen by
356 either the windowing system or wxWidgets, depending on platform.
359 The window size. The value wxDefaultSize indicates a default size, chosen by
360 either the windowing system or wxWidgets, depending on platform.
363 The window style. See wxMDIChildFrame.
366 The name of the window. This parameter is used to associate a name with the
368 allowing the application user to set Motif resource values for
376 wxMDIChildFrame(wxMDIParentFrame
* parent
, wxWindowID id
,
377 const wxString
& title
,
378 const wxPoint
& pos
= wxDefaultPosition
,
379 const wxSize
& size
= wxDefaultSize
,
380 long style
= wxDEFAULT_FRAME_STYLE
,
381 const wxString
& name
= "frame");
385 Destructor. Destroys all child windows and menu bar if present.
390 Activates this MDI child frame.
392 @sa Maximize(), Restore()
397 Used in two-step frame construction. See wxMDIChildFrame()
400 bool Create(wxWindow
* parent
, wxWindowID id
,
401 const wxString
& title
,
402 const wxPoint
& pos
= wxDefaultPosition
,
403 const wxSize
& size
= wxDefaultSize
,
404 long style
= wxDEFAULT_FRAME_STYLE
,
405 const wxString
& name
= "frame");
408 Maximizes this MDI child frame.
410 @sa Activate(), Restore()
412 void Maximize(bool maximize
);
415 Restores this MDI child frame (unmaximizes).