1 \section{\class{wxFrame
}}\label{wxframe
}
3 A frame is a window whose size and position can (usually) be changed by the
4 user. It usually has thick borders and a title bar, and can optionally contain
5 a menu bar, toolbar and status bar. A frame can contain any window that is not
8 A frame that has a status bar and toolbar created via the
9 CreateStatusBar/CreateToolBar functions manages these windows, and adjusts the
10 value returned by GetClientSize to reflect the remaining size available to
13 \wxheading{Derived from
}
15 \helpref{wxWindow
}{wxwindow
}\\
16 \helpref{wxEvtHandler
}{wxevthandler
}\\
17 \helpref{wxObject
}{wxobject
}
19 \wxheading{Include files
}
23 \wxheading{Window styles
}
26 \begin{twocollist
}\itemsep=
0pt
27 \twocolitem{\windowstyle{wxDEFAULT
\_FRAME\_STYLE}}{Defined as
{\bf wxMINIMIZE
\_BOX \pipe wxMAXIMIZE
\_BOX \pipe wxRESIZE
\_BORDER \pipe wxSYSTEM
\_MENU \pipe wxCAPTION
}.
}
28 \twocolitem{\windowstyle{wxICONIZE
}}{Display the frame iconized (minimized). Windows only.
}
29 \twocolitem{\windowstyle{wxCAPTION
}}{Puts a caption on the frame.
}
30 \twocolitem{\windowstyle{wxMINIMIZE
}}{Identical to
{\bf wxICONIZE
}. Windows only.
}
31 \twocolitem{\windowstyle{wxMINIMIZE
\_BOX}}{Displays a minimize box on the frame.
}
32 \twocolitem{\windowstyle{wxMAXIMIZE
}}{Displays the frame maximized. Windows only.
}
33 \twocolitem{\windowstyle{wxMAXIMIZE
\_BOX}}{Displays a maximize box on the frame.
}
34 \twocolitem{\windowstyle{wxSTAY
\_ON\_TOP}}{Stay on top of all other windows,
35 see also wxFRAME
\_FLOAT\_ON\_PARENT. Windows only.
}
36 \twocolitem{\windowstyle{wxSYSTEM
\_MENU}}{Displays a system menu.
}
37 \twocolitem{\windowstyle{wxSIMPLE
\_BORDER}}{Displays no border or decorations. GTK and Windows only.
}
38 \twocolitem{\windowstyle{wxRESIZE
\_BORDER}}{Displays a resizeable border around the window.
}
39 \twocolitem{\windowstyle{wxFRAME
\_TOOL\_WINDOW}}{Causes a frame with a small
40 titlebar to be created; the frame does not appear in the taskbar under Windows.
}
41 \twocolitem{\windowstyle{wxFRAME
\_NO\_TASKBAR}}{Creates an otherwise normal
42 frame but it does not appear in the taskbar under Windows (note that it will
43 minimize to the desktop window which may seem strange to the users and thus it
44 might be better to use this style only without wxMINIMIZE
\_BOX style).
45 Has no effect under other platforms.
}
46 \twocolitem{\windowstyle{wxFRAME
\_FLOAT\_ON\_PARENT}}{The frame will always be
47 on top of its parent (unlike wxSTAY
\_ON\_TOP). A frame created with this style
48 must have a non-NULL parent.
}
49 \twocolitem{\windowstyle{wxFRAME
\_EX\_CONTEXTHELP}}{Under Windows, puts a query button on the
50 caption. When pressed, Windows will go into a context-sensitive help mode and wxWindows will send
51 a wxEVT
\_HELP event if the user clicked on an application window.
{\it Note
} that this is an extended
52 style and must be set by calling
\helpref{SetExtraStyle
}{wxwindowsetextrastyle
} before Create is called (two-step construction).
53 You cannot use this style together with wxMAXIMIZE
\_BOX or wxMINIMIZE
\_BOX, so
55 {\tt wxDEFAULT
\_FRAME\_STYLE \& \~ (wxMINIMIZE
\_BOX | wxMAXIMIZE
\_BOX)
} for the
56 frames having this style (the dialogs don't have minimize nor maximize box by
60 The default frame style is for normal, resizeable frames. To create a frame
61 which can not be resized by user, you may use the following combination of
62 styles:
{\tt wxDEFAULT
\_FRAME\_STYLE \& \~ (wxRESIZE
\_BORDER \pipe wxRESIZE
\_BOX \pipe wxMAXIMIZE
\_BOX)
}.
63 % Note: the space after the tilde is necessary or Tex2RTF complains.
65 See also
\helpref{window styles overview
}{windowstyles
}.
69 An application should normally define an
\helpref{wxCloseEvent
}{wxcloseevent
} handler for the
70 frame to respond to system close events, for example so that related data and subwindows can be cleaned up.
74 \helpref{wxMDIParentFrame
}{wxmdiparentframe
},
\helpref{wxMDIChildFrame
}{wxmdichildframe
},
\rtfsp
75 \helpref{wxMiniFrame
}{wxminiframe
},
\helpref{wxDialog
}{wxdialog
}
77 \latexignore{\rtfignore{\wxheading{Members
}}}
79 \membersection{wxFrame::wxFrame
}\label{wxframeconstr
}
81 \func{}{wxFrame
}{\void}
85 \func{}{wxFrame
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id
},
\rtfsp
86 \param{const wxString\&
}{title
},
\param{const wxPoint\&
}{ pos = wxDefaultPosition
},
\rtfsp
87 \param{const wxSize\&
}{ size = wxDefaultSize
},
\param{long
}{ style = wxDEFAULT
\_FRAME\_STYLE},
\rtfsp
88 \param{const wxString\&
}{name = ``frame"
}}
90 Constructor, creating the window.
92 \wxheading{Parameters
}
94 \docparam{parent
}{The window parent. This may be NULL. If it is non-NULL, the frame will
95 always be displayed on top of the parent window on Windows.
}
97 \docparam{id
}{The window identifier. It may take a value of -
1 to indicate a default value.
}
99 \docparam{title
}{The caption to be displayed on the frame's title bar.
}
101 \docparam{pos
}{The window position. A value of (-
1, -
1) indicates a default position, chosen by
102 either the windowing system or wxWindows, depending on platform.
}
104 \docparam{size
}{The window size. A value of (-
1, -
1) indicates a default size, chosen by
105 either the windowing system or wxWindows, depending on platform.
}
107 \docparam{style
}{The window style. See
\helpref{wxFrame
}{wxframe
}.
}
109 \docparam{name
}{The name of the window. This parameter is used to associate a name with the item,
110 allowing the application user to set Motif resource values for
115 For Motif, MWM (the Motif Window Manager) should be running for any window styles to work
116 (otherwise all styles take effect).
120 \helpref{wxFrame::Create
}{wxframecreate
}
122 \membersection{wxFrame::
\destruct{wxFrame
}}
124 \func{void
}{\destruct{wxFrame
}}{\void}
126 Destructor. Destroys all child windows and menu bar if present.
128 \membersection{wxFrame::Centre
}\label{wxframecentre
}
130 \func{void
}{Centre
}{\param{int
}{ direction = wxBOTH
}}
132 Centres the frame on the display.
134 \wxheading{Parameters
}
136 \docparam{direction
}{The parameter may be
{\tt wxHORIZONTAL
},
{\tt wxVERTICAL
} or
{\tt wxBOTH
}.
}
138 \membersection{wxFrame::Command
}\label{wxframecommand
}
140 \func{void
}{Command
}{\param{int
}{id
}}
142 Simulate a menu command.
144 \wxheading{Parameters
}
146 \docparam{id
}{The identifier for a menu item.
}
148 \membersection{wxFrame::Create
}\label{wxframecreate
}
150 \func{bool
}{Create
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id
},
\rtfsp
151 \param{const wxString\&
}{title
},
\param{const wxPoint\&
}{ pos = wxDefaultPosition
},
\rtfsp
152 \param{const wxSize\&
}{ size = wxDefaultSize
},
\param{long
}{ style = wxDEFAULT
\_FRAME\_STYLE},
\rtfsp
153 \param{const wxString\&
}{name = ``frame"
}}
155 Used in two-step frame construction. See
\helpref{wxFrame::wxFrame
}{wxframeconstr
}\rtfsp
158 \membersection{wxFrame::CreateStatusBar
}\label{wxframecreatestatusbar
}
160 \func{virtual wxStatusBar*
}{CreateStatusBar
}{\param{int
}{ number =
1},
161 \param{long
}{ style =
0},
162 \param{wxWindowID
}{ id = -
1},
\param{const wxString\&
}{ name = "statusBar"
}}
164 Creates a status bar at the bottom of the frame.
166 \wxheading{Parameters
}
168 \docparam{number
}{The number of fields to create. Specify a
169 value greater than
1 to create a multi-field status bar.
}
171 \docparam{style
}{The status bar style. See
\helpref{wxStatusBar
}{wxstatusbar
} for a list
174 \docparam{id
}{The status bar window identifier. If -
1, an identifier will be chosen by
177 \docparam{name
}{The status bar window name.
}
179 \wxheading{Return value
}
181 A pointer to the the status bar if it was created successfully, NULL otherwise.
185 The width of the status bar is the whole width of the frame (adjusted automatically when
186 resizing), and the height and text size are chosen by the host windowing system.
188 By default, the status bar is an instance of wxStatusBar. To use a different class,
189 override
\helpref{wxFrame::OnCreateStatusBar
}{wxframeoncreatestatusbar
}.
191 Note that you can put controls and other windows on the status bar if you wish.
195 \helpref{wxFrame::SetStatusText
}{wxframesetstatustext
},
\rtfsp
196 \helpref{wxFrame::OnCreateStatusBar
}{wxframeoncreatestatusbar
},
\rtfsp
197 \helpref{wxFrame::GetStatusBar
}{wxframegetstatusbar
}
199 \membersection{wxFrame::CreateToolBar
}\label{wxframecreatetoolbar
}
201 \func{virtual wxToolBar*
}{CreateToolBar
}{\param{long
}{ style = wxNO
\_BORDER \pipe wxTB
\_HORIZONTAL},
202 \param{wxWindowID
}{ id = -
1},
\param{const wxString\&
}{ name = "toolBar"
}}
204 Creates a toolbar at the top or left of the frame.
206 \wxheading{Parameters
}
208 \docparam{style
}{The toolbar style. See
\helpref{wxToolBar
}{wxtoolbar
} for a list
211 \docparam{id
}{The toolbar window identifier. If -
1, an identifier will be chosen by
214 \docparam{name
}{The toolbar window name.
}
216 \wxheading{Return value
}
218 A pointer to the the toolbar if it was created successfully, NULL otherwise.
222 By default, the toolbar is an instance of wxToolBar (which is defined to be
223 a suitable toolbar class on each platform, such as wxToolBar95). To use a different class,
224 override
\helpref{wxFrame::OnCreateToolBar
}{wxframeoncreatetoolbar
}.
226 When a toolbar has been created with this function, or made known to the frame
227 with
\helpref{wxFrame::SetToolBar
}{wxframesettoolbar
}, the frame will manage the toolbar
228 position and adjust the return value from
\helpref{wxWindow::GetClientSize
}{wxwindowgetclientsize
} to
229 reflect the available space for application windows.
233 \helpref{wxFrame::CreateStatusBar
}{wxframecreatestatusbar
},
\rtfsp
234 \helpref{wxFrame::OnCreateToolBar
}{wxframeoncreatetoolbar
},
\rtfsp
235 \helpref{wxFrame::SetToolBar
}{wxframesettoolbar
},
\rtfsp
236 \helpref{wxFrame::GetToolBar
}{wxframegettoolbar
}
238 \membersection{wxFrame::GetClientAreaOrigin
}\label{wxframegetclientareaorigin
}
240 \constfunc{wxPoint
}{GetClientAreaOrigin
}{\void}
242 Returns the origin of the frame client area (in client coordinates). It may be
243 different from (
0,
0) if the frame has a toolbar.
245 \membersection{wxFrame::GetMenuBar
}\label{wxframegetmenubar
}
247 \constfunc{wxMenuBar*
}{GetMenuBar
}{\void}
249 Returns a pointer to the menubar currently associated with the frame (if any).
253 \helpref{wxFrame::SetMenuBar
}{wxframesetmenubar
},
\helpref{wxMenuBar
}{wxmenubar
},
\helpref{wxMenu
}{wxmenu
}
255 \membersection{wxFrame::GetStatusBar
}\label{wxframegetstatusbar
}
257 \constfunc{wxStatusBar*
}{GetStatusBar
}{\void}
259 Returns a pointer to the status bar currently associated with the frame (if any).
263 \helpref{wxFrame::CreateStatusBar
}{wxframecreatestatusbar
},
\helpref{wxStatusBar
}{wxstatusbar
}
265 \membersection{wxFrame::GetTitle
}\label{wxframegettitle
}
267 \constfunc{wxString
}{GetTitle
}{\void}
269 Gets a string containing the frame title. See
\helpref{wxFrame::SetTitle
}{wxframesettitle
}.
271 \membersection{wxFrame::GetToolBar
}\label{wxframegettoolbar
}
273 \constfunc{wxToolBar*
}{GetToolBar
}{\void}
275 Returns a pointer to the toolbar currently associated with the frame (if any).
279 \helpref{wxFrame::CreateToolBar
}{wxframecreatetoolbar
},
\helpref{wxToolBar
}{wxtoolbar
},
\rtfsp
280 \helpref{wxFrame::SetToolBar
}{wxframesettoolbar
}
282 \membersection{wxFrame::Iconize
}\label{wxframeiconize
}
284 \func{void
}{Iconize
}{\param{bool
}{ iconize
}}
286 Iconizes or restores the frame.
288 \wxheading{Parameters
}
290 \docparam{iconize
}{If TRUE, iconizes the frame; if FALSE, shows and restores it.
}
294 \helpref{wxFrame::IsIconized
}{wxframeisiconized
},
\helpref{wxFrame::Maximize
}{wxframemaximize
}.
296 \membersection{wxFrame::IsFullScreen
}\label{wxframeisfullscreen
}
298 \func{bool
}{IsFullScreen
}{\void}
300 Returns TRUE if the frame is in fullscreen mode.
304 \helpref{wxFrame::ShowFullScreen
}{wxframeshowfullscreen
}
306 \membersection{wxFrame::IsIconized
}\label{wxframeisiconized
}
308 \constfunc{bool
}{IsIconized
}{\void}
310 Returns TRUE if the frame is iconized.
312 \membersection{wxFrame::IsMaximized
}\label{wxframeismaximized
}
314 \constfunc{bool
}{IsMaximized
}{\void}
316 Returns TRUE if the frame is maximized.
318 \membersection{wxFrame::Maximize
}\label{wxframemaximize
}
320 \func{void
}{Maximize
}{\param{bool
}{maximize
}}
322 Maximizes or restores the frame.
324 \wxheading{Parameters
}
326 \docparam{maximize
}{If TRUE, maximizes the frame, otherwise it restores it.
}
330 This function only works under Windows.
334 \helpref{wxFrame::Iconize
}{wxframeiconize
}
336 \membersection{wxFrame::OnActivate
}
338 \func{void
}{OnActivate
}{\param{wxActivateEvent\&
}{ event
}}
340 Called when a window is activated or deactivated (MS Windows
341 only). See also
\helpref{wxActivateEvent
}{wxactivateevent
}.
343 \membersection{wxFrame::OnCreateStatusBar
}\label{wxframeoncreatestatusbar
}
345 \func{virtual wxStatusBar*
}{OnCreateStatusBar
}{\param{int
}{number
},
346 \param{long
}{ style
},
347 \param{wxWindowID
}{ id
},
\param{const wxString\&
}{ name
}}
349 Virtual function called when a status bar is requested by
\helpref{wxFrame::CreateStatusBar
}{wxframecreatestatusbar
}.
351 \wxheading{Parameters
}
353 \docparam{number
}{The number of fields to create.
}
355 \docparam{style
}{The window style. See
\helpref{wxStatusBar
}{wxstatusbar
} for a list
358 \docparam{id
}{The window identifier. If -
1, an identifier will be chosen by
361 \docparam{name
}{The window name.
}
363 \wxheading{Return value
}
369 An application can override this function to return a different kind of status bar. The default
370 implementation returns an instance of
\helpref{wxStatusBar
}{wxstatusbar
}.
374 \helpref{wxFrame::CreateStatusBar
}{wxframecreatestatusbar
},
\helpref{wxStatusBar
}{wxstatusbar
}.
376 \membersection{wxFrame::OnCreateToolBar
}\label{wxframeoncreatetoolbar
}
378 \func{virtual wxToolBar*
}{OnCreateToolBar
}{\param{long
}{ style
},
379 \param{wxWindowID
}{ id
},
\param{const wxString\&
}{ name
}}
381 Virtual function called when a toolbar is requested by
\helpref{wxFrame::CreateToolBar
}{wxframecreatetoolbar
}.
383 \wxheading{Parameters
}
385 \docparam{style
}{The toolbar style. See
\helpref{wxToolBar
}{wxtoolbar
} for a list
388 \docparam{id
}{The toolbar window identifier. If -
1, an identifier will be chosen by
391 \docparam{name
}{The toolbar window name.
}
393 \wxheading{Return value
}
399 An application can override this function to return a different kind of toolbar. The default
400 implementation returns an instance of
\helpref{wxToolBar
}{wxtoolbar
}.
404 \helpref{wxFrame::CreateToolBar
}{wxframecreatetoolbar
},
\helpref{wxToolBar
}{wxtoolbar
}.
406 \membersection{wxFrame::OnMenuHighlight
}\label{wxframeonmenuhighlight
}
408 \func{void
}{OnMenuHighlight
}{\param{wxMenuEvent\&
}{ event
}}
410 The default implementation displays an appropriate help string
411 in the status bar, if there is one.
413 See
\helpref{wxMenuEvent
}{wxmenuevent
}.
415 \membersection{wxFrame::OnSize
}\label{wxframeonsize
}
417 \func{void
}{OnSize
}{\param{wxSizeEvent\&
}{event
}}
419 The default
{\bf wxFrame::OnSize
} implementation looks for a single subwindow,
420 and if one is found, resizes it to fit
421 inside the frame. Override this member if more complex behaviour
422 is required (for example, if there are several subwindows).
424 See
\helpref{wxSizeEvent
}{wxsizeevent
}.
426 \membersection{wxFrame::SetIcon
}\label{wxframeseticon
}
428 \func{void
}{SetIcon
}{\param{const wxIcon\&
}{icon
}}
430 Sets the icon for this frame.
432 \wxheading{Parameters
}
434 \docparam{icon
}{The icon to associate with this frame.
}
438 The frame takes a `copy' of
{\it icon
}, but since it uses reference
439 counting, the copy is very quick. It is safe to delete
{\it icon
} after
440 calling this function.
442 See also
\helpref{wxIcon
}{wxicon
}.
444 \membersection{wxFrame::SetIcons
}\label{wxframeseticons
}
446 \func{void
}{SetIcons
}{\param{const wxIconBundle\&
}{icons
}}
448 Sets the icons for this frame.
450 \wxheading{Parameters
}
452 \docparam{icons
}{The icons to associate with this frame.
}
454 See also
\helpref{wxIconBundle
}{wxiconbundle
}.
456 % VZ: we don't have all this any more (18.08.00)
458 %Under Windows, instead of using {\bf SetIcon}, you can add the
459 %following lines to your MS Windows resource file:
462 %wxSTD_MDIPARENTFRAME ICON icon1.ico
463 %wxSTD_MDICHILDFRAME ICON icon2.ico
464 %wxSTD_FRAME ICON icon3.ico
467 %where icon1.ico will be used for the MDI parent frame, icon2.ico
468 %will be used for MDI child frames, and icon3.ico will be used for
471 %If these icons are not supplied, and {\bf SetIcon} is not called either,
472 %then the following defaults apply if you have included wx.rc.
475 %wxDEFAULT_FRAME ICON std.ico
476 %wxDEFAULT_MDIPARENTFRAME ICON mdi.ico
477 %wxDEFAULT_MDICHILDFRAME ICON child.ico
480 %You can replace std.ico, mdi.ico and child.ico with your own defaults
481 %for all your wxWindows application. Currently they show the same icon.
483 \membersection{wxFrame::SetMenuBar
}\label{wxframesetmenubar
}
485 \func{void
}{SetMenuBar
}{\param{wxMenuBar*
}{menuBar
}}
487 Tells the frame to show the given menu bar.
489 \wxheading{Parameters
}
491 \docparam{menuBar
}{The menu bar to associate with the frame.
}
495 If the frame is destroyed, the
496 menu bar and its menus will be destroyed also, so do not delete the menu
497 bar explicitly (except by resetting the frame's menu bar to another
500 Under Windows, a call to
\helpref{wxFrame::OnSize
}{wxframeonsize
} is generated, so be sure to initialize
501 data members properly before calling
{\bf SetMenuBar
}.
503 Note that it is not possible to call this function twice for the same frame object.
507 \helpref{wxFrame::GetMenuBar
}{wxframegetmenubar
},
\helpref{wxMenuBar
}{wxmenubar
},
\helpref{wxMenu
}{wxmenu
}.
509 \membersection{wxFrame::SetStatusBar
}\label{wxframesetstatusbar
}
511 \func{void
}{SetStatusBar
}{\param{wxStatusBar*
}{ statusBar
}}
513 Associates a status bar with the frame.
517 \helpref{wxFrame::CreateStatusBar
}{wxframecreatestatusbar
},
\helpref{wxStatusBar
}{wxstatusbar
},
\rtfsp
518 \helpref{wxFrame::GetStatusBar
}{wxframegetstatusbar
}
520 \membersection{wxFrame::SetStatusText
}\label{wxframesetstatustext
}
522 \func{virtual void
}{SetStatusText
}{\param{const wxString\&
}{ text
},
\param{int
}{ number =
0}}
524 Sets the status bar text and redraws the status bar.
526 \wxheading{Parameters
}
528 \docparam{text
}{The text for the status field.
}
530 \docparam{number
}{The status field (starting from zero).
}
534 Use an empty string to clear the status bar.
538 \helpref{wxFrame::CreateStatusBar
}{wxframecreatestatusbar
},
\helpref{wxStatusBar
}{wxstatusbar
}
540 \membersection{wxFrame::SetStatusWidths
}\label{wxframesetstatuswidths
}
542 \func{virtual void
}{SetStatusWidths
}{\param{int
}{ n
},
\param{int *
}{widths
}}
544 Sets the widths of the fields in the status bar.
546 \wxheading{Parameters
}
548 \wxheading{n
}{The number of fields in the status bar. It must be the
549 same used in
\helpref{CreateStatusBar
}{wxframecreatestatusbar
}.
}
551 \docparam{widths
}{Must contain an array of
{\it n
} integers, each of which is a status field width
552 in pixels. A value of -
1 indicates that the field is variable width; at least one
553 field must be -
1. You should delete this array after calling
{\bf SetStatusWidths
}.
}
557 The widths of the variable fields are calculated from the total width of all fields,
558 minus the sum of widths of the non-variable fields, divided by the number of
561 \pythonnote{Only a single parameter is required, a Python list of
564 \perlnote{In wxPerl this method takes the field widths as parameters.
}
566 \membersection{wxFrame::SetToolBar
}\label{wxframesettoolbar
}
568 \func{void
}{SetToolBar
}{\param{wxToolBar*
}{ toolBar
}}
570 Associates a toolbar with the frame.
574 \helpref{wxFrame::CreateToolBar
}{wxframecreatetoolbar
},
\helpref{wxToolBar
}{wxtoolbar
},
\rtfsp
575 \helpref{wxFrame::GetToolBar
}{wxframegettoolbar
}
577 \membersection{wxFrame::SetTitle
}\label{wxframesettitle
}
579 \func{virtual void
}{SetTitle
}{\param{const wxString\&
}{ title
}}
581 Sets the frame title.
583 \wxheading{Parameters
}
585 \docparam{title
}{The frame title.
}
589 \helpref{wxFrame::GetTitle
}{wxframegettitle
}
591 \membersection{wxFrame::ShowFullScreen
}\label{wxframeshowfullscreen
}
593 \func{bool
}{ShowFullScreen
}{\param{bool
}{ show
},
\param{long
}{ style = wxFULLSCREEN
\_ALL}}
595 Passing TRUE to
{\it shows
} shows the frame full-screen, and passing FALSE restores the frame
596 again.
{\it style
} is a bit list containing some or all of the following values, which
597 indicate what elements of the frame to hide in full-screen mode:
599 \begin{itemize
}\itemsep=
0pt
600 \item wxFULLSCREEN
\_NOMENUBAR
601 \item wxFULLSCREEN
\_NOTOOLBAR
602 \item wxFULLSCREEN
\_NOSTATUSBAR
603 \item wxFULLSCREEN
\_NOBORDER
604 \item wxFULLSCREEN
\_NOCAPTION
605 \item wxFULLSCREEN
\_ALL (all of the above)
608 This function has not been tested with MDI frames.
612 \helpref{wxFrame::IsFullScreen
}{wxframeisfullscreen
}
614 \membersection{wxFrame::SetStatusBarPane
}\label{wxframesetstatusbarpane
}
616 \func{void
}{SetStatusBarPane
}{\param{int
}{ n
}}
618 Set the status bar pane used to display menu and toolbar help.
619 Using -
1 disables help display.
621 \membersection{wxFrame::GetStatusBarPane
}\label{wxframegetstatusbarpane
}
623 \func{int
}{GetStatusBarPane
}{\void}
625 Returns the status bar pane used to display menu and toolbar help.
629 \helpref{wxFrame::SetStatusBarPane
}{wxframesetstatusbarpane
}
631 \membersection{wxFrame::SetStatusBarPane
}\label{wxframesetstatusbarpane
}
633 \func{void
}{SetStatusBarPane
}{\param{int
}{ n
}}
635 Set the status bar pane used to display menu and toolbar help.
636 Using -
1 disables help display.
638 \membersection{wxFrame::GetStatusBarPane
}\label{wxframegetstatusbarpane
}
640 \func{int
}{GetStatusBarPane
}{\void}
642 Returns the status bar pane used to display menu and toolbar help.
646 \helpref{wxFrame::SetStatusBarPane
}{wxframesetstatusbarpane
}