]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_gauge.i
Alpha is supported on GTK2 now!
[wxWidgets.git] / wxPython / src / _gauge.i
index 941054bf49d0f5ea565882c051ca0b9e0553c5c9..21f1472d7abbfdce92292e1c0c96692029d86ab6 100644 (file)
@@ -15,9 +15,7 @@
 
 //---------------------------------------------------------------------------
 
-%{
-    DECLARE_DEF_STRING(GaugeNameStr);
-%}
+MAKE_CONST_WXSTRING(GaugeNameStr);
 
 %newgroup
 
@@ -31,12 +29,14 @@ enum {
 //---------------------------------------------------------------------------
 
 
+MustHaveApp(wxGauge);
+
 class wxGauge : public wxControl {
 public:
-    %addtofunc wxGauge         "self._setOORInfo(self)"
-    %addtofunc wxGauge()       ""
+    %pythonAppend wxGauge         "self._setOORInfo(self)"
+    %pythonAppend wxGauge()       ""
 
-    wxGauge(wxWindow* parent, wxWindowID id, int range,
+    wxGauge(wxWindow* parent, wxWindowID id=-1, int range=100,
             const wxPoint& pos = wxDefaultPosition,
             const wxSize& size = wxDefaultSize,
             long style = wxGA_HORIZONTAL,
@@ -44,7 +44,7 @@ public:
             const wxString& name = wxPyGaugeNameStr);
     %name(PreGauge)wxGauge();
 
-    bool Create(wxWindow* parent, wxWindowID id, int range,
+    bool Create(wxWindow* parent, wxWindowID id=-1, int range=100,
             const wxPoint& pos = wxDefaultPosition,
             const wxSize& size = wxDefaultSize,
             long style = wxGA_HORIZONTAL,
@@ -67,6 +67,10 @@ public:
     virtual int GetShadowWidth() const;
     virtual void SetBezelFace(int w);
     virtual int GetBezelFace() const;
+
+
+    static wxVisualAttributes
+    GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
 };
 
 //---------------------------------------------------------------------------