]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_statusbar.i
Allow for Cmd-click on wxMac
[wxWidgets.git] / wxPython / src / _statusbar.i
index ba4a4b92c0627e0bb9ad7d0c912fe18d3530b22a..0fc21a1f03b88855b950690f45ccacaaf8add9dc 100644 (file)
@@ -24,6 +24,7 @@
 
 
 // wxStatusBar: a window near the bottom of the frame used for status info
+MustHaveApp(wxStatusBar);
 class wxStatusBar : public wxWindow
 {
 public:
@@ -35,7 +36,7 @@ public:
                 const wxString& name = wxPyStatusLineNameStr);
     %name(PreStatusBar)wxStatusBar();
 
-    bool Create(wxWindow* parent, wxWindowID id,
+    bool Create(wxWindow* parent, wxWindowID id=-1,
                 long style = wxST_SIZEGRIP,
                 const wxString& name = wxPyStatusLineNameStr);
 
@@ -74,6 +75,9 @@ public:
     // get the dimensions of the horizontal and vertical borders
     virtual int GetBorderX() const;
     virtual int GetBorderY() const;
+
+    static wxVisualAttributes
+    GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
 };