]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/brush.h
wxListBox mouse events now report coords relative
[wxWidgets.git] / include / wx / gtk1 / brush.h
index 43213033b030969a4d7a983da3533291ac11c4f9..31d4b7292c8d75274242fd7ce89f30d1e570169f 100644 (file)
@@ -33,25 +33,21 @@ class wxBrush;
 
 class wxBrush: public wxGDIObject
 {
-  DECLARE_DYNAMIC_CLASS(wxBrush)
-
-  public:
-
+public:
     wxBrush();
     wxBrush( const wxColour &colour, int style );
     wxBrush( const wxBitmap &stippleBitmap );
     wxBrush( const wxBrush &brush );
     ~wxBrush();
     wxBrush& operator = ( const wxBrush& brush );
-    bool operator == ( const wxBrush& brush );
-    bool operator != ( const wxBrush& brush );
+    bool operator == ( const wxBrush& brush ) const;
+    bool operator != ( const wxBrush& brush ) const;
     bool Ok() const;
 
     int GetStyle() const;
     wxColour &GetColour() const;
     wxBitmap *GetStipple() const;
 
-
     void SetColour( const wxColour& col );
     void SetColour( unsigned char r, unsigned char g, unsigned char b );
     void SetStyle( int style );
@@ -59,7 +55,8 @@ class wxBrush: public wxGDIObject
 
     void Unshare();
 
-    // no data :-)
+private:
+    DECLARE_DYNAMIC_CLASS(wxBrush)
 };
 
 #endif // __GTKBRUSHH__