2005-05-04 18:57:50 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/brush.h
|
|
|
|
// Purpose: Includes platform-specific wxBrush file
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created:
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: Julian Smart
|
|
|
|
// Licence: wxWindows Licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
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"
|
2008-03-16 22:42:38 +00:00
|
|
|
#include "wx/gdicmn.h" // for wxGDIObjListBase
|
2004-12-03 17:31:53 +00:00
|
|
|
|
2008-03-16 16:47:57 +00:00
|
|
|
// NOTE: these values cannot be combined together!
|
|
|
|
enum wxBrushStyle
|
|
|
|
{
|
2008-03-20 15:08:51 +00:00
|
|
|
wxBRUSHSTYLE_INVALID = -1,
|
2008-03-16 16:47:57 +00:00
|
|
|
|
|
|
|
wxBRUSHSTYLE_SOLID = wxSOLID,
|
|
|
|
wxBRUSHSTYLE_TRANSPARENT = wxTRANSPARENT,
|
|
|
|
wxBRUSHSTYLE_STIPPLE_MASK_OPAQUE = wxSTIPPLE_MASK_OPAQUE,
|
|
|
|
wxBRUSHSTYLE_STIPPLE_MASK = wxSTIPPLE_MASK,
|
|
|
|
wxBRUSHSTYLE_STIPPLE = wxSTIPPLE,
|
|
|
|
wxBRUSHSTYLE_BDIAGONAL_HATCH = wxBDIAGONAL_HATCH,
|
|
|
|
wxBRUSHSTYLE_CROSSDIAG_HATCH = wxCROSSDIAG_HATCH,
|
|
|
|
wxBRUSHSTYLE_FDIAGONAL_HATCH = wxFDIAGONAL_HATCH,
|
|
|
|
wxBRUSHSTYLE_CROSS_HATCH = wxCROSS_HATCH,
|
|
|
|
wxBRUSHSTYLE_HORIZONTAL_HATCH = wxHORIZONTAL_HATCH,
|
|
|
|
wxBRUSHSTYLE_VERTICAL_HATCH = wxVERTICAL_HATCH,
|
|
|
|
wxBRUSHSTYLE_FIRST_HATCH = wxFIRST_HATCH,
|
2008-03-23 15:53:15 +00:00
|
|
|
wxBRUSHSTYLE_LAST_HATCH = wxLAST_HATCH
|
2008-03-16 16:47:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-12-03 15:31:31 +00:00
|
|
|
// wxBrushBase
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxBrushBase: public wxGDIObject
|
2004-12-03 15:31:31 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~wxBrushBase() { }
|
|
|
|
|
2008-03-28 16:47:58 +00:00
|
|
|
virtual void SetColour(const wxColour& col) = 0;
|
|
|
|
virtual void SetColour(unsigned char r, unsigned char g, unsigned char b) = 0;
|
|
|
|
virtual void SetStyle(wxBrushStyle style) = 0;
|
|
|
|
virtual void SetStipple(const wxBitmap& stipple) = 0;
|
|
|
|
|
|
|
|
virtual wxColour GetColour() const = 0;
|
2008-03-16 16:47:57 +00:00
|
|
|
virtual wxBrushStyle GetStyle() const = 0;
|
2008-03-28 16:47:58 +00:00
|
|
|
virtual wxBitmap *GetStipple() const = 0;
|
2004-12-03 15:31:31 +00:00
|
|
|
|
|
|
|
virtual bool IsHatch() const
|
2008-03-16 16:47:57 +00:00
|
|
|
{ return (GetStyle()>=wxBRUSHSTYLE_FIRST_HATCH) && (GetStyle()<=wxBRUSHSTYLE_LAST_HATCH); }
|
2010-10-15 23:46:46 +00:00
|
|
|
|
|
|
|
// Convenient helpers for testing whether the brush is a transparent one:
|
|
|
|
// unlike GetStyle() == wxBRUSHSTYLE_TRANSPARENT, they work correctly even
|
|
|
|
// if the brush is invalid (they both return false in this case).
|
|
|
|
bool IsTransparent() const
|
|
|
|
{
|
|
|
|
return IsOk() && GetStyle() == wxBRUSHSTYLE_TRANSPARENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsNonTransparent() const
|
|
|
|
{
|
|
|
|
return IsOk() && GetStyle() != wxBRUSHSTYLE_TRANSPARENT;
|
|
|
|
}
|
2004-12-03 15:31:31 +00:00
|
|
|
};
|
|
|
|
|
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"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK20__)
|
2003-07-21 20:41:48 +00:00
|
|
|
#include "wx/gtk/brush.h"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk1/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"
|
2006-08-27 09:42:42 +00:00
|
|
|
#elif defined(__WXDFB__)
|
|
|
|
#include "wx/dfb/brush.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
2008-06-11 19:17:41 +00:00
|
|
|
#include "wx/osx/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
|
|
|
|
|
2008-03-16 21:11:12 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxBrushList: public wxGDIObjListBase
|
|
|
|
{
|
|
|
|
public:
|
2008-03-22 00:02:48 +00:00
|
|
|
wxBrush *FindOrCreateBrush(const wxColour& colour,
|
|
|
|
wxBrushStyle style = wxBRUSHSTYLE_SOLID);
|
|
|
|
|
|
|
|
#if FUTURE_WXWIN_COMPATIBILITY_3_0
|
|
|
|
wxBrush *FindOrCreateBrush(const wxColour& colour, int style)
|
|
|
|
{ return FindOrCreateBrush(colour, (wxBrushStyle)style); }
|
|
|
|
#endif
|
|
|
|
|
2008-03-16 21:11:12 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_6
|
|
|
|
wxDEPRECATED( void AddBrush(wxBrush*) );
|
|
|
|
wxDEPRECATED( void RemoveBrush(wxBrush*) );
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
extern WXDLLIMPEXP_DATA_CORE(wxBrushList*) wxTheBrushList;
|
2008-03-16 21:11:12 +00:00
|
|
|
|
2008-03-22 03:13:18 +00:00
|
|
|
// provide comparison operators to allow code such as
|
|
|
|
//
|
|
|
|
// if ( brush.GetStyle() == wxTRANSPARENT )
|
|
|
|
//
|
|
|
|
// to compile without warnings which it would otherwise provoke from some
|
|
|
|
// compilers as it compares elements of different enums
|
|
|
|
#if FUTURE_WXWIN_COMPATIBILITY_3_0
|
|
|
|
|
|
|
|
inline bool operator==(wxBrushStyle s, wxDeprecatedGUIConstants t)
|
|
|
|
{
|
2008-11-02 02:39:52 +00:00
|
|
|
return static_cast<int>(s) == static_cast<int>(t);
|
2008-03-22 03:13:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator!=(wxBrushStyle s, wxDeprecatedGUIConstants t)
|
|
|
|
{
|
|
|
|
return !(s == t);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // FUTURE_WXWIN_COMPATIBILITY_3_0
|
|
|
|
|
|
|
|
#endif // _WX_BRUSH_H_BASE_
|