+/**
+ Styles used with wxTopLevelWindow::RequestUserAttention().
+*/
+enum
+{
+ wxUSER_ATTENTION_INFO = 1, ///< Requests user attention,
+ wxUSER_ATTENTION_ERROR = 2 ///< Results in a more drastic action.
+};
+
+/**
+ Styles used with wxTopLevelWindow::ShowFullScreen().
+*/
+enum
+{
+ wxFULLSCREEN_NOMENUBAR = 0x0001, ///< Don't display the menu bar.
+ wxFULLSCREEN_NOTOOLBAR = 0x0002, ///< Don't display toolbar bars.
+ wxFULLSCREEN_NOSTATUSBAR = 0x0004, ///< Don't display the status bar.
+ wxFULLSCREEN_NOBORDER = 0x0008, ///< Don't display any border.
+ wxFULLSCREEN_NOCAPTION = 0x0010, ///< Don't display a caption.
+
+ /**
+ Combination of all above, will display the least possible.
+ */
+ wxFULLSCREEN_ALL = wxFULLSCREEN_NOMENUBAR | wxFULLSCREEN_NOTOOLBAR |
+ wxFULLSCREEN_NOSTATUSBAR | wxFULLSCREEN_NOBORDER |
+ wxFULLSCREEN_NOCAPTION
+};
+