1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/dfb/brush.h
3 // Purpose: wxBrush class declaration
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2006 REA Elektronik GmbH
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_DFB_BRUSH_H_
12 #define _WX_DFB_BRUSH_H_
15 #include "wx/object.h"
16 #include "wx/string.h"
17 #include "wx/gdiobj.h"
18 #include "wx/bitmap.h"
20 //-----------------------------------------------------------------------------
22 //-----------------------------------------------------------------------------
24 class WXDLLIMPEXP_FWD_CORE wxBitmap
;
25 class WXDLLIMPEXP_FWD_CORE wxBrush
;
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 class WXDLLIMPEXP_CORE wxBrush
: public wxBrushBase
35 wxBrush(const wxColour
&colour
, int style
= wxSOLID
);
36 wxBrush(const wxBitmap
&stippleBitmap
);
38 bool operator==(const wxBrush
& brush
) const;
39 bool operator!=(const wxBrush
& brush
) const { return !(*this == brush
); }
41 virtual int GetStyle() const;
42 wxColour
& GetColour() const;
43 wxBitmap
*GetStipple() const;
45 void SetColour(const wxColour
& col
);
46 void SetColour(unsigned char r
, unsigned char g
, unsigned char b
);
47 void SetStyle(int style
);
48 void SetStipple(const wxBitmap
& stipple
);
51 virtual wxGDIRefData
*CreateGDIRefData() const;
52 virtual wxGDIRefData
*CloneGDIRefData(const wxGDIRefData
*data
) const;
54 DECLARE_DYNAMIC_CLASS(wxBrush
)
57 #endif // _WX_DFB_BRUSH_H_