/////////////////////////////////////////////////////////////////////////////
-// Name: brush.cpp
+// Name: src/mac/carbon/brush.cpp
// Purpose: wxBrush
-// Author: AUTHOR
+// Author: Stefan Csomor
// Modified by:
-// Created: ??/??/98
+// Created: 1998-01-01
// RCS-ID: $Id$
-// Copyright: (c) AUTHOR
-// Licence: wxWindows licence
+// Copyright: (c) Stefan Csomor
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-#pragma implementation "brush.h"
-#endif
+#include "wx/wxprec.h"
-#include "wx/setup.h"
-#include "wx/utils.h"
#include "wx/brush.h"
-#if !USE_SHARED_LIBRARIES
-IMPLEMENT_DYNAMIC_CLASS(wxBrush, wxGDIObject)
+#ifndef WX_PRECOMP
+ #include "wx/utils.h"
#endif
-wxBrushRefData::wxBrushRefData()
+#include "wx/mac/private.h"
+
+IMPLEMENT_DYNAMIC_CLASS(wxBrush, wxGDIObject)
+
+class WXDLLEXPORT wxBrushRefData: public wxGDIRefData
+{
+public:
+ wxBrushRefData(const wxColour& colour = wxNullColour, int style = wxSOLID);
+ wxBrushRefData(const wxBitmap& stipple);
+ wxBrushRefData(const wxBrushRefData& data);
+ virtual ~wxBrushRefData();
+
+ bool operator==(const wxBrushRefData& data) const;
+
+ const wxColour& GetColour() const { return m_colour; }
+ int GetStyle() const { return m_style; }
+ wxBitmap *GetStipple() { return &m_stipple; }
+
+ void SetColour(const wxColour& colour) { m_colour = colour; }
+ void SetStyle(int style) { m_style = style; }
+ void SetStipple(const wxBitmap& stipple) { DoSetStipple(stipple); }
+
+protected:
+ void DoSetStipple(const wxBitmap& stipple);
+
+ wxBitmap m_stipple ;
+ wxColour m_colour;
+ int m_style;
+};
+
+#define M_BRUSHDATA ((wxBrushRefData *)m_refData)
+
+wxBrushRefData::wxBrushRefData(const wxColour& colour, int style)
+ : m_colour(colour), m_style( style )
+{
+}
+
+wxBrushRefData::wxBrushRefData(const wxBitmap& stipple)
{
- m_style = wxSOLID;
+ DoSetStipple( stipple );
}
wxBrushRefData::wxBrushRefData(const wxBrushRefData& data)
+ : wxGDIRefData() ,
+ m_stipple(data.m_stipple),
+ m_colour(data.m_colour),
+ m_style(data.m_style)
{
- m_style = data.m_style;
- m_stipple = data.m_stipple;
- m_colour = data.m_colour;
}
wxBrushRefData::~wxBrushRefData()
{
}
-// Brushes
-wxBrush::wxBrush()
+bool wxBrushRefData::operator==(const wxBrushRefData& data) const
{
+ return m_style == data.m_style &&
+ m_colour == data.m_colour &&
+ m_stipple.IsSameAs(data.m_stipple);
}
-wxBrush::~wxBrush()
+void wxBrushRefData::DoSetStipple(const wxBitmap& stipple)
{
+ m_stipple = stipple;
+ m_style = stipple.GetMask() ? wxSTIPPLE_MASK_OPAQUE : wxSTIPPLE;
}
+//
+//
+//
-wxBrush::wxBrush(const wxColour& col, int Style)
+wxBrush::wxBrush()
{
- m_refData = new wxBrushRefData;
+}
- M_BRUSHDATA->m_colour = col;
- M_BRUSHDATA->m_style = Style;
+wxBrush::~wxBrush()
+{
+}
- RealizeResource();
+wxBrush::wxBrush(const wxColour& col, int style)
+{
+ m_refData = new wxBrushRefData( col, style );
}
wxBrush::wxBrush(const wxBitmap& stipple)
{
- m_refData = new wxBrushRefData;
+ m_refData = new wxBrushRefData( stipple );
+}
- M_BRUSHDATA->m_style = wxSTIPPLE;
- M_BRUSHDATA->m_stipple = stipple;
+// ----------------------------------------------------------------------------
+// wxBrush house keeping stuff
+// ----------------------------------------------------------------------------
- RealizeResource();
+bool wxBrush::operator==(const wxBrush& brush) const
+{
+ const wxBrushRefData *brushData = (wxBrushRefData *)brush.m_refData;
+
+ // an invalid brush is considered to be only equal to another invalid brush
+ return m_refData ? (brushData && *M_BRUSHDATA == *brushData) : !brushData;
}
-void wxBrush::Unshare()
+wxObjectRefData *wxBrush::CreateRefData() const
{
- // Don't change shared data
- if (!m_refData)
- {
- m_refData = new wxBrushRefData();
- }
- else
- {
- wxBrushRefData* ref = new wxBrushRefData(*(wxBrushRefData*)m_refData);
- UnRef();
- m_refData = ref;
- }
+ return new wxBrushRefData;
}
-void wxBrush::SetColour(const wxColour& col)
+wxObjectRefData *wxBrush::CloneRefData(const wxObjectRefData *data) const
{
- Unshare();
+ return new wxBrushRefData(*(const wxBrushRefData *)data);
+}
- M_BRUSHDATA->m_colour = col;
+// ----------------------------------------------------------------------------
+// wxBrush accessors
+// ----------------------------------------------------------------------------
- RealizeResource();
+const wxColour& wxBrush::GetColour() const
+{
+ wxCHECK_MSG( Ok(), wxNullColour, _T("invalid brush") );
+
+ return M_BRUSHDATA->GetColour();
}
-void wxBrush::SetColour(unsigned char r, unsigned char g, unsigned char b)
+int wxBrush::GetStyle() const
{
- Unshare();
-
- M_BRUSHDATA->m_colour.Set(r, g, b);
-
- RealizeResource();
+ wxCHECK_MSG( Ok(), 0, _T("invalid brush") );
+
+ return M_BRUSHDATA->GetStyle();
}
-void wxBrush::SetStyle(int Style)
+wxBitmap *wxBrush::GetStipple() const
{
- Unshare();
+ wxCHECK_MSG( Ok(), NULL, _T("invalid brush") );
+
+ return M_BRUSHDATA->GetStipple();
+}
- M_BRUSHDATA->m_style = Style;
+// ----------------------------------------------------------------------------
+// wxBrush setters
+// ----------------------------------------------------------------------------
- RealizeResource();
+void wxBrush::SetColour(const wxColour& col)
+{
+ AllocExclusive();
+
+ M_BRUSHDATA->SetColour(col);
}
-void wxBrush::SetStipple(const wxBitmap& Stipple)
+void wxBrush::SetColour(unsigned char r, unsigned char g, unsigned char b)
{
- Unshare();
-
- M_BRUSHDATA->m_stipple = Stipple;
-
- RealizeResource();
+ AllocExclusive();
+
+ M_BRUSHDATA->SetColour(wxColour(r, g, b));
}
-bool wxBrush::RealizeResource()
+void wxBrush::SetStyle(int style)
{
- return TRUE;
+ AllocExclusive();
+
+ M_BRUSHDATA->SetStyle(style);
}
+void wxBrush::SetStipple(const wxBitmap& stipple)
+{
+ AllocExclusive();
+
+ M_BRUSHDATA->SetStipple(stipple);
+}