X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/519cb848a8f4c91c73421bb75314754284e593a4..02becaf4b2665bd428f13404e1cbe2b919be598c:/src/mac/carbon/brush.cpp diff --git a/src/mac/carbon/brush.cpp b/src/mac/carbon/brush.cpp index cb9d76d1ab..789be90f00 100644 --- a/src/mac/carbon/brush.cpp +++ b/src/mac/carbon/brush.cpp @@ -1,36 +1,67 @@ ///////////////////////////////////////////////////////////////////////////// // Name: 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__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "brush.h" #endif -#include "wx/setup.h" +#include "wx/wxprec.h" + #include "wx/utils.h" #include "wx/brush.h" +#include "wx/mac/private.h" + #if !USE_SHARED_LIBRARIES IMPLEMENT_DYNAMIC_CLASS(wxBrush, wxGDIObject) #endif +class WXDLLEXPORT wxBrushRefData: public wxGDIRefData +{ + friend class WXDLLEXPORT wxBrush; +public: + wxBrushRefData(); + wxBrushRefData(const wxBrushRefData& data); + ~wxBrushRefData(); + +protected: + wxMacBrushKind m_macBrushKind ; + int m_style; + wxBitmap m_stipple ; + wxColour m_colour; + + ThemeBrush m_macThemeBrush ; + + ThemeBackgroundKind m_macThemeBackground ; + Rect m_macThemeBackgroundExtent ; +}; + +#define M_BRUSHDATA ((wxBrushRefData *)m_refData) + wxBrushRefData::wxBrushRefData() + : m_style(wxSOLID) { - m_style = wxSOLID; + m_macBrushKind = kwxMacBrushColour ; } wxBrushRefData::wxBrushRefData(const wxBrushRefData& data) + : wxGDIRefData() + , m_style(data.m_style) { - m_style = data.m_style; m_stipple = data.m_stipple; m_colour = data.m_colour; + m_macBrushKind = data.m_macBrushKind ; + m_macThemeBrush = data.m_macThemeBrush ; + m_macThemeBackground = data.m_macThemeBackground ; + m_macThemeBackgroundExtent = data.m_macThemeBackgroundExtent ; } wxBrushRefData::~wxBrushRefData() @@ -40,14 +71,10 @@ wxBrushRefData::~wxBrushRefData() // Brushes wxBrush::wxBrush() { - if ( wxTheBrushList ) - wxTheBrushList->AddBrush(this); } wxBrush::~wxBrush() { - if ( wxTheBrushList ) - wxTheBrushList->RemoveBrush(this); } wxBrush::wxBrush(const wxColour& col, int Style) @@ -58,43 +85,51 @@ wxBrush::wxBrush(const wxColour& col, int Style) M_BRUSHDATA->m_style = Style; RealizeResource(); - - if ( wxTheBrushList ) - wxTheBrushList->AddBrush(this); } wxBrush::wxBrush(const wxBitmap& stipple) { m_refData = new wxBrushRefData; - M_BRUSHDATA->m_style = wxSTIPPLE; + M_BRUSHDATA->m_colour = *wxBLACK; M_BRUSHDATA->m_stipple = stipple; + + if (M_BRUSHDATA->m_stipple.GetMask()) + M_BRUSHDATA->m_style = wxSTIPPLE_MASK_OPAQUE; + else + M_BRUSHDATA->m_style = wxSTIPPLE; RealizeResource(); - - if ( wxTheBrushList ) - wxTheBrushList->AddBrush(this); } +wxBrush::wxBrush(ThemeBrush macThemeBrush ) +{ + m_refData = new wxBrushRefData; + + M_BRUSHDATA->m_macBrushKind = kwxMacBrushTheme; + M_BRUSHDATA->m_macThemeBrush = macThemeBrush; + + RealizeResource(); +} void wxBrush::Unshare() { - // Don't change shared data - if (!m_refData) + // Don't change shared data + if (!m_refData) { - m_refData = new wxBrushRefData(); - } + m_refData = new wxBrushRefData(); + } else { - wxBrushRefData* ref = new wxBrushRefData(*(wxBrushRefData*)m_refData); - UnRef(); - m_refData = ref; - } + wxBrushRefData* ref = new wxBrushRefData(*(wxBrushRefData*)m_refData); + UnRef(); + m_refData = ref; + } } void wxBrush::SetColour(const wxColour& col) { Unshare(); - + M_BRUSHDATA->m_macBrushKind = kwxMacBrushColour; M_BRUSHDATA->m_colour = col; RealizeResource(); @@ -104,6 +139,7 @@ void wxBrush::SetColour(unsigned char r, unsigned char g, unsigned char b) { Unshare(); + M_BRUSHDATA->m_macBrushKind = kwxMacBrushColour; M_BRUSHDATA->m_colour.Set(r, g, b); RealizeResource(); @@ -113,6 +149,7 @@ void wxBrush::SetStyle(int Style) { Unshare(); + M_BRUSHDATA->m_macBrushKind = kwxMacBrushColour; M_BRUSHDATA->m_style = Style; RealizeResource(); @@ -122,13 +159,75 @@ void wxBrush::SetStipple(const wxBitmap& Stipple) { Unshare(); + M_BRUSHDATA->m_macBrushKind = kwxMacBrushColour; M_BRUSHDATA->m_stipple = Stipple; RealizeResource(); } +void wxBrush::MacSetTheme(ThemeBrush macThemeBrush) +{ + Unshare(); + + M_BRUSHDATA->m_macBrushKind = kwxMacBrushTheme; + M_BRUSHDATA->m_macThemeBrush = macThemeBrush; + RGBColor color ; + GetThemeBrushAsColor( macThemeBrush , 32, true, &color ); + M_BRUSHDATA->m_colour.Set( color.red >> 8 , color.green >> 8 , color.blue >> 8 ) ; + + RealizeResource(); +} + +void wxBrush::MacSetThemeBackground(unsigned long macThemeBackground, const WXRECTPTR extent) +{ + Unshare(); + + M_BRUSHDATA->m_macBrushKind = kwxMacBrushThemeBackground; + M_BRUSHDATA->m_macThemeBackground = macThemeBackground; + M_BRUSHDATA->m_macThemeBackgroundExtent = *(Rect*)extent ; + RealizeResource(); +} + bool wxBrush::RealizeResource() { return TRUE; } +unsigned long wxBrush::MacGetThemeBackground( WXRECTPTR extent) const +{ + if ( M_BRUSHDATA && M_BRUSHDATA->m_macBrushKind == kwxMacBrushThemeBackground ) + { + if ( extent ) + *(Rect*)extent = M_BRUSHDATA->m_macThemeBackgroundExtent ; + return M_BRUSHDATA->m_macThemeBackground ; + } + else + { + return 0 ; + } +} + +short wxBrush::MacGetTheme() const +{ + return (M_BRUSHDATA ? ( M_BRUSHDATA->m_macBrushKind == kwxMacBrushTheme ? M_BRUSHDATA->m_macThemeBrush : kThemeBrushBlack) : kThemeBrushBlack); +} + +wxColour& wxBrush::GetColour() const +{ + return (M_BRUSHDATA ? M_BRUSHDATA->m_colour : wxNullColour); +} + +int wxBrush::GetStyle() const +{ + return (M_BRUSHDATA ? M_BRUSHDATA->m_style : 0); +} + +wxBitmap *wxBrush::GetStipple() const +{ + return (M_BRUSHDATA ? & M_BRUSHDATA->m_stipple : 0); +} + +wxMacBrushKind wxBrush::MacGetBrushKind() const +{ + return (M_BRUSHDATA ? M_BRUSHDATA->m_macBrushKind : kwxMacBrushColour); +}