]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/toplevel.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxTopLevelWindow
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 Styles used with wxTopLevelWindow::RequestUserAttention().
14 wxUSER_ATTENTION_INFO
= 1, ///< Requests user attention,
15 wxUSER_ATTENTION_ERROR
= 2 ///< Results in a more drastic action.
19 Styles used with wxTopLevelWindow::ShowFullScreen().
23 wxFULLSCREEN_NOMENUBAR
= 0x0001, ///< Don't display the menu bar.
24 wxFULLSCREEN_NOTOOLBAR
= 0x0002, ///< Don't display toolbar bars.
25 wxFULLSCREEN_NOSTATUSBAR
= 0x0004, ///< Don't display the status bar.
26 wxFULLSCREEN_NOBORDER
= 0x0008, ///< Don't display any border.
27 wxFULLSCREEN_NOCAPTION
= 0x0010, ///< Don't display a caption.
30 Combination of all above, will display the least possible.
32 wxFULLSCREEN_ALL
= wxFULLSCREEN_NOMENUBAR
| wxFULLSCREEN_NOTOOLBAR
|
33 wxFULLSCREEN_NOSTATUSBAR
| wxFULLSCREEN_NOBORDER
|
34 wxFULLSCREEN_NOCAPTION
38 @class wxTopLevelWindow
40 wxTopLevelWindow is a common base class for wxDialog and wxFrame. It is an
41 abstract base class meaning that you never work with objects of this class
42 directly, but all of its methods are also applicable for the two classes
45 Note that the instances of wxTopLevelWindow are managed by wxWidgets in the
46 internal top level window list.
48 @beginEventEmissionTable
49 @event{EVT_ACTIVATE(id, func)}
50 Process a @c wxEVT_MAXIMIZE event. See wxMaximizeEvent.
51 @event{EVT_MOVE(func)}
52 Process a @c wxEVT_MOVE event, which is generated when a window is moved.
54 @event{EVT_MOVE_START(func)}
55 Process a @c wxEVT_MOVE_START event, which is generated when the user starts
56 to move or size a window. wxMSW only.
58 @event{EVT_MOVE_END(func)}
59 Process a @c wxEVT_MOVE_END event, which is generated when the user stops
60 moving or sizing a window. wxMSW only.
67 @see wxDialog, wxFrame
69 class wxTopLevelWindow
: public wxWindow
78 Constructor creating the top level window.
80 wxTopLevelWindow(wxWindow
*parent
,
82 const wxString
& title
,
83 const wxPoint
& pos
= wxDefaultPosition
,
84 const wxSize
& size
= wxDefaultSize
,
85 long style
= wxDEFAULT_FRAME_STYLE
,
86 const wxString
& name
= wxFrameNameStr
);
89 Destructor. Remember that wxTopLevelWindows do not get immediately
90 destroyed when the user (or the app) closes them; they have a
91 @b delayed destruction.
93 See @ref overview_windowdeletion for more info.
95 virtual ~wxTopLevelWindow();
98 Creates the top level window.
100 bool Create(wxWindow
*parent
,
102 const wxString
& title
,
103 const wxPoint
& pos
= wxDefaultPosition
,
104 const wxSize
& size
= wxDefaultSize
,
105 long style
= wxDEFAULT_FRAME_STYLE
,
106 const wxString
& name
= wxFrameNameStr
);
109 Returns @true if the platform supports making the window translucent.
111 @see SetTransparent()
113 virtual bool CanSetTransparent();
116 A synonym for CentreOnScreen().
118 void CenterOnScreen(int direction
);
121 Centres the window on screen.
124 Specifies the direction for the centering. May be @c wxHORIZONTAL,
125 @c wxVERTICAL or @c wxBOTH.
127 @see wxWindow::CentreOnParent()
129 void CentreOnScreen(int direction
= wxBOTH
);
132 Enables or disables the Close button (most often in the right upper
133 corner of a dialog) and the Close entry of the system menu (most often
134 in the left upper corner of the dialog).
136 Currently only implemented for wxMSW and wxGTK.
138 Returns @true if operation was successful. This may be wrong on X11
139 (including GTK+) where the window manager may not support this operation
140 and there is no way to find out.
142 virtual bool EnableCloseButton(bool enable
= true);
145 Returns a pointer to the button which is the default for this window, or
146 @c @NULL. The default button is the one activated by pressing the Enter
149 wxWindow
* GetDefaultItem() const;
152 Returns the standard icon of the window. The icon will be invalid if it
153 hadn't been previously set by SetIcon().
157 wxIcon
GetIcon() const;
160 Returns all icons associated with the window, there will be none of them
161 if neither SetIcon() nor SetIcons() had been called before. Use
162 GetIcon() to get the main icon of the window.
166 const wxIconBundle
& GetIcons() const;
169 Gets a string containing the window title.
173 virtual wxString
GetTitle() const;
176 Unique to the wxWinCE port. Responds to showing/hiding SIP (soft input
177 panel) area and resize window accordingly. Override this if you want to
178 avoid resizing or do additional operations.
180 virtual bool HandleSettingChange(WXWPARAM wParam
,
184 Iconizes or restores the window.
187 If @true, iconizes the window; if @false, shows and restores it.
189 @see IsIconized(), Maximize(), wxIconizeEvent.
191 virtual void Iconize(bool iconize
= true);
194 Returns @true if this window is currently active, i.e. if the user is
195 currently working with it.
197 virtual bool IsActive();
200 Returns @true if this window is expected to be always maximized, either
201 due to platform policy or due to local policy regarding particular
204 virtual bool IsAlwaysMaximized() const;
207 Returns @true if the window is in fullscreen mode.
209 @see ShowFullScreen()
211 virtual bool IsFullScreen() const;
214 Returns @true if the window is iconized.
216 virtual bool IsIconized() const;
219 Returns @true if the window is maximized.
221 virtual bool IsMaximized() const;
224 This method is specific to wxUniversal port.
226 Returns @true if this window is using native decorations, @false if we
229 @see UseNativeDecorations(),
230 UseNativeDecorationsByDefault()
232 bool IsUsingNativeDecorations() const;
235 See wxWindow::SetAutoLayout(): when auto layout is on, this function gets
236 called automatically when the window is resized.
238 virtual bool Layout();
241 Maximizes or restores the window.
244 If @true, maximizes the window, otherwise it restores it.
248 virtual void Maximize(bool maximize
= true);
251 Use a system-dependent way to attract users attention to the window when
254 @a flags may have the value of either @c ::wxUSER_ATTENTION_INFO
255 (default) or @c ::wxUSER_ATTENTION_ERROR which results in a more drastic
256 action. When in doubt, use the default value.
259 @note This function should normally be only used when the application
260 is not already in foreground.
262 This function is currently implemented for Win32 where it flashes
263 the window icon in the taskbar, and for wxGTK with task bars
267 virtual void RequestUserAttention(int flags
= wxUSER_ATTENTION_INFO
);
270 Changes the default item for the panel, usually @a win is a button.
272 @see GetDefaultItem()
274 wxWindow
* SetDefaultItem(wxWindow
* win
);
277 Sets the icon for this window.
280 The wxIcon to associate with this window.
282 @remarks The window takes a 'copy' of @a icon, but since it uses
283 reference counting, the copy is very quick. It is safe to
284 delete @a icon after calling this function.
286 @note In wxMSW, @a icon must be either 16x16 or 32x32 icon.
288 @see wxIcon, SetIcons()
290 void SetIcon(const wxIcon
& icon
);
293 Sets several icons of different sizes for this window: this allows to
294 use different icons for different situations (e.g. task switching bar,
295 taskbar, window title bar) instead of scaling, with possibly bad looking
296 results, the only icon set by SetIcon().
299 The icons to associate with this window.
301 @note In wxMSW, @a icons must contain a 16x16 or 32x32 icon,
306 virtual void SetIcons(const wxIconBundle
& icons
);
309 Sets action or menu activated by pressing left hardware button on the
310 smart phones. Unavailable on full keyboard machines.
313 Identifier for this button.
315 Text to be displayed on the screen area dedicated to this hardware
318 The menu to be opened after pressing this hardware button.
322 void SetLeftMenu(int id
= wxID_ANY
,
323 const wxString
& label
= wxEmptyString
,
324 wxMenu
* subMenu
= NULL
);
327 A simpler interface for setting the size hints than SetSizeHints().
329 virtual void SetMaxSize(const wxSize
& size
);
332 A simpler interface for setting the size hints than SetSizeHints().
334 virtual void SetMinSize(const wxSize
& size
);
337 Sets action or menu activated by pressing right hardware button on the
338 smart phones. Unavailable on full keyboard machines.
341 Identifier for this button.
343 Text to be displayed on the screen area dedicated to this hardware
346 The menu to be opened after pressing this hardware button.
350 void SetRightMenu(int id
= wxID_ANY
,
351 const wxString
& label
= wxEmptyString
,
352 wxMenu
* subMenu
= NULL
);
355 If the platform supports it, sets the shape of the window to that
356 depicted by @a region. The system will not display or respond to any
357 mouse event for the pixels that lie outside of the region. To reset the
358 window to the normal rectangular shape simply call SetShape() again with
359 an empty wxRegion. Returns @true if the operation is successful.
361 virtual bool SetShape(const wxRegion
& region
);
364 Allows specification of minimum and maximum window sizes, and window
365 size increments. If a pair of values is not set (or set to -1), no
366 constraints will be used.
377 Specifies the increment for sizing the width (GTK/Motif/Xt only).
379 Specifies the increment for sizing the height (GTK/Motif/Xt only).
381 @remarks Notice that this function not only prevents the user from
382 resizing the window outside the given bounds but it also
383 prevents the program itself from doing it using
387 virtual void SetSizeHints(int minW
, int minH
,
388 int maxW
= -1, int maxH
= -1,
389 int incW
= -1, int incH
= -1);
392 Allows specification of minimum and maximum window sizes, and window
393 size increments. If a pair of values is not set (or set to -1), no
394 constraints will be used.
397 The minimum size of the window.
399 The maximum size of the window.
401 Increment size (only taken into account under X11-based ports such
402 as wxGTK/wxMotif/wxX11).
404 @remarks Notice that this function not only prevents the user from
405 resizing the window outside the given bounds but it also
406 prevents the program itself from doing it using
409 void SetSizeHints(const wxSize
& minSize
,
410 const wxSize
& maxSize
= wxDefaultSize
,
411 const wxSize
& incSize
= wxDefaultSize
);
414 Sets the window title.
421 virtual void SetTitle(const wxString
& title
);
424 If the platform supports it will set the window to be translucent.
427 Determines how opaque or transparent the window will be, if the
428 platform supports the opreration. A value of 0 sets the window to be
429 fully transparent, and a value of 255 sets the window to be fully
432 virtual bool SetTransparent(wxByte alpha
);
435 This virtual function is not meant to be called directly but can be
436 overridden to return @false (it returns @true by default) to allow the
437 application to close even if this, presumably not very important, window
438 is still opened. By default, the application stays alive as long as
439 there are any open top level windows.
441 virtual bool ShouldPreventAppExit() const;
444 This function sets the wxTopLevelWindow's modified state on OS X,
445 which currently draws a black dot in the wxTopLevelWindow's close button.
446 On other platforms, this method does nothing.
450 virtual void OSXSetModified(bool modified
);
453 Returns the current modified state of the wxTopLevelWindow on OS X.
454 On other platforms, this method does nothing.
456 @see OSXSetModified()
458 virtual bool OSXIsModified() const;
461 Depending on the value of @a show parameter the window is either shown
462 full screen or restored to its normal state. @a style is a bit list
463 containing some or all of the following values, which indicate what
464 elements of the window to hide in full-screen mode:
466 - @c ::wxFULLSCREEN_NOMENUBAR
467 - @c ::wxFULLSCREEN_NOTOOLBAR
468 - @c ::wxFULLSCREEN_NOSTATUSBAR
469 - @c ::wxFULLSCREEN_NOBORDER
470 - @c ::wxFULLSCREEN_NOCAPTION
471 - @c ::wxFULLSCREEN_ALL (all of the above)
473 This function has not been tested with MDI frames.
475 @note Showing a window full screen also actually @ref wxWindow::Show()
476 "Show()"s the window if it isn't shown.
480 virtual bool ShowFullScreen(bool show
, long style
= wxFULLSCREEN_ALL
);
483 This method is specific to wxUniversal port.
485 Use native or custom-drawn decorations for this window only. Notice that
486 to have any effect this method must be called before really creating the
487 window, i.e. two step creation must be used:
490 MyFrame *frame = new MyFrame; // use default ctor
491 frame->UseNativeDecorations(false); // change from default "true"
492 frame->Create(parent, title, ...); // really create the frame
495 @see UseNativeDecorationsByDefault(),
496 IsUsingNativeDecorations()
498 void UseNativeDecorations(bool native
= true);
501 This method is specific to wxUniversal port.
503 Top level windows in wxUniversal port can use either system-provided
504 window decorations (i.e. title bar and various icons, buttons and menus
505 in it) or draw the decorations themselves. By default the system
506 decorations are used if they are available, but this method can be
507 called with @a native set to @false to change this for all windows
508 created after this point.
510 Also note that if @c WXDECOR environment variable is set, then custom
511 decorations are used by default and so it may make sense to call this
512 method with default argument if the application can't use custom
513 decorations at all for some reason.
515 @see UseNativeDecorations()
517 void UseNativeDecorationsByDefault(bool native
= true);