]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/brush.h
avoid GCC warning about type-punned pointer breaking strict aliasing rules
[wxWidgets.git] / include / wx / mac / carbon / brush.h
CommitLineData
8cf73271 1/////////////////////////////////////////////////////////////////////////////
46562151 2// Name: wx/mac/carbon/brush.h
8cf73271
SC
3// Purpose: wxBrush class
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
8cf73271
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_BRUSH_H_
13#define _WX_BRUSH_H_
14
8cf73271
SC
15#include "wx/gdicmn.h"
16#include "wx/gdiobj.h"
17#include "wx/bitmap.h"
18
b5dbe15d 19class WXDLLIMPEXP_FWD_CORE wxBrush;
8cf73271 20
8cf73271 21// Brush
cb9d5bd0 22class WXDLLEXPORT wxBrush: public wxBrushBase
8cf73271 23{
8f884a0d 24public:
ab9d0a8c 25 wxBrush();
ab9d0a8c
WS
26 wxBrush(const wxColour& col, int style = wxSOLID);
27 wxBrush(const wxBitmap& stipple);
d3c7fc99 28 virtual ~wxBrush();
ab9d0a8c 29
46562151 30 virtual void SetColour(const wxColour& col) ;
1a1498c0 31 virtual void SetColour(unsigned char r, unsigned char g, unsigned char b) ;
ab9d0a8c
WS
32 virtual void SetStyle(int style) ;
33 virtual void SetStipple(const wxBitmap& stipple) ;
ab9d0a8c 34
8f884a0d
VZ
35 bool operator==(const wxBrush& brush) const;
36 bool operator!=(const wxBrush& brush) const { return !(*this == brush); }
ab9d0a8c 37
850df2d7 38 const wxColour& GetColour() const ;
cb9d5bd0 39 virtual int GetStyle() const ;
ab9d0a8c
WS
40 wxBitmap *GetStipple() const ;
41
850df2d7 42protected:
8f884a0d
VZ
43 virtual wxGDIRefData *CreateGDIRefData() const;
44 virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
45
83dcd781 46private:
8f884a0d 47 DECLARE_DYNAMIC_CLASS(wxBrush)
8cf73271
SC
48};
49
8f884a0d 50#endif // _WX_BRUSH_H_