X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6762286db6cf974817dead5b88bebf0e390dbb7e..8325504f4bf9dc557745f4dcb26b43c029d5106d:/include/wx/osx/toplevel.h?ds=sidebyside diff --git a/include/wx/osx/toplevel.h b/include/wx/osx/toplevel.h index 7983b8c5c6..8ddac703e8 100644 --- a/include/wx/osx/toplevel.h +++ b/include/wx/osx/toplevel.h @@ -35,6 +35,8 @@ public: (void)Create(parent, id, title, pos, size, style, name); } + virtual ~wxTopLevelWindowMac(); + bool Create(wxWindow *parent, wxWindowID id, const wxString& title, @@ -42,13 +44,16 @@ public: const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr); - - virtual ~wxTopLevelWindowMac(); + + bool Create(wxWindow *parent, WXWindow nativeWindow); virtual bool Destroy(); virtual wxPoint GetClientAreaOrigin() const; + virtual bool SetShape(const wxRegion& region) + { return DoSetShape(region); } + // Attracts the users attention to this window if the application is // inactive (should be called when a background event occurs) virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO); @@ -59,7 +64,10 @@ public: virtual void Iconize(bool iconize = true); virtual bool IsIconized() const; virtual void Restore(); + + virtual bool IsActive(); + virtual void ShowWithoutActivating(); virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) ; virtual bool IsFullScreen() const ; @@ -68,7 +76,10 @@ public: virtual void SetTitle( const wxString& title); virtual wxString GetTitle() const; - + + virtual void OSXSetModified(bool modified); + virtual bool OSXIsModified() const; + protected: // common part of all ctors void Init();