]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/toplevel.h
going private for m_peer to give a foundation for better encapsulation
[wxWidgets.git] / include / wx / osx / toplevel.h
index 80ccb39ed50ac8b9a5a43ac14952058bcb8d9110..262c3e8aa52dd7771dca24c7d6f8055de21af4fe 100644 (file)
@@ -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,7 +45,7 @@ public:
                 long style = wxDEFAULT_FRAME_STYLE,
                 const wxString& name = wxFrameNameStr);
 
-    virtual ~wxTopLevelWindowMac();
+    bool Create(wxWindow *parent, WXWindow nativeWindow);
 
     virtual bool Destroy();
 
@@ -62,7 +64,7 @@ public:
     virtual void Iconize(bool iconize = true);
     virtual bool IsIconized() const;
     virtual void Restore();
-    
+
     virtual bool IsActive();
 
     virtual void ShowWithoutActivating();
@@ -75,6 +77,9 @@ 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();