]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_toplvl.i
Make the picker headers accessible to all
[wxWidgets.git] / wxPython / src / _toplvl.i
index ceeaf5b11104df8963bbf7f9e8c1ccc69de9da0e..e9e6c60fd153789bedd2cbd5d92e4d7401d8b292 100644 (file)
@@ -100,6 +100,10 @@ public:
     // return True if the frame is maximized
     virtual bool IsMaximized() const;
 
+    // return true if the frame is always maximized
+    // due to native guidelines or current policy
+    virtual bool IsAlwaysMaximized() const;
+    
     // return True if the frame is iconized
     virtual bool IsIconized() const;
 
@@ -134,7 +138,16 @@ public:
     virtual bool IsActive();
 
 #ifdef __WXMAC__
-    void MacSetMetalAppearance( bool on );
+    %extend {
+        void MacSetMetalAppearance( bool on ) {
+            int style = self->GetExtraStyle();
+            if ( on )
+                style |= wxFRAME_EX_METAL;
+            else
+                style &= ~wxFRAME_EX_METAL;
+            self->SetExtraStyle(style);
+        }
+    }
     bool MacGetMetalAppearance() const;
 #else
     %extend