wxTopLevelWindow is a common base class for wxDialog and wxFrame. It is an abstract base class meaning that you never work with objects of this class directly, but all of its methods are also applicable for the two classes above.
Derived from
wxWindow
wxEvtHandler
wxObject
Include files
<wx/toplevel.h>
Members
wxTopLevelWindow::GetIcon
wxTopLevelWindow::GetIcons
wxTopLevelWindow::GetTitle
wxTopLevelWindow::IsActive
wxTopLevelWindow::Iconize
wxTopLevelWindow::IsFullScreen
wxTopLevelWindow::IsIconized
wxTopLevelWindow::IsMaximized
wxTopLevelWindow::Maximize
wxTopLevelWindow::RequestUserAttention
wxTopLevelWindow::SetIcon
wxTopLevelWindow::SetIcons
wxTopLevelWindow::SetLeftMenu
wxTopLevelWindow::SetRightMenu
wxTopLevelWindow::SetShape
wxTopLevelWindow::SetTitle
wxTopLevelWindow::ShowFullScreen
const wxIcon& GetIcon() const
Returns the standard icon of the window. The icon will be invalid if it hadn't been previously set by SetIcon.
See also
const wxIconBundle& GetIcons() const
Returns all icons associated with the window, there will be none of them if neither SetIcon nor SetIcons had been called before.
Use GetIcon to get the main icon of the window.
See also
wxString GetTitle() const
Gets a string containing the window title.
See wxTopLevelWindow::SetTitle.
bool IsActive() const
Returns true if this window is currently active, i.e. if the user is currently working with it.
void Iconize(bool iconize)
Iconizes or restores the window.
Parameters
iconize
See also
wxTopLevelWindow::IsIconized, wxTopLevelWindow::Maximize.
bool IsFullScreen()
Returns true if the window is in fullscreen mode.
See also
wxTopLevelWindow::ShowFullScreen
bool IsIconized() const
Returns true if the window is iconized.
bool IsMaximized() const
Returns true if the window is maximized.
void Maximize(bool maximize)
Maximizes or restores the window.
Parameters
maximize
See also
void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO)
Use a system-dependent way to attract users attention to the window when it is in background.
flags may have the value of either wxUSER_ATTENTION_INFO (default) or wxUSER_ATTENTION_ERROR which results in a more drastic action. When in doubt, use the default value.
Note that this function should normally be only used when the application is not already in foreground.
This function is currently implemented for Win32 where it flashes the window icon in the taskbar, and for wxGTK with task bars supporting it.
void SetIcon(const wxIcon& icon)
Sets the icon for this window.
Parameters
icon
Remarks
The window takes a 'copy' of icon, but since it uses reference counting, the copy is very quick. It is safe to delete icon after calling this function.
See also wxIcon.
void SetIcons(const wxIconBundle& icons)
Sets several icons of different sizes for this window: this allows to use different icons for different situations (e.g. task switching bar, taskbar, window title bar) instead of scaling, with possibly bad looking results, the only icon set by SetIcon.
Parameters
icons
See also
void SetLeftMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu * subMenu = NULL)
Sets action or menu activated by pressing left hardware button on the smart phones. Unavailable on full keyboard machines.
Parameters
id
label
subMenu
See also
wxTopLevelWindow::SetRightMenu.
void SetRightMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu * subMenu = NULL)
Sets action or menu activated by pressing right hardware button on the smart phones. Unavailable on full keyboard machines.
Parameters
id
label
subMenu
See also
wxTopLevelWindow::SetLeftMenu.
bool SetShape(const wxRegion& region)
If the platform supports it, sets the shape of the window to that depicted by region. The system will not display or respond to any mouse event for the pixels that lie outside of the region. To reset the window to the normal rectangular shape simply call SetShape again with an empty region. Returns TRUE if the operation is successful.
virtual void SetTitle(const wxString& title)
Sets the window title.
Parameters
title
See also
bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL)
Depending on the value of show parameter the window is either shown full screen or restored to its normal state. style is a bit list containing some or all of the following values, which indicate what elements of the window to hide in full-screen mode:
This function has not been tested with MDI frames.
Note that showing a window full screen also actually Show()s if it hadn't been shown yet.
See also
wxTopLevelWindow::IsFullScreen