Added support for using OS X' full screen API (available since OS X 10.7).

Added EnableFullScreenView() to have a full screen button in the title bar and also allowing ShowFullScreen() to make use of the newer full screen API.

See #14357.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76495 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Dimitri Schoolwerth
2014-05-11 22:41:13 +00:00
parent f641dfd78c
commit 6451d23158
10 changed files with 111 additions and 2 deletions

View File

@@ -534,7 +534,35 @@ public:
focus.
*/
virtual void ShowWithoutActivating();
/**
Adds or removes a full screen button to the right upper corner of a
window's title bar under OS X 10.7 and later.
Currently only available for wxOSX/Cocoa.
@param enable
If @true (default) adds the full screen button in the title bar;
if @false the button is removed.
@return @true if the button was added or removed, @false if running
under a pre-OS X 10.7 system or another OS.
@note Having the button is also required to let ShowFullScreen()
make use of the full screen API available since OS X 10.7: a full
screen window gets its own space and entering and exiting the mode
is animated.
If the button is not present the old way of switching to full screen
is used.
@onlyfor{wxosx}
@see ShowFullScreen()
@since 3.1.0
*/
virtual bool EnableFullScreenView(bool enable = true);
/**
Depending on the value of @a show parameter the window is either shown
full screen or restored to its normal state. @a style is a bit list
@@ -553,7 +581,7 @@ public:
@note Showing a window full screen also actually @ref wxWindow::Show()
"Show()"s the window if it isn't shown.
@see IsFullScreen()
@see EnableFullScreenView(), IsFullScreen()
*/
virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);