Initial ShowWithoutActivating implementations for Mac and Windows, and attempt to improve IsActive behavior on Mac. Also adding ShowWithoutActivating() and Show/Hide tests, but until the mainloop issues are resolved, not adding them to tests.bkl.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62508 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -160,6 +160,12 @@ public:
|
||||
|
||||
// maximize the window to cover entire screen
|
||||
virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) = 0;
|
||||
|
||||
// shows the window, but doesn't activate it. If the base code is being run,
|
||||
// it means the port doesn't implement this method yet and so alert the user.
|
||||
virtual void ShowWithoutActivating() {
|
||||
wxFAIL_MSG("ShowWithoutActivating not implemented on this platform.");
|
||||
}
|
||||
|
||||
// return true if the frame is in fullscreen mode
|
||||
virtual bool IsFullScreen() const = 0;
|
||||
|
Reference in New Issue
Block a user