]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/scrolbar.h
Eliminated some warnings under Windows; wxGetHomeDir problem in wxFile;
[wxWidgets.git] / include / wx / gtk1 / scrolbar.h
index 5badbfcb2891b478e9a10b4cfe5ba758727702dc..f4a50694d0454c2b1602d0a58d2e0ed776f2c5a8 100644 (file)
@@ -42,18 +42,23 @@ class wxScrollBar: public wxControl
 
   public:
   
-    wxScrollBar(void) { m_adjust = NULL; m_oldPos = 0.0; };
-    wxScrollBar(wxWindow *parent, wxWindowID id,
+    wxScrollBar(void) { m_adjust = (GtkAdjustment *) NULL; m_oldPos = 0.0; };
+    inline wxScrollBar( wxWindow *parent, wxWindowID id,
            const wxPoint& pos = wxDefaultPosition,
            const wxSize& size = wxDefaultSize,
            long style = wxSB_HORIZONTAL,
-           const wxString& name = wxScrollBarNameStr );
-    ~wxScrollBar(void);
-    bool Create(wxWindow *parent, wxWindowID id,
+           const wxValidator& validator = wxDefaultValidator,
+           const wxString& name = wxScrollBarNameStr )
+    {
+      Create( parent, id, pos, size, style, validator, name );
+    }
+    bool Create( wxWindow *parent, wxWindowID id,
            const wxPoint& pos = wxDefaultPosition,
            const wxSize& size = wxDefaultSize,
            long style = wxSB_HORIZONTAL,
-           const wxString& name = wxScrollBarNameStr);
+           const wxValidator& validator = wxDefaultValidator,
+           const wxString& name = wxScrollBarNameStr );
+    ~wxScrollBar(void);
     int GetPosition(void) const;
     int GetThumbSize() const;
     int GetPageSize() const;
@@ -72,7 +77,9 @@ class wxScrollBar: public wxControl
     void SetObjectLength( int objectLength );
     void SetViewLength( int viewLength );
 
-  public:
+  // implementation    
+    
+    bool IsOwnGtkWindow( GdkWindow *window );
   
     GtkAdjustment  *m_adjust;
     float           m_oldPos;