1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_BRUSH_H_BASE_
|
|
|
|
#define _WX_BRUSH_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2004-12-03 17:31:53 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/gdiobj.h"
|
|
|
|
|
2004-12-03 15:31:31 +00:00
|
|
|
// wxBrushBase
|
|
|
|
class WXDLLEXPORT wxBrushBase: public wxGDIObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~wxBrushBase() { }
|
|
|
|
|
|
|
|
virtual int GetStyle() const = 0;
|
|
|
|
|
|
|
|
virtual bool IsHatch() const
|
|
|
|
{ return (GetStyle()>=wxFIRST_HATCH) && (GetStyle()<=wxLAST_HATCH); }
|
|
|
|
};
|
|
|
|
|
2004-12-20 12:44:22 +00:00
|
|
|
#if defined(__WXPALMOS__)
|
2004-10-19 13:40:30 +00:00
|
|
|
#include "wx/palmos/brush.h"
|
|
|
|
#elif defined(__WXMSW__)
|
2003-07-21 20:41:48 +00:00
|
|
|
#include "wx/msw/brush.h"
|
|
|
|
#elif defined(__WXMOTIF__) || defined(__WXX11__)
|
|
|
|
#include "wx/x11/brush.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXGTK__)
|
2003-07-21 20:41:48 +00:00
|
|
|
#include "wx/gtk/brush.h"
|
2001-06-26 20:59:19 +00:00
|
|
|
#elif defined(__WXMGL__)
|
2003-07-21 20:41:48 +00:00
|
|
|
#include "wx/mgl/brush.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
2003-07-21 20:41:48 +00:00
|
|
|
#include "wx/mac/brush.h"
|
2003-03-22 06:18:36 +00:00
|
|
|
#elif defined(__WXCOCOA__)
|
2003-07-21 20:41:48 +00:00
|
|
|
#include "wx/cocoa/brush.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
2003-07-21 20:41:48 +00:00
|
|
|
#include "wx/os2/brush.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_BRUSH_H_BASE_
|