]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/frame.tex
wxSize/wxPoint/wxRect versions of functions added to wxMSW, wxMotif;
[wxWidgets.git] / docs / latex / wx / frame.tex
1 \section{\class{wxFrame}}\label{wxframe}
2
3 A frame is a window whose size and position can (usually) be changed by the user. It usually has
4 thick borders and a title bar, and can optionally contain a menu bar, toolbar and
5 status bar. A frame can contain any window that is not a frame or dialog.
6
7 A frame that has a status bar and toolbar created via the CreateStatusBar/CreateToolBar functions
8 manages these windows, and adjusts the value returned by GetClientSize to reflect
9 the remaining size available to application windows.
10
11 \wxheading{Derived from}
12
13 \helpref{wxWindow}{wxwindow}\\
14 \helpref{wxEvtHandler}{wxevthandler}\\
15 \helpref{wxObject}{wxobject}
16
17 \wxheading{Window styles}
18
19 \twocolwidtha{5cm}
20 \begin{twocollist}\itemsep=0pt
21 \twocolitem{\windowstyle{wxICONIZE}}{Display the frame iconized (minimized) (Windows only).}
22 \twocolitem{\windowstyle{wxCAPTION}}{Puts a caption on the frame.}
23 \twocolitem{\windowstyle{wxDEFAULT\_FRAME\_STYLE}}{Defined as {\bf wxMINIMIZE\_BOX \pipe wxMAXIMIZE\_BOX \pipe wxTHICK\_FRAME \pipe wxSYSTEM\_MENU \pipe wxCAPTION}.}
24 \twocolitem{\windowstyle{wxMINIMIZE}}{Identical to {\bf wxICONIZE}.}
25 \twocolitem{\windowstyle{wxMINIMIZE\_BOX}}{Displays a minimize box on the frame (Windows and Motif only).}
26 \twocolitem{\windowstyle{wxMAXIMIZE}}{Displays the frame maximized (Windows only).}
27 \twocolitem{\windowstyle{wxMAXIMIZE\_BOX}}{Displays a maximize box on the frame (Windows and Motif only).}
28 \twocolitem{\windowstyle{wxSTAY\_ON\_TOP}}{Stay on top of other windows (Windows only).}
29 \twocolitem{\windowstyle{wxSYSTEM\_MENU}}{Displays a system menu (Windows and Motif only).}
30 \twocolitem{\windowstyle{wxTHICK\_FRAME}}{Displays a thick frame around the window (Windows and Motif only).}
31 \twocolitem{\windowstyle{wxRESIZE\_BORDER}}{Displays a resizeable border around the window (Motif only).}
32 \end{twocollist}
33
34 See also \helpref{window styles overview}{windowstyles}.
35
36 \wxheading{Remarks}
37
38 An application should normally define an \helpref{OnCloseWindow}{wxwindowonclosewindow} handler for the
39 frame to respond to system close events, for example so that related data and subwindows can be cleaned up.
40
41 \wxheading{See also}
42
43 \helpref{wxMDIParentFrame}{wxmdiparentframe}, \helpref{wxMDIChildFrame}{wxmdichildframe},\rtfsp
44 \helpref{wxMiniFrame}{wxminiframe}, \helpref{wxDialog}{wxdialog}
45
46 \latexignore{\rtfignore{\wxheading{Members}}}
47
48 \membersection{wxFrame::wxFrame}\label{wxframeconstr}
49
50 \func{}{wxFrame}{\void}
51
52 Default constructor.
53
54 \func{}{wxFrame}{\param{wxWindow* }{parent}, \param{wxWindowID }{id},\rtfsp
55 \param{const wxString\& }{title}, \param{const wxPoint\&}{ pos = wxDefaultPosition},\rtfsp
56 \param{const wxSize\&}{ size = wxDefaultSize}, \param{long}{ style = wxDEFAULT\_FRAME\_STYLE},\rtfsp
57 \param{const wxString\& }{name = ``frame"}}
58
59 Constructor, creating the window.
60
61 \wxheading{Parameters}
62
63 \docparam{parent}{The window parent. This may be NULL. If it is non-NULL, the frame will
64 always be displayed on top of the parent window on Windows.}
65
66 \docparam{id}{The window identifier. It may take a value of -1 to indicate a default value.}
67
68 \docparam{title}{The caption to be displayed on the frame's title bar.}
69
70 \docparam{pos}{The window position. A value of (-1, -1) indicates a default position, chosen by
71 either the windowing system or wxWindows, depending on platform.}
72
73 \docparam{size}{The window size. A value of (-1, -1) indicates a default size, chosen by
74 either the windowing system or wxWindows, depending on platform.}
75
76 \docparam{style}{The window style. See \helpref{wxFrame}{wxframe}.}
77
78 \docparam{name}{The name of the window. This parameter is used to associate a name with the item,
79 allowing the application user to set Motif resource values for
80 individual windows.}
81
82 \wxheading{Remarks}
83
84 For Motif, MWM (the Motif Window Manager) should be running for any window styles to work
85 (otherwise all styles take effect).
86
87 \wxheading{See also}
88
89 \helpref{wxFrame::Create}{wxframecreate}
90
91 \membersection{wxFrame::\destruct{wxFrame}}
92
93 \func{void}{\destruct{wxFrame}}{\void}
94
95 Destructor. Destroys all child windows and menu bar if present.
96
97 \membersection{wxFrame::Centre}\label{wxframecentre}
98
99 \func{void}{Centre}{\param{int}{ direction = wxBOTH}}
100
101 Centres the frame on the display.
102
103 \wxheading{Parameters}
104
105 \docparam{direction}{The parameter may be {\tt wxHORIZONTAL}, {\tt wxVERTICAL} or {\tt wxBOTH}.}
106
107 \membersection{wxFrame::Command}\label{wxframecommand}
108
109 \func{void}{Command}{\param{int }{id}}
110
111 Simulate a menu command.
112
113 \wxheading{Parameters}
114
115 \docparam{id}{The identifier for a menu item.}
116
117 \membersection{wxFrame::Create}\label{wxframecreate}
118
119 \func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID }{id},\rtfsp
120 \param{const wxString\& }{title}, \param{const wxPoint\&}{ pos = wxDefaultPosition},\rtfsp
121 \param{const wxSize\&}{ size = wxDefaultSize}, \param{long}{ style = wxDEFAULT\_FRAME\_STYLE},\rtfsp
122 \param{const wxString\& }{name = ``frame"}}
123
124 Used in two-step frame construction. See \helpref{wxFrame::wxFrame}{wxframeconstr}\rtfsp
125 for further details.
126
127 \membersection{wxFrame::CreateStatusBar}\label{wxframecreatestatusbar}
128
129 \func{virtual wxStatusBar*}{CreateStatusBar}{\param{int}{ number = 1},
130 \param{long}{ style = 0},
131 \param{wxWindowID}{ id = -1}, \param{const wxString\&}{ name = "statusBar"}}
132
133 Creates a status bar at the bottom of the frame.
134
135 \wxheading{Parameters}
136
137 \docparam{number}{The number of fields to create. Specify a
138 value greater than 1 to create a multi-field status bar.}
139
140 \docparam{style}{The status bar style. See \helpref{wxStatusBar}{wxstatusbar} for a list
141 of valid styles.}
142
143 \docparam{id}{The status bar window identifier. If -1, an identifier will be chosen by
144 wxWindows.}
145
146 \docparam{name}{The status bar window name.}
147
148 \wxheading{Return value}
149
150 A pointer to the the status bar if it was created successfully, NULL otherwise.
151
152 \wxheading{Remarks}
153
154 The width of the status bar is the whole width of the frame (adjusted automatically when
155 resizing), and the height and text size are chosen by the host windowing system.
156
157 By default, the status bar is an instance of wxStatusBar. To use a different class,
158 override \helpref{wxFrame::OnCreateStatusBar}{wxframeoncreatestatusbar}.
159
160 Note that you can put controls and other windows on the status bar if you wish.
161
162 \wxheading{See also}
163
164 \helpref{wxFrame::SetStatusText}{wxframesetstatustext},\rtfsp
165 \helpref{wxFrame::OnCreateStatusBar}{wxframeoncreatestatusbar},\rtfsp
166 \helpref{wxFrame::GetStatusBar}{wxframegetstatusbar}
167
168 \membersection{wxFrame::CreateToolBar}\label{wxframecreatetoolbar}
169
170 \func{virtual wxToolBar*}{CreateToolBar}{\param{long}{ style = wxNO\_BORDER \pipe wxTB\_HORIZONTAL},
171 \param{wxWindowID}{ id = -1}, \param{const wxString\&}{ name = "toolBar"}}
172
173 Creates a toolbar at the top or left of the frame.
174
175 \wxheading{Parameters}
176
177 \docparam{style}{The toolbar style. See \helpref{wxToolBar}{wxtoolbar} for a list
178 of valid styles.}
179
180 \docparam{id}{The toolbar window identifier. If -1, an identifier will be chosen by
181 wxWindows.}
182
183 \docparam{name}{The toolbar window name.}
184
185 \wxheading{Return value}
186
187 A pointer to the the toolbar if it was created successfully, NULL otherwise.
188
189 \wxheading{Remarks}
190
191 By default, the toolbar is an instance of wxToolBar (which is defined to be
192 a suitable toolbar class on each platform, such as wxToolBar95). To use a different class,
193 override \helpref{wxFrame::OnCreateToolBar}{wxframeoncreatetoolbar}.
194
195 When a toolbar has been created with this function, or made known to the frame
196 with \helpref{wxFrame::SetToolBar}{wxframesettoolbar}, the frame will manage the toolbar
197 position and adjust the return value from \helpref{wxWindow::GetClientSize}{wxwindowgetclientsize} to
198 reflect the available space for application windows.
199
200 \wxheading{See also}
201
202 \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar},\rtfsp
203 \helpref{wxFrame::OnCreateToolBar}{wxframeoncreatetoolbar},\rtfsp
204 \helpref{wxFrame::SetToolBar}{wxframesettoolbar},\rtfsp
205 \helpref{wxFrame::GetToolBar}{wxframegettoolbar}
206
207 \membersection{wxFrame::GetMenuBar}\label{wxframegetmenubar}
208
209 \constfunc{wxMenuBar*}{GetMenuBar}{\void}
210
211 Returns a pointer to the menubar currently associated with the frame (if any).
212
213 \wxheading{See also}
214
215 \helpref{wxFrame::SetMenuBar}{wxframesetmenubar}, \helpref{wxMenuBar}{wxmenubar}, \helpref{wxMenu}{wxmenu}
216
217 \membersection{wxFrame::GetStatusBar}\label{wxframegetstatusbar}
218
219 \func{wxStatusBar*}{GetStatusBar}{\void}
220
221 Returns a pointer to the status bar currently associated with the frame (if any).
222
223 \wxheading{See also}
224
225 \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar}, \helpref{wxStatusBar}{wxstatusbar}
226
227 \membersection{wxFrame::GetTitle}\label{wxframegettitle}
228
229 \func{wxString\&}{GetTitle}{\void}
230
231 Gets a temporary pointer to the frame title. See
232 \helpref{wxFrame::SetTitle}{wxframesettitle}.
233
234 \membersection{wxFrame::GetToolBar}\label{wxframegettoolbar}
235
236 \func{wxToolBar*}{GetToolBar}{\void}
237
238 Returns a pointer to the toolbar currently associated with the frame (if any).
239
240 \wxheading{See also}
241
242 \helpref{wxFrame::CreateToolBar}{wxframecreatetoolbar}, \helpref{wxToolBar}{wxtoolbar},\rtfsp
243 \helpref{wxFrame::SetToolBar}{wxframesettoolbar}
244
245 \membersection{wxFrame::Iconize}\label{wxframeiconize}
246
247 \func{void}{Iconize}{\param{const bool}{ iconize}}
248
249 Iconizes or restores the frame.
250
251 \wxheading{Parameters}
252
253 \docparam{izonize}{If TRUE, iconizes the frame; if FALSE, shows and restores it.}
254
255 \wxheading{See also}
256
257 \helpref{wxFrame::IsIconized}{wxframeisiconized}, \helpref{wxFrame::Maximize}{wxframemaximize}.
258
259 \membersection{wxFrame::IsIconized}\label{wxframeisiconized}
260
261 \func{bool}{IsIconized}{\void}
262
263 Returns TRUE if the frame is iconized.
264
265 \membersection{wxFrame::LoadAccelerators}\label{wxframeloadaccelerators}
266
267 \func{void}{LoadAccelerators}{\param{const wxString\& }{table}}
268
269 Loads a keyboard accelerator table for this frame.
270
271 \wxheading{Parameters}
272
273 \docparam{table}{Accelerator table to load.}
274
275 \wxheading{Return value}
276
277 TRUE if the operation was successful, FALSE otherwise.
278
279 \wxheading{Remarks}
280
281 Accelerator tables map keystrokes onto control and menu identifiers, so the
282 programmer does not have to explicitly program this correspondence.
283
284 See the hello demo ({\tt hello.cpp} and {\tt hello.rc}) for
285 an example of accelerator usage. This is a fragment from {\tt hello.rc}:
286
287 \begin{verbatim}
288 #define HELLO_LOAD_FILE 111
289
290 menus_accel ACCELERATORS
291 {
292
293 "^L", HELLO_LOAD_FILE
294
295 }
296 \end{verbatim}
297
298 This function only works under Windows.
299
300 % huh? If you call LoadAccelerators, you need to override wxFrame::OnActivate to do nothing.
301
302 \membersection{wxFrame::Maximize}\label{wxframemaximize}
303
304 \func{void}{Maximize}{\param{const bool }{maximize}}
305
306 Maximizes or restores the frame.
307
308 \wxheading{Parameters}
309
310 \docparam{maximize}{If TRUE, maximizes the frame, otherwise it restores it}.
311
312 \wxheading{Remarks}
313
314 This function only works under Windows.
315
316 \wxheading{See also}
317
318 \helpref{wxFrame::Iconize}{wxframeiconize}
319
320 \membersection{wxFrame::OnActivate}
321
322 \func{void}{OnActivate}{\param{bool}{ active}}
323
324 Called when a window is activated or deactivated (MS Windows
325 only). If the window is being activated, {\it active} is TRUE, else it
326 is FALSE.
327
328 If you call wxFrame::LoadAccelerators, you need to override this function e.g.
329
330 \begin{verbatim}
331 void OnActivate(bool) {};
332 \end{verbatim}
333
334 \membersection{wxFrame::OnCreateStatusBar}\label{wxframeoncreatestatusbar}
335
336 \func{virtual wxStatusBar*}{OnCreateStatusBar}{\param{int }{number}
337 \param{long}{ style},
338 \param{wxWindowID}{ id}, \param{const wxString\&}{ name}}
339
340 Virtual function called when a status bar is requested by \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar}.
341
342 \wxheading{Parameters}
343
344 \docparam{number}{The number of fields to create.}
345
346 \docparam{style}{The window style. See \helpref{wxStatusBar}{wxstatusbar} for a list
347 of valid styles.}
348
349 \docparam{id}{The window identifier. If -1, an identifier will be chosen by
350 wxWindows.}
351
352 \docparam{name}{The window name.}
353
354 \wxheading{Return value}
355
356 A status bar object.
357
358 \wxheading{Remarks}
359
360 An application can override this function to return a different kind of status bar. The default
361 implementation returns an instance of \helpref{wxStatusBar}{wxstatusbar}.
362
363 \wxheading{See also}
364
365 \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar}, \helpref{wxStatusBar}{wxstatusbar}.
366
367 \membersection{wxFrame::OnCreateToolBar}\label{wxframeoncreatetoolbar}
368
369 \func{virtual wxToolBar*}{OnCreateToolBar}{\param{long}{ style},
370 \param{wxWindowID}{ id}, \param{const wxString\&}{ name}}
371
372 Virtual function called when a toolbar is requested by \helpref{wxFrame::CreateToolBar}{wxframecreatetoolbar}.
373
374 \wxheading{Parameters}
375
376 \docparam{style}{The toolbar style. See \helpref{wxToolBar}{wxtoolbar} for a list
377 of valid styles.}
378
379 \docparam{id}{The toolbar window identifier. If -1, an identifier will be chosen by
380 wxWindows.}
381
382 \docparam{name}{The toolbar window name.}
383
384 \wxheading{Return value}
385
386 A toolbar object.
387
388 \wxheading{Remarks}
389
390 An application can override this function to return a different kind of toolbar. The default
391 implementation returns an instance of \helpref{wxToolBar}{wxtoolbar}.
392
393 \wxheading{See also}
394
395 \helpref{wxFrame::CreateToolBar}{wxframecreatetoolbar}, \helpref{wxToolBar}{wxtoolbar}.
396
397 \membersection{wxFrame::OnMenuCommand}\label{wxframeonmenucommand}
398
399 \func{void}{OnMenuCommand}{\param{wxCommandEvent\&}{ event}}
400
401 See \helpref{wxWindow::OnMenuCommand}{wxwindowonmenucommand}.
402
403 \membersection{wxFrame::OnMenuHighlight}\label{wxframeonmenuhighlight}
404
405 \func{void}{OnMenuHighlight}{\param{wxMenuEvent\&}{ event}}
406
407 See \helpref{wxWindow::OnMenuHighlight}{wxwindowonmenuhighlight}.
408
409 \membersection{wxFrame::OnSize}\label{wxframeonsize}
410
411 \func{void}{OnSize}{\param{wxSizeEvent\& }{event}}
412
413 See \helpref{wxWindow::OnSize}{wxwindowonsize}.
414
415 The default {\bf wxFrame::OnSize} implementation looks for a single subwindow,
416 and if one is found, resizes it to fit
417 inside the frame. Override this member if more complex behaviour
418 is required (for example, if there are several subwindows).
419
420 \membersection{wxFrame::SetIcon}\label{wxframeseticon}
421
422 \func{void}{SetIcon}{\param{const wxIcon\& }{icon}}
423
424 Sets the icon for this frame.
425
426 \wxheading{Parameters}
427
428 \docparam{icon}{The icon to associate with this frame.}
429
430 \wxheading{Remarks}
431
432 The frame takes a `copy' of {\it icon}, but since it uses reference
433 counting, the copy is very quick. It is safe to delete {\it icon} after
434 calling this function.
435
436 Under Windows, instead of using {\bf SetIcon}, you can add the
437 following lines to your MS Windows resource file:
438
439 \begin{verbatim}
440 wxSTD_MDIPARENTFRAME ICON icon1.ico
441 wxSTD_MDICHILDFRAME ICON icon2.ico
442 wxSTD_FRAME ICON icon3.ico
443 \end{verbatim}
444
445 where icon1.ico will be used for the MDI parent frame, icon2.ico
446 will be used for MDI child frames, and icon3.ico will be used for
447 non-MDI frames.
448
449 If these icons are not supplied, and {\bf SetIcon} is not called either,
450 then the following defaults apply if you have included wx.rc.
451
452 \begin{verbatim}
453 wxDEFAULT_FRAME ICON std.ico
454 wxDEFAULT_MDIPARENTFRAME ICON mdi.ico
455 wxDEFAULT_MDICHILDFRAME ICON child.ico
456 \end{verbatim}
457
458 You can replace std.ico, mdi.ico and child.ico with your own defaults
459 for all your wxWindows application. Currently they show the same icon.
460
461 {\it Note:} a wxWindows application linked with subsystem equal to 4.0
462 (i.e. marked as a Windows 95 application) doesn't respond properly
463 to wxFrame::SetIcon. To work around this until a solution is found,
464 mark your program as a 3.5 application. This will also ensure
465 that Windows provides small icons for the application automatically.
466
467 See also \helpref{wxIcon}{wxicon}.
468
469 \membersection{wxFrame::SetMenuBar}\label{wxframesetmenubar}
470
471 \func{void}{SetMenuBar}{\param{wxMenuBar* }{menuBar}}
472
473 Tells the frame to show the given menu bar.
474
475 \wxheading{Parameters}
476
477 \docparam{menuBar}{The menu bar to associate with the frame.}
478
479 \wxheading{Remarks}
480
481 If the frame is destroyed, the
482 menu bar and its menus will be destroyed also, so do not delete the menu
483 bar explicitly (except by resetting the frame's menu bar to another
484 frame or NULL).
485
486 Under Windows, a call to \helpref{wxFrame::OnSize}{wxframeonsize} is generated, so be sure to initialize
487 data members properly before calling {\bf SetMenuBar}.
488
489 Note that it is not possible to call this function twice for the same frame object.
490
491 \wxheading{See also}
492
493 \helpref{wxFrame::GetMenuBar}{wxframegetmenubar}, \helpref{wxMenuBar}{wxmenubar}, \helpref{wxMenu}{wxmenu}.
494
495 \membersection{wxFrame::SetStatusBar}\label{wxframesetstatusbar}
496
497 \func{void}{SetStatusBar}{\param{wxStatusBar*}{ statusBar}}
498
499 Associates a status bar with the frame.
500
501 \wxheading{See also}
502
503 \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar}, \helpref{wxStatusBar}{wxstatusbar},\rtfsp
504 \helpref{wxFrame::GetStatusBar}{wxframegetstatusbar}
505
506 \membersection{wxFrame::SetStatusText}\label{wxframesetstatustext}
507
508 \func{virtual void}{SetStatusText}{\param{const wxString\& }{ text}, \param{int}{ number = 0}}
509
510 Sets the status bar text and redraws the status bar.
511
512 \wxheading{Parameters}
513
514 \docparam{text}{The text for the status field.}
515
516 \docparam{number}{The status field (starting from zero).}
517
518 \wxheading{Remarks}
519
520 Use an empty string to clear the status bar.
521
522 \wxheading{See also}
523
524 \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar}, \helpref{wxStatusBar}{wxstatusbar}
525
526 \membersection{wxFrame::SetStatusWidths}\label{wxframesetstatuswidths}
527
528 \func{virtual void}{SetStatusWidths}{\param{int}{ n}, \param{int *}{widths}}
529
530 Sets the widths of the fields in the status bar.
531
532 \wxheading{Parameters}
533
534 \wxheading{n}{The number of fields in the status bar. It must be the
535 same used in \helpref{CreateStatusBar}{wxframecreatestatusbar}.}
536
537 \docparam{widths}{Must contain an array of {\it n} integers, each of which is a status field width
538 in pixels. A value of -1 indicates that the field is variable width; at least one
539 field must be -1. You should delete this array after calling {\bf SetStatusWidths}.}
540
541 \wxheading{Remarks}
542
543 The widths of the variable fields are calculated from the total width of all fields,
544 minus the sum of widths of the non-variable fields, divided by the number of
545 variable fields.
546
547 \membersection{wxFrame::SetToolBar}\label{wxframesettoolbar}
548
549 \func{void}{SetToolBar}{\param{wxToolBar*}{ toolBar}}
550
551 Associates a toolbar with the frame.
552
553 \wxheading{See also}
554
555 \helpref{wxFrame::CreateToolBar}{wxframecreatetoolbar}, \helpref{wxToolBar}{wxtoolbar},\rtfsp
556 \helpref{wxFrame::GetToolBar}{wxframegettoolbar}
557
558 \membersection{wxFrame::SetTitle}\label{wxframesettitle}
559
560 \func{virtual void}{SetTitle}{\param{const wxString\& }{ title}}
561
562 Sets the frame title.
563
564 \wxheading{Parameters}
565
566 \docparam{title}{The frame title.}
567
568 \wxheading{See also}
569
570 \helpref{wxFrame::GetTitle}{wxframegettitle}
571