]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/toplevel.h
Add an accessor to get the current drop source from window.mm so that we can implemen...
[wxWidgets.git] / include / wx / osx / toplevel.h
index 7983b8c5c6adb1b03df4aee496ae3ce2be10aa38..14fb396b8bbef3bbc023f5335d1ed61310f5cc50 100644 (file)
@@ -44,11 +44,14 @@ public:
                 const wxString& name = wxFrameNameStr);
 
     virtual ~wxTopLevelWindowMac();
-    
+
     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 +62,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 +74,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();