]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/slider.h
Added a few files; fixed some warnings and wxMotif compile problems
[wxWidgets.git] / include / wx / motif / slider.h
index adb5433418207cd54bb93fe91d8fee3a73bc7042..5d1bacf51a9b728e6a9f938a43839c6e13c7cfb8 100644 (file)
@@ -52,7 +52,13 @@ public:
   virtual int GetValue() const ;
   virtual void SetValue(int);
   void GetSize(int *x, int *y) const ;
+  wxSize GetSize() const { return wxWindow::GetSize(); }
+
   void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
+  void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
+    { wxWindow::SetSize(rect, sizeFlags); }
+  void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
+  virtual void SetSize(int width, int height) { SetSize(-1, -1, width, height, wxSIZE_USE_EXISTING); }
 
   void SetRange(int minValue, int maxValue);