]> git.saurik.com Git - wxWidgets.git/blame - interface/frame.h
execute the usual cleanup code from EVT_END_SESSION handler under MSW, otherwise...
[wxWidgets.git] / interface / frame.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: frame.h
e54c96f1 3// Purpose: interface of wxFrame
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxFrame
11 @wxheader{frame.h}
7c913512 12
23324ae1
FM
13 A frame is a window whose size and position can (usually) be changed by the
14 user. It usually has thick borders and a title bar, and can optionally contain
15 a menu bar, toolbar and status bar. A frame can contain any window that is not
16 a frame or dialog.
7c913512 17
23324ae1
FM
18 A frame that has a status bar and toolbar created via the
19 CreateStatusBar/CreateToolBar functions manages these windows, and adjusts the
20 value returned by GetClientSize to reflect the remaining size available to
21 application windows.
7c913512 22
23324ae1 23 @beginStyleTable
8c6791e4 24 @style{wxDEFAULT_FRAME_STYLE}
7c913512 25 Defined as wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER |
23324ae1 26 wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX | wxCLIP_CHILDREN.
8c6791e4 27 @style{wxICONIZE}
23324ae1 28 Display the frame iconized (minimized). Windows only.
8c6791e4 29 @style{wxCAPTION}
23324ae1 30 Puts a caption on the frame.
8c6791e4 31 @style{wxMINIMIZE}
23324ae1 32 Identical to wxICONIZE. Windows only.
8c6791e4 33 @style{wxMINIMIZE_BOX}
23324ae1 34 Displays a minimize box on the frame.
8c6791e4 35 @style{wxMAXIMIZE}
23324ae1 36 Displays the frame maximized. Windows only.
8c6791e4 37 @style{wxMAXIMIZE_BOX}
23324ae1 38 Displays a maximize box on the frame.
8c6791e4 39 @style{wxCLOSE_BOX}
23324ae1 40 Displays a close box on the frame.
8c6791e4 41 @style{wxSTAY_ON_TOP}
23324ae1 42 Stay on top of all other windows, see also wxFRAME_FLOAT_ON_PARENT.
8c6791e4 43 @style{wxSYSTEM_MENU}
23324ae1 44 Displays a system menu.
8c6791e4 45 @style{wxRESIZE_BORDER}
23324ae1 46 Displays a resizeable border around the window.
8c6791e4 47 @style{wxFRAME_TOOL_WINDOW}
23324ae1
FM
48 Causes a frame with a small titlebar to be created; the frame does
49 not appear in the taskbar under Windows or GTK+.
8c6791e4 50 @style{wxFRAME_NO_TASKBAR}
23324ae1
FM
51 Creates an otherwise normal frame but it does not appear in the
52 taskbar under Windows or GTK+ (note that it will minimize to the
53 desktop window under Windows which may seem strange to the users
54 and thus it might be better to use this style only without
55 wxMINIMIZE_BOX style). In wxGTK, the flag is respected only if GTK+
7c913512 56 is at least version 2.2 and the window manager supports
23324ae1
FM
57 _NET_WM_STATE_SKIP_TASKBAR hint. Has no effect under other
58 platforms.
8c6791e4 59 @style{wxFRAME_FLOAT_ON_PARENT}
23324ae1
FM
60 The frame will always be on top of its parent (unlike
61 wxSTAY_ON_TOP). A frame created with this style must have a
62 non-@NULL parent.
8c6791e4 63 @style{wxFRAME_EX_CONTEXTHELP}
23324ae1
FM
64 Under Windows, puts a query button on the caption. When pressed,
65 Windows will go into a context-sensitive help mode and wxWidgets
66 will send a wxEVT_HELP event if the user clicked on an application
67 window. Note that this is an extended style and must be set by
68 calling SetExtraStyle before Create is called (two-step
69 construction). You cannot use this style together with
70 wxMAXIMIZE_BOX or wxMINIMIZE_BOX, so you should use
71 wxDEFAULT_FRAME_STYLE ~ (wxMINIMIZE_BOX | wxMAXIMIZE_BOX) for the
72 frames having this style (the dialogs don't have a minimize or a
73 maximize box by default)
8c6791e4 74 @style{wxFRAME_SHAPED}
23324ae1
FM
75 Windows with this style are allowed to have their shape changed
76 with the SetShape method.
8c6791e4 77 @style{wxFRAME_EX_METAL}
23324ae1
FM
78 On Mac OS X, frames with this style will be shown with a metallic
79 look. This is an extra style.
80 @endStyleTable
7c913512 81
23324ae1
FM
82 @library{wxcore}
83 @category{managedwnd}
7c913512 84
e54c96f1 85 @see wxMDIParentFrame, wxMDIChildFrame, wxMiniFrame, wxDialog
23324ae1
FM
86*/
87class wxFrame : public wxTopLevelWindow
88{
89public:
90 //@{
91 /**
92 Constructor, creating the window.
3c4f71cc 93
7c913512 94 @param parent
4cc4bfaf
FM
95 The window parent. This may be @NULL. If it is non-@NULL, the frame will
96 always be displayed on top of the parent window on Windows.
7c913512 97 @param id
4cc4bfaf
FM
98 The window identifier. It may take a value of -1 to indicate a default
99 value.
7c913512 100 @param title
4cc4bfaf 101 The caption to be displayed on the frame's title bar.
7c913512 102 @param pos
4cc4bfaf
FM
103 The window position. The value wxDefaultPosition indicates a default position,
104 chosen by
105 either the windowing system or wxWidgets, depending on platform.
7c913512 106 @param size
4cc4bfaf
FM
107 The window size. The value wxDefaultSize indicates a default size, chosen by
108 either the windowing system or wxWidgets, depending on platform.
7c913512 109 @param style
4cc4bfaf 110 The window style. See wxFrame.
7c913512 111 @param name
4cc4bfaf 112 The name of the window. This parameter is used to associate a name with the
23324ae1 113 item,
4cc4bfaf
FM
114 allowing the application user to set Motif resource values for
115 individual windows.
3c4f71cc 116
23324ae1 117 @remarks For Motif, MWM (the Motif Window Manager) should be running for
4cc4bfaf
FM
118 any window styles to work (otherwise all styles take
119 effect).
3c4f71cc 120
4cc4bfaf 121 @see Create()
23324ae1
FM
122 */
123 wxFrame();
7c913512
FM
124 wxFrame(wxWindow* parent, wxWindowID id,
125 const wxString& title,
126 const wxPoint& pos = wxDefaultPosition,
127 const wxSize& size = wxDefaultSize,
128 long style = wxDEFAULT_FRAME_STYLE,
129 const wxString& name = "frame");
23324ae1
FM
130 //@}
131
132 /**
133 Destructor. Destroys all child windows and menu bar if present.
134 */
135 ~wxFrame();
136
137 /**
138 Centres the frame on the display.
3c4f71cc 139
7c913512 140 @param direction
4cc4bfaf 141 The parameter may be wxHORIZONTAL, wxVERTICAL or wxBOTH.
23324ae1
FM
142 */
143 void Centre(int direction = wxBOTH);
144
145 /**
146 Used in two-step frame construction. See wxFrame()
147 for further details.
148 */
149 bool Create(wxWindow* parent, wxWindowID id,
150 const wxString& title,
151 const wxPoint& pos = wxDefaultPosition,
152 const wxSize& size = wxDefaultSize,
153 long style = wxDEFAULT_FRAME_STYLE,
154 const wxString& name = "frame");
155
156 /**
157 Creates a status bar at the bottom of the frame.
3c4f71cc 158
7c913512 159 @param number
4cc4bfaf
FM
160 The number of fields to create. Specify a
161 value greater than 1 to create a multi-field status bar.
7c913512 162 @param style
4cc4bfaf
FM
163 The status bar style. See wxStatusBar for a list
164 of valid styles.
7c913512 165 @param id
4cc4bfaf
FM
166 The status bar window identifier. If -1, an identifier will be chosen by
167 wxWidgets.
7c913512 168 @param name
4cc4bfaf 169 The status bar window name.
3c4f71cc 170
23324ae1 171 @returns A pointer to the status bar if it was created successfully, @NULL
4cc4bfaf 172 otherwise.
3c4f71cc 173
23324ae1 174 @remarks The width of the status bar is the whole width of the frame
4cc4bfaf
FM
175 (adjusted automatically when resizing), and the height
176 and text size are chosen by the host windowing system.
3c4f71cc 177
4cc4bfaf 178 @see SetStatusText(), OnCreateStatusBar(), GetStatusBar()
23324ae1
FM
179 */
180 virtual wxStatusBar* CreateStatusBar(int number = 1,
181 long style = 0,
182 wxWindowID id = -1,
183 const wxString& name = "statusBar");
184
185 /**
186 Creates a toolbar at the top or left of the frame.
3c4f71cc 187
7c913512 188 @param style
4cc4bfaf
FM
189 The toolbar style. See wxToolBar for a list
190 of valid styles.
7c913512 191 @param id
4cc4bfaf
FM
192 The toolbar window identifier. If -1, an identifier will be chosen by
193 wxWidgets.
7c913512 194 @param name
4cc4bfaf 195 The toolbar window name.
3c4f71cc 196
23324ae1 197 @returns A pointer to the toolbar if it was created successfully, @NULL
4cc4bfaf 198 otherwise.
3c4f71cc 199
23324ae1 200 @remarks By default, the toolbar is an instance of wxToolBar (which is
4cc4bfaf
FM
201 defined to be a suitable toolbar class on each
202 platform, such as wxToolBar95). To use a different
203 class, override OnCreateToolBar().
3c4f71cc 204
4cc4bfaf
FM
205 @see CreateStatusBar(), OnCreateToolBar(), SetToolBar(),
206 GetToolBar()
23324ae1 207 */
4cc4bfaf 208 virtual wxToolBar* CreateToolBar(long style = wxBORDER_NONE | wxTB_HORIZONTAL,
23324ae1
FM
209 wxWindowID id = -1,
210 const wxString& name = "toolBar");
211
212 /**
213 Returns the origin of the frame client area (in client coordinates). It may be
214 different from (0, 0) if the frame has a toolbar.
215 */
328f5751 216 wxPoint GetClientAreaOrigin() const;
23324ae1
FM
217
218 /**
219 Returns a pointer to the menubar currently associated with the frame (if any).
3c4f71cc 220
4cc4bfaf 221 @see SetMenuBar(), wxMenuBar, wxMenu
23324ae1 222 */
328f5751 223 wxMenuBar* GetMenuBar() const;
23324ae1
FM
224
225 /**
226 Returns a pointer to the status bar currently associated with the frame (if
227 any).
3c4f71cc 228
4cc4bfaf 229 @see CreateStatusBar(), wxStatusBar
23324ae1 230 */
328f5751 231 wxStatusBar* GetStatusBar() const;
23324ae1
FM
232
233 /**
234 Returns the status bar pane used to display menu and toolbar help.
3c4f71cc 235
4cc4bfaf 236 @see SetStatusBarPane()
23324ae1
FM
237 */
238 int GetStatusBarPane();
239
240 /**
241 Returns a pointer to the toolbar currently associated with the frame (if any).
3c4f71cc 242
4cc4bfaf 243 @see CreateToolBar(), wxToolBar, SetToolBar()
23324ae1 244 */
328f5751 245 wxToolBar* GetToolBar() const;
23324ae1
FM
246
247 /**
248 Virtual function called when a status bar is requested by CreateStatusBar().
3c4f71cc 249
7c913512 250 @param number
4cc4bfaf 251 The number of fields to create.
7c913512 252 @param style
4cc4bfaf
FM
253 The window style. See wxStatusBar for a list
254 of valid styles.
7c913512 255 @param id
4cc4bfaf
FM
256 The window identifier. If -1, an identifier will be chosen by
257 wxWidgets.
7c913512 258 @param name
4cc4bfaf 259 The window name.
3c4f71cc 260
23324ae1 261 @returns A status bar object.
3c4f71cc 262
23324ae1 263 @remarks An application can override this function to return a different
4cc4bfaf
FM
264 kind of status bar. The default implementation returns
265 an instance of wxStatusBar.
3c4f71cc 266
4cc4bfaf 267 @see CreateStatusBar(), wxStatusBar.
23324ae1
FM
268 */
269 virtual wxStatusBar* OnCreateStatusBar(int number, long style,
270 wxWindowID id,
271 const wxString& name);
272
273 /**
274 Virtual function called when a toolbar is requested by CreateToolBar().
3c4f71cc 275
7c913512 276 @param style
4cc4bfaf
FM
277 The toolbar style. See wxToolBar for a list
278 of valid styles.
7c913512 279 @param id
4cc4bfaf
FM
280 The toolbar window identifier. If -1, an identifier will be chosen by
281 wxWidgets.
7c913512 282 @param name
4cc4bfaf 283 The toolbar window name.
3c4f71cc 284
23324ae1 285 @returns A toolbar object.
3c4f71cc 286
23324ae1 287 @remarks An application can override this function to return a different
4cc4bfaf
FM
288 kind of toolbar. The default implementation returns an
289 instance of wxToolBar.
3c4f71cc 290
4cc4bfaf 291 @see CreateToolBar(), wxToolBar.
23324ae1
FM
292 */
293 virtual wxToolBar* OnCreateToolBar(long style, wxWindowID id,
294 const wxString& name);
295
296 /**
297 Simulate a menu command.
3c4f71cc 298
7c913512 299 @param id
4cc4bfaf 300 The identifier for a menu item.
23324ae1
FM
301 */
302 void ProcessCommand(int id);
303
304 /**
305 This function sends a dummy @ref overview_wxsizeevent "size event" to the frame
306 forcing it to reevaluate its children positions. It is sometimes useful to call
307 this function after adding or deleting a children after the frame creation or
308 if a child size changes.
23324ae1
FM
309 Note that if the frame is using either sizers or constraints for the children
310 layout, it is enough to call wxWindow::Layout directly and
311 this function should not be used in this case.
312 */
313 void SendSizeEvent();
314
315 /**
316 Tells the frame to show the given menu bar.
3c4f71cc 317
7c913512 318 @param menuBar
4cc4bfaf 319 The menu bar to associate with the frame.
3c4f71cc 320
23324ae1 321 @remarks If the frame is destroyed, the menu bar and its menus will be
4cc4bfaf
FM
322 destroyed also, so do not delete the menu bar
323 explicitly (except by resetting the frame's menu bar to
324 another frame or @NULL).
3c4f71cc 325
4cc4bfaf 326 @see GetMenuBar(), wxMenuBar, wxMenu.
23324ae1
FM
327 */
328 void SetMenuBar(wxMenuBar* menuBar);
329
330 /**
331 Associates a status bar with the frame.
3c4f71cc 332
4cc4bfaf 333 @see CreateStatusBar(), wxStatusBar, GetStatusBar()
23324ae1
FM
334 */
335 void SetStatusBar(wxStatusBar* statusBar);
336
337 /**
338 Set the status bar pane used to display menu and toolbar help.
339 Using -1 disables help display.
340 */
341 void SetStatusBarPane(int n);
342
343 /**
344 Sets the status bar text and redraws the status bar.
3c4f71cc 345
7c913512 346 @param text
4cc4bfaf 347 The text for the status field.
7c913512 348 @param number
4cc4bfaf 349 The status field (starting from zero).
3c4f71cc 350
23324ae1 351 @remarks Use an empty string to clear the status bar.
3c4f71cc 352
4cc4bfaf 353 @see CreateStatusBar(), wxStatusBar
23324ae1
FM
354 */
355 virtual void SetStatusText(const wxString& text, int number = 0);
356
357 /**
358 Sets the widths of the fields in the status bar.
3c4f71cc 359
7c913512 360 @param n
4cc4bfaf
FM
361 The number of fields in the status bar. It must be the
362 same used in CreateStatusBar.
7c913512 363 @param widths
4cc4bfaf
FM
364 Must contain an array of n integers, each of which is a status field width
365 in pixels. A value of -1 indicates that the field is variable width; at
366 least one
367 field must be -1. You should delete this array after calling
368 SetStatusWidths.
3c4f71cc 369
23324ae1 370 @remarks The widths of the variable fields are calculated from the total
4cc4bfaf
FM
371 width of all fields, minus the sum of widths of the
372 non-variable fields, divided by the number of variable
373 fields.
23324ae1 374 */
4cc4bfaf 375 virtual void SetStatusWidths(int n, int* widths);
23324ae1
FM
376
377 /**
378 Associates a toolbar with the frame.
379 */
380 void SetToolBar(wxToolBar* toolBar);
381};
e54c96f1 382