]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/frame.tex
Changed files to work with wxDataFormat
[wxWidgets.git] / docs / latex / wx / frame.tex
CommitLineData
a660d684
KB
1\section{\class{wxFrame}}\label{wxframe}
2
3A frame is a window whose size and position can (usually) be changed by the user. It usually has
4thick borders and a title bar, and can optionally contain a menu bar, toolbar and
5status bar. A frame can contain any window that is not a frame or dialog.
6
81d66cf3
JS
7A frame that has a status bar and toolbar created via the CreateStatusBar/CreateToolBar functions
8manages these windows, and adjusts the value returned by GetClientSize to reflect
9the remaining size available to application windows.
10
a660d684
KB
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
34See also \helpref{window styles overview}{windowstyles}.
35
36\wxheading{Remarks}
37
38An application should normally define an \helpref{OnCloseWindow}{wxwindowonclosewindow} handler for the
39frame 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
52Default constructor.
53
eaaa6a06 54\func{}{wxFrame}{\param{wxWindow* }{parent}, \param{wxWindowID }{id},\rtfsp
a660d684
KB
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
59Constructor, 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
64always 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
71either 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
74either 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,
79allowing the application user to set Motif resource values for
80individual windows.}
81
82\wxheading{Remarks}
83
84For 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
95Destructor. Destroys all child windows and menu bar if present.
96
97\membersection{wxFrame::Centre}\label{wxframecentre}
98
eaaa6a06 99\func{void}{Centre}{\param{int}{ direction = wxBOTH}}
a660d684
KB
100
101Centres 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
111Simulate 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
eaaa6a06 119\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID }{id},\rtfsp
a660d684
KB
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
124Used in two-step frame construction. See \helpref{wxFrame::wxFrame}{wxframeconstr}\rtfsp
125for further details.
126
127\membersection{wxFrame::CreateStatusBar}\label{wxframecreatestatusbar}
128
81d66cf3
JS
129\func{virtual wxStatusBar*}{CreateStatusBar}{\param{int}{ number = 1},
130 \param{long}{ style = 0},
131 \param{wxWindowID}{ id = -1}, \param{const wxString\&}{ name = "statusBar"}}
a660d684
KB
132
133Creates 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
138value greater than 1 to create a multi-field status bar.}
139
81d66cf3
JS
140\docparam{style}{The status bar style. See \helpref{wxStatusBar}{wxstatusbar} for a list
141of valid styles.}
142
143\docparam{id}{The status bar window identifier. If -1, an identifier will be chosen by
144wxWindows.}
145
146\docparam{name}{The status bar window name.}
147
a660d684
KB
148\wxheading{Return value}
149
81d66cf3 150A pointer to the the status bar if it was created successfully, NULL otherwise.
a660d684
KB
151
152\wxheading{Remarks}
153
154The width of the status bar is the whole width of the frame (adjusted automatically when
155resizing), and the height and text size are chosen by the host windowing system.
156
157By default, the status bar is an instance of wxStatusBar. To use a different class,
158override \helpref{wxFrame::OnCreateStatusBar}{wxframeoncreatestatusbar}.
159
160Note 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
81d66cf3
JS
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
173Creates 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
178of valid styles.}
179
180\docparam{id}{The toolbar window identifier. If -1, an identifier will be chosen by
181wxWindows.}
182
183\docparam{name}{The toolbar window name.}
184
185\wxheading{Return value}
186
187A pointer to the the toolbar if it was created successfully, NULL otherwise.
188
189\wxheading{Remarks}
190
191By default, the toolbar is an instance of wxToolBar (which is defined to be
192a suitable toolbar class on each platform, such as wxToolBar95). To use a different class,
193override \helpref{wxFrame::OnCreateToolBar}{wxframeoncreatetoolbar}.
194
195When a toolbar has been created with this function, or made known to the frame
196with \helpref{wxFrame::SetToolBar}{wxframesettoolbar}, the frame will manage the toolbar
197position and adjust the return value from \helpref{wxWindow::GetClientSize}{wxwindowgetclientsize} to
198reflect 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
a660d684
KB
207\membersection{wxFrame::GetMenuBar}\label{wxframegetmenubar}
208
209\constfunc{wxMenuBar*}{GetMenuBar}{\void}
210
211Returns 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
221Returns 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
231Gets a temporary pointer to the frame title. See
232\helpref{wxFrame::SetTitle}{wxframesettitle}.
233
81d66cf3
JS
234\membersection{wxFrame::GetToolBar}\label{wxframegettoolbar}
235
236\func{wxToolBar*}{GetToolBar}{\void}
237
238Returns 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
a660d684
KB
245\membersection{wxFrame::Iconize}\label{wxframeiconize}
246
247\func{void}{Iconize}{\param{const bool}{ iconize}}
248
249Iconizes 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
263Returns TRUE if the frame is iconized.
264
265\membersection{wxFrame::LoadAccelerators}\label{wxframeloadaccelerators}
266
267\func{void}{LoadAccelerators}{\param{const wxString\& }{table}}
268
269Loads 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
277TRUE if the operation was successful, FALSE otherwise.
278
279\wxheading{Remarks}
280
281Accelerator tables map keystrokes onto control and menu identifiers, so the
282programmer does not have to explicitly program this correspondence.
283
284See the hello demo ({\tt hello.cpp} and {\tt hello.rc}) for
285an example of accelerator usage. This is a fragment from {\tt hello.rc}:
286
287\begin{verbatim}
288#define HELLO_LOAD_FILE 111
289
290menus_accel ACCELERATORS
291{
292
293"^L", HELLO_LOAD_FILE
294
295}
296\end{verbatim}
297
298This 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
306Maximizes 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
314This 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
324Called when a window is activated or deactivated (MS Windows
325only). If the window is being activated, {\it active} is TRUE, else it
326is FALSE.
327
328If 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
81d66cf3
JS
336\func{virtual wxStatusBar*}{OnCreateStatusBar}{\param{int }{number}
337 \param{long}{ style},
338 \param{wxWindowID}{ id}, \param{const wxString\&}{ name}}
a660d684
KB
339
340Virtual 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
81d66cf3
JS
346\docparam{style}{The window style. See \helpref{wxStatusBar}{wxstatusbar} for a list
347of valid styles.}
348
349\docparam{id}{The window identifier. If -1, an identifier will be chosen by
350wxWindows.}
351
352\docparam{name}{The window name.}
353
a660d684
KB
354\wxheading{Return value}
355
356A status bar object.
357
358\wxheading{Remarks}
359
360An application can override this function to return a different kind of status bar. The default
361implementation returns an instance of \helpref{wxStatusBar}{wxstatusbar}.
362
363\wxheading{See also}
364
365\helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar}, \helpref{wxStatusBar}{wxstatusbar}.
366
81d66cf3
JS
367\membersection{wxFrame::OnCreateToolBar}\label{wxframeoncreatetoolbar}
368
369\func{virtual wxToolBar*}{OnCreateToolBar}{\param{long}{ style},
370 \param{wxWindowID}{ id}, \param{const wxString\&}{ name}}
371
372Virtual 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
377of valid styles.}
378
379\docparam{id}{The toolbar window identifier. If -1, an identifier will be chosen by
380wxWindows.}
381
382\docparam{name}{The toolbar window name.}
383
384\wxheading{Return value}
385
386A toolbar object.
387
388\wxheading{Remarks}
389
390An application can override this function to return a different kind of toolbar. The default
391implementation returns an instance of \helpref{wxToolBar}{wxtoolbar}.
392
393\wxheading{See also}
394
395\helpref{wxFrame::CreateToolBar}{wxframecreatetoolbar}, \helpref{wxToolBar}{wxtoolbar}.
396
a660d684
KB
397\membersection{wxFrame::OnMenuCommand}\label{wxframeonmenucommand}
398
399\func{void}{OnMenuCommand}{\param{wxCommandEvent\&}{ event}}
400
401See \helpref{wxWindow::OnMenuCommand}{wxwindowonmenucommand}.
402
403\membersection{wxFrame::OnMenuHighlight}\label{wxframeonmenuhighlight}
404
405\func{void}{OnMenuHighlight}{\param{wxMenuEvent\&}{ event}}
406
407See \helpref{wxWindow::OnMenuHighlight}{wxwindowonmenuhighlight}.
408
409\membersection{wxFrame::OnSize}\label{wxframeonsize}
410
411\func{void}{OnSize}{\param{wxSizeEvent\& }{event}}
412
413See \helpref{wxWindow::OnSize}{wxwindowonsize}.
414
415The default {\bf wxFrame::OnSize} implementation looks for a single subwindow,
416and if one is found, resizes it to fit
417inside the frame. Override this member if more complex behaviour
418is 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
424Sets 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
432The frame takes a `copy' of {\it icon}, but since it uses reference
433counting, the copy is very quick. It is safe to delete {\it icon} after
434calling this function.
435
436Under Windows, instead of using {\bf SetIcon}, you can add the
437following lines to your MS Windows resource file:
438
439\begin{verbatim}
440wxSTD_MDIPARENTFRAME ICON icon1.ico
441wxSTD_MDICHILDFRAME ICON icon2.ico
442wxSTD_FRAME ICON icon3.ico
443\end{verbatim}
444
445where icon1.ico will be used for the MDI parent frame, icon2.ico
446will be used for MDI child frames, and icon3.ico will be used for
447non-MDI frames.
448
449If these icons are not supplied, and {\bf SetIcon} is not called either,
450then the following defaults apply if you have included wx.rc.
451
452\begin{verbatim}
453wxDEFAULT_FRAME ICON std.ico
454wxDEFAULT_MDIPARENTFRAME ICON mdi.ico
455wxDEFAULT_MDICHILDFRAME ICON child.ico
456\end{verbatim}
457
458You can replace std.ico, mdi.ico and child.ico with your own defaults
459for 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
463to wxFrame::SetIcon. To work around this until a solution is found,
464mark your program as a 3.5 application. This will also ensure
465that Windows provides small icons for the application automatically.
466
467See also \helpref{wxIcon}{wxicon}.
468
469\membersection{wxFrame::SetMenuBar}\label{wxframesetmenubar}
470
471\func{void}{SetMenuBar}{\param{wxMenuBar* }{menuBar}}
472
473Tells 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
481If the frame is destroyed, the
482menu bar and its menus will be destroyed also, so do not delete the menu
483bar explicitly (except by resetting the frame's menu bar to another
484frame or NULL).
485
486Under Windows, a call to \helpref{wxFrame::OnSize}{wxframeonsize} is generated, so be sure to initialize
487data members properly before calling {\bf SetMenuBar}.
488
489Note 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
81d66cf3
JS
495\membersection{wxFrame::SetStatusBar}\label{wxframesetstatusbar}
496
497\func{void}{SetStatusBar}{\param{wxStatusBar*}{ statusBar}}
498
499Associates 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
a660d684
KB
506\membersection{wxFrame::SetStatusText}\label{wxframesetstatustext}
507
eaaa6a06 508\func{virtual void}{SetStatusText}{\param{const wxString\& }{ text}, \param{int}{ number = 0}}
a660d684
KB
509
510Sets 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
520Use 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
eaaa6a06 528\func{virtual void}{SetStatusWidths}{\param{int}{ n}, \param{int *}{widths}}
a660d684
KB
529
530Sets 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
535same 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
538in pixels. A value of -1 indicates that the field is variable width; at least one
539field must be -1. You should delete this array after calling {\bf SetStatusWidths}.}
540
541\wxheading{Remarks}
542
543The widths of the variable fields are calculated from the total width of all fields,
544minus the sum of widths of the non-variable fields, divided by the number of
545variable fields.
546
81d66cf3
JS
547\membersection{wxFrame::SetToolBar}\label{wxframesettoolbar}
548
549\func{void}{SetToolBar}{\param{wxToolBar*}{ toolBar}}
550
551Associates 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
a660d684
KB
558\membersection{wxFrame::SetTitle}\label{wxframesettitle}
559
560\func{virtual void}{SetTitle}{\param{const wxString\& }{ title}}
561
562Sets 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