]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{\class{wxFrame}}\label{wxframe} |
2 | ||
1c4f8f8d VZ |
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 | |
6 | a frame or dialog. | |
a660d684 | 7 | |
1c4f8f8d VZ |
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 | |
11 | application windows. | |
81d66cf3 | 12 | |
a660d684 KB |
13 | \wxheading{Derived from} |
14 | ||
834ed994 | 15 | \helpref{wxTopLevelWindow}{wxtoplevelwindow}\\ |
a660d684 KB |
16 | \helpref{wxWindow}{wxwindow}\\ |
17 | \helpref{wxEvtHandler}{wxevthandler}\\ | |
18 | \helpref{wxObject}{wxobject} | |
19 | ||
954b8ae6 JS |
20 | \wxheading{Include files} |
21 | ||
22 | <wx/frame.h> | |
23 | ||
a660d684 KB |
24 | \wxheading{Window styles} |
25 | ||
26 | \twocolwidtha{5cm} | |
27 | \begin{twocollist}\itemsep=0pt | |
01a01d10 | 28 | \twocolitem{\windowstyle{wxDEFAULT\_FRAME\_STYLE}}{Defined as {\bf wxMINIMIZE\_BOX \pipe wxMAXIMIZE\_BOX \pipe wxRESIZE\_BORDER \pipe wxSYSTEM\_MENU \pipe wxCAPTION \pipe wxCLOSE\_BOX \pipe wxCLIP\_CHILDREN}.} |
6453876e | 29 | \twocolitem{\windowstyle{wxICONIZE}}{Display the frame iconized (minimized). Windows only. } |
a660d684 | 30 | \twocolitem{\windowstyle{wxCAPTION}}{Puts a caption on the frame.} |
f6bcfd97 BP |
31 | \twocolitem{\windowstyle{wxMINIMIZE}}{Identical to {\bf wxICONIZE}. Windows only.} |
32 | \twocolitem{\windowstyle{wxMINIMIZE\_BOX}}{Displays a minimize box on the frame.} | |
33 | \twocolitem{\windowstyle{wxMAXIMIZE}}{Displays the frame maximized. Windows only.} | |
34 | \twocolitem{\windowstyle{wxMAXIMIZE\_BOX}}{Displays a maximize box on the frame.} | |
850c6ed4 | 35 | \twocolitem{\windowstyle{wxCLOSE\_BOX}}{Displays a close box on the frame.} |
9dfef5ac VZ |
36 | \twocolitem{\windowstyle{wxSTAY\_ON\_TOP}}{Stay on top of all other windows, |
37 | see also wxFRAME\_FLOAT\_ON\_PARENT. Windows only.} | |
f6bcfd97 | 38 | \twocolitem{\windowstyle{wxSYSTEM\_MENU}}{Displays a system menu.} |
b3daa5a3 VZ |
39 | \twocolitem{\windowstyle{wxRESIZE\_BORDER}}{Displays a resizeable border around the window.} |
40 | \twocolitem{\windowstyle{wxFRAME\_TOOL\_WINDOW}}{Causes a frame with a small | |
36d23121 | 41 | titlebar to be created; the frame does not appear in the taskbar under Windows or GTK+.} |
9dfef5ac | 42 | \twocolitem{\windowstyle{wxFRAME\_NO\_TASKBAR}}{Creates an otherwise normal |
baf277a2 VS |
43 | frame but it does not appear in the taskbar under Windows or GTK+ (note that it |
44 | will minimize to the desktop window under Windows which may seem strange to the | |
45 | users and thus it might be better to use this style only without | |
46 | wxMINIMIZE\_BOX style). In wxGTK, the flag is respected only if GTK+ is at | |
47 | least version 2.2 and the window manager supports | |
48 | \urlref{\_NET\_WM\_STATE\_SKIP\_TASKBAR}{http://freedesktop.org/Standards/wm-spec/1.3/ar01s05.html} hint. | |
9dfef5ac VZ |
49 | Has no effect under other platforms.} |
50 | \twocolitem{\windowstyle{wxFRAME\_FLOAT\_ON\_PARENT}}{The frame will always be | |
51 | on top of its parent (unlike wxSTAY\_ON\_TOP). A frame created with this style | |
52 | must have a non-NULL parent.} | |
26a80c22 | 53 | \twocolitem{\windowstyle{wxFRAME\_EX\_CONTEXTHELP}}{Under Windows, puts a query button on the |
fc2171bd | 54 | caption. When pressed, Windows will go into a context-sensitive help mode and wxWidgets will send |
26a80c22 JS |
55 | a wxEVT\_HELP event if the user clicked on an application window. {\it Note} that this is an extended |
56 | style and must be set by calling \helpref{SetExtraStyle}{wxwindowsetextrastyle} before Create is called (two-step construction). | |
335c9e32 | 57 | You cannot use this style together with wxMAXIMIZE\_BOX or wxMINIMIZE\_BOX, so |
d2c2afc9 | 58 | you should use\rtfsp |
c8abcf33 | 59 | {\tt wxDEFAULT\_FRAME\_STYLE \& ~ (wxMINIMIZE\_BOX | wxMAXIMIZE\_BOX)} for the |
0032ddbb | 60 | frames having this style (the dialogs don't have a minimize or a maximize box by |
335c9e32 | 61 | default)} |
6a7e6411 | 62 | \twocolitem{\windowstyle{wxFRAME\_SHAPED}}{Windows with this style are |
8caac90d | 63 | allowed to have their shape changed with the \helpref{SetShape}{wxtoplevelwindowsetshape} method.} |
03d77609 | 64 | \twocolitem{\windowstyle{wxFRAME\_EX\_METAL}}{On Mac OS X, frames with this style will be shown with a metallic look. This is an {\it extra} style.} |
a660d684 KB |
65 | \end{twocollist} |
66 | ||
f6bcfd97 BP |
67 | The default frame style is for normal, resizeable frames. To create a frame |
68 | which can not be resized by user, you may use the following combination of | |
c8abcf33 | 69 | styles: {\tt wxDEFAULT\_FRAME\_STYLE \& ~ (wxRESIZE\_BORDER \pipe wxRESIZE\_BOX \pipe wxMAXIMIZE\_BOX)}. |
f6bcfd97 BP |
70 | % Note: the space after the tilde is necessary or Tex2RTF complains. |
71 | ||
6453876e | 72 | See also \helpref{window styles overview}{windowstyles}. |
a660d684 | 73 | |
9b67a3fd VZ |
74 | \wxheading{Default event processing} |
75 | ||
76 | wxFrame processes the following events: | |
77 | ||
78 | \begin{twocollist}\itemsep=0pt | |
974d9c98 VZ |
79 | \twocolitem{\helpref{wxEVT\_SIZE}{wxsizeevent}}{If the frame has exactly one |
80 | child window, not counting the status and toolbar, this child is resized to | |
81 | take the entire frame client area. If two or more windows are present, they | |
1542ea39 | 82 | should be laid out explicitly either by manually handling wxEVT\_SIZE or using |
9b67a3fd VZ |
83 | \helpref{sizers}{sizeroverview}} |
84 | ||
974d9c98 VZ |
85 | \twocolitem{\helpref{wxEVT\_MENU\_HIGHLIGHT}{wxmenuevent}}{The default |
86 | implementation displays the \helpref{help string}{wxmenuitemgethelp} associated | |
87 | with the selected item in the first pane of the status bar, if there is one.} | |
9b67a3fd VZ |
88 | \end{twocollist} |
89 | ||
a660d684 KB |
90 | \wxheading{Remarks} |
91 | ||
f4fcc291 | 92 | An application should normally define an \helpref{wxCloseEvent}{wxcloseevent} handler for the |
a660d684 KB |
93 | frame to respond to system close events, for example so that related data and subwindows can be cleaned up. |
94 | ||
95 | \wxheading{See also} | |
96 | ||
97 | \helpref{wxMDIParentFrame}{wxmdiparentframe}, \helpref{wxMDIChildFrame}{wxmdichildframe},\rtfsp | |
98 | \helpref{wxMiniFrame}{wxminiframe}, \helpref{wxDialog}{wxdialog} | |
99 | ||
100 | \latexignore{\rtfignore{\wxheading{Members}}} | |
101 | ||
f0e8a2d0 | 102 | \membersection{wxFrame::wxFrame}\label{wxframector} |
a660d684 KB |
103 | |
104 | \func{}{wxFrame}{\void} | |
105 | ||
106 | Default constructor. | |
107 | ||
eaaa6a06 | 108 | \func{}{wxFrame}{\param{wxWindow* }{parent}, \param{wxWindowID }{id},\rtfsp |
a660d684 KB |
109 | \param{const wxString\& }{title}, \param{const wxPoint\&}{ pos = wxDefaultPosition},\rtfsp |
110 | \param{const wxSize\&}{ size = wxDefaultSize}, \param{long}{ style = wxDEFAULT\_FRAME\_STYLE},\rtfsp | |
111 | \param{const wxString\& }{name = ``frame"}} | |
112 | ||
113 | Constructor, creating the window. | |
114 | ||
115 | \wxheading{Parameters} | |
116 | ||
117 | \docparam{parent}{The window parent. This may be NULL. If it is non-NULL, the frame will | |
118 | always be displayed on top of the parent window on Windows.} | |
119 | ||
120 | \docparam{id}{The window identifier. It may take a value of -1 to indicate a default value.} | |
121 | ||
122 | \docparam{title}{The caption to be displayed on the frame's title bar.} | |
123 | ||
124 | \docparam{pos}{The window position. A value of (-1, -1) indicates a default position, chosen by | |
fc2171bd | 125 | either the windowing system or wxWidgets, depending on platform.} |
a660d684 KB |
126 | |
127 | \docparam{size}{The window size. A value of (-1, -1) indicates a default size, chosen by | |
fc2171bd | 128 | either the windowing system or wxWidgets, depending on platform.} |
a660d684 KB |
129 | |
130 | \docparam{style}{The window style. See \helpref{wxFrame}{wxframe}.} | |
131 | ||
132 | \docparam{name}{The name of the window. This parameter is used to associate a name with the item, | |
133 | allowing the application user to set Motif resource values for | |
134 | individual windows.} | |
135 | ||
136 | \wxheading{Remarks} | |
137 | ||
138 | For Motif, MWM (the Motif Window Manager) should be running for any window styles to work | |
139 | (otherwise all styles take effect). | |
140 | ||
141 | \wxheading{See also} | |
142 | ||
143 | \helpref{wxFrame::Create}{wxframecreate} | |
144 | ||
f0e8a2d0 | 145 | \membersection{wxFrame::\destruct{wxFrame}}\label{wxframedtor} |
a660d684 KB |
146 | |
147 | \func{void}{\destruct{wxFrame}}{\void} | |
148 | ||
149 | Destructor. Destroys all child windows and menu bar if present. | |
150 | ||
151 | \membersection{wxFrame::Centre}\label{wxframecentre} | |
152 | ||
eaaa6a06 | 153 | \func{void}{Centre}{\param{int}{ direction = wxBOTH}} |
a660d684 KB |
154 | |
155 | Centres the frame on the display. | |
156 | ||
157 | \wxheading{Parameters} | |
158 | ||
159 | \docparam{direction}{The parameter may be {\tt wxHORIZONTAL}, {\tt wxVERTICAL} or {\tt wxBOTH}.} | |
160 | ||
a660d684 KB |
161 | \membersection{wxFrame::Create}\label{wxframecreate} |
162 | ||
eaaa6a06 | 163 | \func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID }{id},\rtfsp |
a660d684 KB |
164 | \param{const wxString\& }{title}, \param{const wxPoint\&}{ pos = wxDefaultPosition},\rtfsp |
165 | \param{const wxSize\&}{ size = wxDefaultSize}, \param{long}{ style = wxDEFAULT\_FRAME\_STYLE},\rtfsp | |
166 | \param{const wxString\& }{name = ``frame"}} | |
167 | ||
f0e8a2d0 | 168 | Used in two-step frame construction. See \helpref{wxFrame::wxFrame}{wxframector}\rtfsp |
a660d684 KB |
169 | for further details. |
170 | ||
171 | \membersection{wxFrame::CreateStatusBar}\label{wxframecreatestatusbar} | |
172 | ||
81d66cf3 JS |
173 | \func{virtual wxStatusBar*}{CreateStatusBar}{\param{int}{ number = 1}, |
174 | \param{long}{ style = 0}, | |
175 | \param{wxWindowID}{ id = -1}, \param{const wxString\&}{ name = "statusBar"}} | |
a660d684 KB |
176 | |
177 | Creates a status bar at the bottom of the frame. | |
178 | ||
179 | \wxheading{Parameters} | |
180 | ||
181 | \docparam{number}{The number of fields to create. Specify a | |
182 | value greater than 1 to create a multi-field status bar.} | |
183 | ||
81d66cf3 JS |
184 | \docparam{style}{The status bar style. See \helpref{wxStatusBar}{wxstatusbar} for a list |
185 | of valid styles.} | |
186 | ||
187 | \docparam{id}{The status bar window identifier. If -1, an identifier will be chosen by | |
fc2171bd | 188 | wxWidgets.} |
81d66cf3 JS |
189 | |
190 | \docparam{name}{The status bar window name.} | |
191 | ||
a660d684 KB |
192 | \wxheading{Return value} |
193 | ||
81d66cf3 | 194 | A pointer to the the status bar if it was created successfully, NULL otherwise. |
a660d684 KB |
195 | |
196 | \wxheading{Remarks} | |
197 | ||
198 | The width of the status bar is the whole width of the frame (adjusted automatically when | |
199 | resizing), and the height and text size are chosen by the host windowing system. | |
200 | ||
201 | By default, the status bar is an instance of wxStatusBar. To use a different class, | |
202 | override \helpref{wxFrame::OnCreateStatusBar}{wxframeoncreatestatusbar}. | |
203 | ||
204 | Note that you can put controls and other windows on the status bar if you wish. | |
205 | ||
206 | \wxheading{See also} | |
207 | ||
208 | \helpref{wxFrame::SetStatusText}{wxframesetstatustext},\rtfsp | |
209 | \helpref{wxFrame::OnCreateStatusBar}{wxframeoncreatestatusbar},\rtfsp | |
210 | \helpref{wxFrame::GetStatusBar}{wxframegetstatusbar} | |
211 | ||
81d66cf3 JS |
212 | \membersection{wxFrame::CreateToolBar}\label{wxframecreatetoolbar} |
213 | ||
214 | \func{virtual wxToolBar*}{CreateToolBar}{\param{long}{ style = wxNO\_BORDER \pipe wxTB\_HORIZONTAL}, | |
215 | \param{wxWindowID}{ id = -1}, \param{const wxString\&}{ name = "toolBar"}} | |
216 | ||
217 | Creates a toolbar at the top or left of the frame. | |
218 | ||
219 | \wxheading{Parameters} | |
220 | ||
221 | \docparam{style}{The toolbar style. See \helpref{wxToolBar}{wxtoolbar} for a list | |
222 | of valid styles.} | |
223 | ||
224 | \docparam{id}{The toolbar window identifier. If -1, an identifier will be chosen by | |
fc2171bd | 225 | wxWidgets.} |
81d66cf3 JS |
226 | |
227 | \docparam{name}{The toolbar window name.} | |
228 | ||
229 | \wxheading{Return value} | |
230 | ||
231 | A pointer to the the toolbar if it was created successfully, NULL otherwise. | |
232 | ||
233 | \wxheading{Remarks} | |
234 | ||
235 | By default, the toolbar is an instance of wxToolBar (which is defined to be | |
236 | a suitable toolbar class on each platform, such as wxToolBar95). To use a different class, | |
237 | override \helpref{wxFrame::OnCreateToolBar}{wxframeoncreatetoolbar}. | |
238 | ||
239 | When a toolbar has been created with this function, or made known to the frame | |
240 | with \helpref{wxFrame::SetToolBar}{wxframesettoolbar}, the frame will manage the toolbar | |
241 | position and adjust the return value from \helpref{wxWindow::GetClientSize}{wxwindowgetclientsize} to | |
242 | reflect the available space for application windows. | |
243 | ||
244 | \wxheading{See also} | |
245 | ||
246 | \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar},\rtfsp | |
247 | \helpref{wxFrame::OnCreateToolBar}{wxframeoncreatetoolbar},\rtfsp | |
248 | \helpref{wxFrame::SetToolBar}{wxframesettoolbar},\rtfsp | |
249 | \helpref{wxFrame::GetToolBar}{wxframegettoolbar} | |
250 | ||
1c4f8f8d VZ |
251 | \membersection{wxFrame::GetClientAreaOrigin}\label{wxframegetclientareaorigin} |
252 | ||
253 | \constfunc{wxPoint}{GetClientAreaOrigin}{\void} | |
254 | ||
255 | Returns the origin of the frame client area (in client coordinates). It may be | |
256 | different from (0, 0) if the frame has a toolbar. | |
257 | ||
a660d684 KB |
258 | \membersection{wxFrame::GetMenuBar}\label{wxframegetmenubar} |
259 | ||
260 | \constfunc{wxMenuBar*}{GetMenuBar}{\void} | |
261 | ||
262 | Returns a pointer to the menubar currently associated with the frame (if any). | |
263 | ||
264 | \wxheading{See also} | |
265 | ||
266 | \helpref{wxFrame::SetMenuBar}{wxframesetmenubar}, \helpref{wxMenuBar}{wxmenubar}, \helpref{wxMenu}{wxmenu} | |
267 | ||
268 | \membersection{wxFrame::GetStatusBar}\label{wxframegetstatusbar} | |
269 | ||
fa482912 | 270 | \constfunc{wxStatusBar*}{GetStatusBar}{\void} |
a660d684 KB |
271 | |
272 | Returns a pointer to the status bar currently associated with the frame (if any). | |
273 | ||
274 | \wxheading{See also} | |
275 | ||
276 | \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar}, \helpref{wxStatusBar}{wxstatusbar} | |
277 | ||
0b0625e9 JS |
278 | \membersection{wxFrame::GetStatusBarPane}\label{wxframegetstatusbarpane} |
279 | ||
280 | \func{int}{GetStatusBarPane}{\void} | |
281 | ||
282 | Returns the status bar pane used to display menu and toolbar help. | |
283 | ||
284 | \wxheading{See also} | |
285 | ||
286 | \helpref{wxFrame::SetStatusBarPane}{wxframesetstatusbarpane} | |
287 | ||
81d66cf3 JS |
288 | \membersection{wxFrame::GetToolBar}\label{wxframegettoolbar} |
289 | ||
fa482912 | 290 | \constfunc{wxToolBar*}{GetToolBar}{\void} |
81d66cf3 JS |
291 | |
292 | Returns a pointer to the toolbar currently associated with the frame (if any). | |
293 | ||
294 | \wxheading{See also} | |
295 | ||
296 | \helpref{wxFrame::CreateToolBar}{wxframecreatetoolbar}, \helpref{wxToolBar}{wxtoolbar},\rtfsp | |
297 | \helpref{wxFrame::SetToolBar}{wxframesettoolbar} | |
298 | ||
a660d684 KB |
299 | \membersection{wxFrame::OnCreateStatusBar}\label{wxframeoncreatestatusbar} |
300 | ||
dbdb39b2 | 301 | \func{virtual wxStatusBar*}{OnCreateStatusBar}{\param{int }{number}, |
81d66cf3 JS |
302 | \param{long}{ style}, |
303 | \param{wxWindowID}{ id}, \param{const wxString\&}{ name}} | |
a660d684 KB |
304 | |
305 | Virtual function called when a status bar is requested by \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar}. | |
306 | ||
307 | \wxheading{Parameters} | |
308 | ||
309 | \docparam{number}{The number of fields to create.} | |
310 | ||
81d66cf3 JS |
311 | \docparam{style}{The window style. See \helpref{wxStatusBar}{wxstatusbar} for a list |
312 | of valid styles.} | |
313 | ||
314 | \docparam{id}{The window identifier. If -1, an identifier will be chosen by | |
fc2171bd | 315 | wxWidgets.} |
81d66cf3 JS |
316 | |
317 | \docparam{name}{The window name.} | |
318 | ||
a660d684 KB |
319 | \wxheading{Return value} |
320 | ||
321 | A status bar object. | |
322 | ||
323 | \wxheading{Remarks} | |
324 | ||
325 | An application can override this function to return a different kind of status bar. The default | |
326 | implementation returns an instance of \helpref{wxStatusBar}{wxstatusbar}. | |
327 | ||
328 | \wxheading{See also} | |
329 | ||
330 | \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar}, \helpref{wxStatusBar}{wxstatusbar}. | |
331 | ||
81d66cf3 JS |
332 | \membersection{wxFrame::OnCreateToolBar}\label{wxframeoncreatetoolbar} |
333 | ||
334 | \func{virtual wxToolBar*}{OnCreateToolBar}{\param{long}{ style}, | |
335 | \param{wxWindowID}{ id}, \param{const wxString\&}{ name}} | |
336 | ||
337 | Virtual function called when a toolbar is requested by \helpref{wxFrame::CreateToolBar}{wxframecreatetoolbar}. | |
338 | ||
339 | \wxheading{Parameters} | |
340 | ||
341 | \docparam{style}{The toolbar style. See \helpref{wxToolBar}{wxtoolbar} for a list | |
342 | of valid styles.} | |
343 | ||
344 | \docparam{id}{The toolbar window identifier. If -1, an identifier will be chosen by | |
fc2171bd | 345 | wxWidgets.} |
81d66cf3 JS |
346 | |
347 | \docparam{name}{The toolbar window name.} | |
348 | ||
349 | \wxheading{Return value} | |
350 | ||
351 | A toolbar object. | |
352 | ||
353 | \wxheading{Remarks} | |
354 | ||
355 | An application can override this function to return a different kind of toolbar. The default | |
356 | implementation returns an instance of \helpref{wxToolBar}{wxtoolbar}. | |
357 | ||
358 | \wxheading{See also} | |
359 | ||
360 | \helpref{wxFrame::CreateToolBar}{wxframecreatetoolbar}, \helpref{wxToolBar}{wxtoolbar}. | |
361 | ||
f6e9a818 RN |
362 | |
363 | \membersection{wxFrame::ProcessCommand}\label{wxframeprocesscommand} | |
364 | ||
365 | \func{void}{ProcessCommand}{\param{int }{id}} | |
366 | ||
367 | Simulate a menu command. | |
368 | ||
369 | \wxheading{Parameters} | |
370 | ||
371 | \docparam{id}{The identifier for a menu item.} | |
372 | ||
373 | ||
a4f25aef VZ |
374 | \membersection{wxFrame::SendSizeEvent}\label{wxframesendsizeevent} |
375 | ||
376 | \func{void}{SendSizeEvent}{\void} | |
377 | ||
378 | This function sends a dummy \helpref{size event}{wxsizeevent} to the frame | |
379 | forcing it to reevaluate its children positions. It is sometimes useful to call | |
380 | this function after adding or deleting a children after the frame creation or | |
381 | if a child size changes. | |
382 | ||
383 | Note that if the frame is using either sizers or constraints for the children | |
384 | layout, it is enough to call \helpref{Layout()}{wxwindowlayout} directly and | |
385 | this function should not be used in this case. | |
386 | ||
1542ea39 | 387 | % VZ: we don't have all this any more (18.08.00) |
d9b815ac VZ |
388 | % |
389 | %Under Windows, instead of using {\bf SetIcon}, you can add the | |
390 | %following lines to your MS Windows resource file: | |
391 | % | |
392 | %\begin{verbatim} | |
393 | %wxSTD_MDIPARENTFRAME ICON icon1.ico | |
394 | %wxSTD_MDICHILDFRAME ICON icon2.ico | |
395 | %wxSTD_FRAME ICON icon3.ico | |
396 | %\end{verbatim} | |
397 | % | |
398 | %where icon1.ico will be used for the MDI parent frame, icon2.ico | |
399 | %will be used for MDI child frames, and icon3.ico will be used for | |
400 | %non-MDI frames. | |
401 | % | |
402 | %If these icons are not supplied, and {\bf SetIcon} is not called either, | |
403 | %then the following defaults apply if you have included wx.rc. | |
404 | % | |
405 | %\begin{verbatim} | |
406 | %wxDEFAULT_FRAME ICON std.ico | |
407 | %wxDEFAULT_MDIPARENTFRAME ICON mdi.ico | |
408 | %wxDEFAULT_MDICHILDFRAME ICON child.ico | |
409 | %\end{verbatim} | |
410 | % | |
411 | %You can replace std.ico, mdi.ico and child.ico with your own defaults | |
fc2171bd | 412 | %for all your wxWidgets application. Currently they show the same icon. |
a660d684 | 413 | |
a660d684 KB |
414 | \membersection{wxFrame::SetMenuBar}\label{wxframesetmenubar} |
415 | ||
416 | \func{void}{SetMenuBar}{\param{wxMenuBar* }{menuBar}} | |
417 | ||
418 | Tells the frame to show the given menu bar. | |
419 | ||
420 | \wxheading{Parameters} | |
421 | ||
422 | \docparam{menuBar}{The menu bar to associate with the frame.} | |
423 | ||
424 | \wxheading{Remarks} | |
425 | ||
426 | If the frame is destroyed, the | |
427 | menu bar and its menus will be destroyed also, so do not delete the menu | |
428 | bar explicitly (except by resetting the frame's menu bar to another | |
429 | frame or NULL). | |
430 | ||
684761db | 431 | Under Windows, a size event is generated, so be sure to initialize |
a660d684 KB |
432 | data members properly before calling {\bf SetMenuBar}. |
433 | ||
684761db | 434 | Note that on some platforms, it is not possible to call this function twice for the same frame object. |
a660d684 KB |
435 | |
436 | \wxheading{See also} | |
437 | ||
438 | \helpref{wxFrame::GetMenuBar}{wxframegetmenubar}, \helpref{wxMenuBar}{wxmenubar}, \helpref{wxMenu}{wxmenu}. | |
439 | ||
81d66cf3 JS |
440 | \membersection{wxFrame::SetStatusBar}\label{wxframesetstatusbar} |
441 | ||
442 | \func{void}{SetStatusBar}{\param{wxStatusBar*}{ statusBar}} | |
443 | ||
444 | Associates a status bar with the frame. | |
445 | ||
446 | \wxheading{See also} | |
447 | ||
448 | \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar}, \helpref{wxStatusBar}{wxstatusbar},\rtfsp | |
449 | \helpref{wxFrame::GetStatusBar}{wxframegetstatusbar} | |
450 | ||
0b0625e9 JS |
451 | \membersection{wxFrame::SetStatusBarPane}\label{wxframesetstatusbarpane} |
452 | ||
453 | \func{void}{SetStatusBarPane}{\param{int}{ n}} | |
454 | ||
455 | Set the status bar pane used to display menu and toolbar help. | |
456 | Using -1 disables help display. | |
457 | ||
a660d684 KB |
458 | \membersection{wxFrame::SetStatusText}\label{wxframesetstatustext} |
459 | ||
eaaa6a06 | 460 | \func{virtual void}{SetStatusText}{\param{const wxString\& }{ text}, \param{int}{ number = 0}} |
a660d684 KB |
461 | |
462 | Sets the status bar text and redraws the status bar. | |
463 | ||
464 | \wxheading{Parameters} | |
465 | ||
466 | \docparam{text}{The text for the status field.} | |
467 | ||
468 | \docparam{number}{The status field (starting from zero).} | |
469 | ||
470 | \wxheading{Remarks} | |
471 | ||
472 | Use an empty string to clear the status bar. | |
473 | ||
474 | \wxheading{See also} | |
475 | ||
476 | \helpref{wxFrame::CreateStatusBar}{wxframecreatestatusbar}, \helpref{wxStatusBar}{wxstatusbar} | |
477 | ||
478 | \membersection{wxFrame::SetStatusWidths}\label{wxframesetstatuswidths} | |
479 | ||
eaaa6a06 | 480 | \func{virtual void}{SetStatusWidths}{\param{int}{ n}, \param{int *}{widths}} |
a660d684 KB |
481 | |
482 | Sets the widths of the fields in the status bar. | |
483 | ||
484 | \wxheading{Parameters} | |
485 | ||
486 | \wxheading{n}{The number of fields in the status bar. It must be the | |
487 | same used in \helpref{CreateStatusBar}{wxframecreatestatusbar}.} | |
488 | ||
489 | \docparam{widths}{Must contain an array of {\it n} integers, each of which is a status field width | |
490 | in pixels. A value of -1 indicates that the field is variable width; at least one | |
491 | field must be -1. You should delete this array after calling {\bf SetStatusWidths}.} | |
492 | ||
493 | \wxheading{Remarks} | |
494 | ||
495 | The widths of the variable fields are calculated from the total width of all fields, | |
564747ee | 496 | minus the sum of widths of the non-variable fields, divided by the number of |
a660d684 KB |
497 | variable fields. |
498 | ||
564747ee RD |
499 | \pythonnote{Only a single parameter is required, a Python list of |
500 | integers.} | |
501 | ||
f3539882 | 502 | \perlnote{In wxPerl this method takes the field widths as parameters.} |
5873607e | 503 | |
81d66cf3 JS |
504 | \membersection{wxFrame::SetToolBar}\label{wxframesettoolbar} |
505 | ||
506 | \func{void}{SetToolBar}{\param{wxToolBar*}{ toolBar}} | |
507 | ||
508 | Associates a toolbar with the frame. | |
509 | ||
510 | \wxheading{See also} | |
511 | ||
512 | \helpref{wxFrame::CreateToolBar}{wxframecreatetoolbar}, \helpref{wxToolBar}{wxtoolbar},\rtfsp | |
513 | \helpref{wxFrame::GetToolBar}{wxframegettoolbar} | |
514 |