X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6762286db6cf974817dead5b88bebf0e390dbb7e..ab67e8874db324fab5223cc8d5dff8a8de3e2b77:/include/wx/osx/toplevel.h diff --git a/include/wx/osx/toplevel.h b/include/wx/osx/toplevel.h index 7983b8c5c6..dcde837060 100644 --- a/include/wx/osx/toplevel.h +++ b/include/wx/osx/toplevel.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: wx/mac/carbon/toplevel.h +// Name: wx/osx/toplevel.h // Purpose: wxTopLevelWindowMac is the Mac implementation of wxTLW // Author: Stefan Csomor // Modified by: @@ -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, @@ -43,8 +45,8 @@ public: long style = wxDEFAULT_FRAME_STYLE, const wxString& name = wxFrameNameStr); - virtual ~wxTopLevelWindowMac(); - + bool Create(wxWindow *parent, WXWindow nativeWindow); + virtual bool Destroy(); virtual wxPoint GetClientAreaOrigin() const; @@ -60,6 +62,9 @@ public: 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 +73,15 @@ public: virtual void SetTitle( const wxString& title); virtual wxString GetTitle() const; - + + virtual void SetLabel(const wxString& label) { SetTitle( label ); } + virtual wxString GetLabel() const { return GetTitle(); } + + virtual void OSXSetModified(bool modified); + virtual bool OSXIsModified() const; + + virtual void SetRepresentedFilename(const wxString& filename); + protected: // common part of all ctors void Init();