]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_toplvl.i
replaced wxStream::GetSize() with GetLength() (still keep the former but it will...
[wxWidgets.git] / wxPython / src / _toplvl.i
index 6e288c279c8de7c0d9aaa947d2f1a914e8204a91..5d00956845b89e27ebcfe4174aac31a5f32e2d6b 100644 (file)
@@ -49,7 +49,8 @@ enum
     wxFRAME_NO_WINDOW_MENU,
     wxFRAME_NO_TASKBAR,
     wxFRAME_SHAPED,
-
+    wxFRAME_DRAWER,
+    
     // Obsolete
     wxDIALOG_MODAL,
     wxDIALOG_MODELESS,
@@ -127,10 +128,18 @@ public:
     // inactive (should be called when a background event occurs)
     virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO);
 
-
+    // Is this the active frame (highlighted in the taskbar)?
+    virtual bool IsActive();
+    
 #ifdef __WXMAC__
     void MacSetMetalAppearance( bool on ) ;
     bool MacGetMetalAppearance() const ;
+#else
+    %extend {
+        // TODO: Should they raise not implemented or just NOP???
+        void MacSetMetalAppearance( bool on ) { /*wxPyRaiseNotImplemented();*/ }
+        bool MacGetMetalAppearance() const    { /*wxPyRaiseNotImplemented();*/ return false; }
+    }
 #endif
 };