]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_collpane.i
save a reference to the bitmap so it doesn't get destroyed before the
[wxWidgets.git] / wxPython / src / _collpane.i
index 58ba3fa13f4e43b8a4ca079d7d45b829323777f4..6e79eb3d6f2cccd1de3d2b6a3c59475fa64c18bc 100644 (file)
 //---------------------------------------------------------------------------
 %newgroup
 
-%{
-#include <wx/collpane.h>
-%}
-
 MAKE_CONST_WXSTRING(CollapsiblePaneNameStr);
 
 enum {
@@ -107,7 +103,9 @@ public:
         virtual wxWindow *, GetPane() const,
         "Returns a reference to the pane window.  Use the returned `wx.Window`
 as the parent of widgets to make them part of the collapsible area.", "");
-    
+
+    %property(Expanded, IsExpanded);
+    %property(Collapsed, IsCollapsed);
 };
 
 
@@ -128,6 +126,8 @@ public:
 
     bool GetCollapsed() const;
     void SetCollapsed(bool c);
+
+    %property(Collapsed, GetCollapsed, SetCollapsed);
 };
 
 //---------------------------------------------------------------------------