X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/917be7ed065337e8a7a67615969ecaade9eea809..d6b9cc87c0bad90c4016a58699842b3939fc362c:/include/wx/os2/palette.h diff --git a/include/wx/os2/palette.h b/include/wx/os2/palette.h index 1926409552..3f094805f2 100644 --- a/include/wx/os2/palette.h +++ b/include/wx/os2/palette.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: palette.h +// Name: wx/os2/palette.h // Purpose: wxPalette class // Author: David Webster // Modified by: @@ -15,14 +15,14 @@ #include "wx/gdiobj.h" #include "wx/os2/private.h" -class WXDLLEXPORT wxPalette; +class WXDLLIMPEXP_FWD_CORE wxPalette; class WXDLLEXPORT wxPaletteRefData: public wxGDIRefData { - friend class WXDLLEXPORT wxPalette; + friend class WXDLLIMPEXP_FWD_CORE wxPalette; public: wxPaletteRefData(); - ~wxPaletteRefData(); + virtual ~wxPaletteRefData(); // protected: WXHPALETTE m_hPalette; HPS m_hPS; @@ -36,23 +36,22 @@ class WXDLLEXPORT wxPalette: public wxPaletteBase public: wxPalette(); - inline wxPalette(const wxPalette& rPalette) { Ref(rPalette); } wxPalette( int n ,const unsigned char* pRed ,const unsigned char* pGreen ,const unsigned char* pBlue ); - ~wxPalette(); + virtual ~wxPalette(); bool Create( int n ,const unsigned char* pRed ,const unsigned char* pGreen ,const unsigned char* pBlue ); - int GetPixel( const unsigned char cRed - ,const unsigned char cGreen - ,const unsigned char cBlue + int GetPixel( unsigned char cRed + ,unsigned char cGreen + ,unsigned char cBlue ) const; bool GetRGB( int nPixel ,unsigned char* pRed @@ -60,13 +59,8 @@ public: ,unsigned char* pBlue ) const; - virtual bool Ok(void) const { return (m_refData != NULL) ; } - - inline wxPalette& operator = (const wxPalette& rPalette) { if (*this == rPalette) return (*this); Ref(rPalette); return *this; } - inline bool operator == (const wxPalette& rPalette) const - { return m_refData == rPalette.m_refData; } - inline bool operator != (const wxPalette& rPalette) const - { return m_refData != rPalette.m_refData; } + virtual bool Ok() const { return IsOk(); } + virtual bool IsOk(void) const { return (m_refData != NULL) ; } virtual bool FreeResource(bool bForce = false); @@ -77,4 +71,3 @@ public: #endif // _WX_PALETTE_H_ -