X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/debe6624c1e9d4bf3243381153d1e173c849bcd8..cba4e486a4f8ab05674bac6ed8c6bfa58ab25131:/include/wx/msw/palette.h diff --git a/include/wx/msw/palette.h b/include/wx/msw/palette.h index f7dffc57b0..7d0cacec6a 100644 --- a/include/wx/msw/palette.h +++ b/include/wx/msw/palette.h @@ -1,66 +1,51 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: palette.h +// Name: wx/msw/palette.h // Purpose: wxPalette class // Author: Julian Smart // Modified by: // Created: 01/02/97 // RCS-ID: $Id$ -// Copyright: (c) Julian Smart and Markus Holzem -// Licence: wxWindows license +// Copyright: (c) Julian Smart +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifndef __PALETTEH__ -#define __PALETTEH__ - -#ifdef __GNUG__ -#pragma interface "palette.h" -#endif +#ifndef _WX_PALETTE_H_ +#define _WX_PALETTE_H_ #include "wx/gdiobj.h" -class WXDLLEXPORT wxPalette; - -class WXDLLEXPORT wxPaletteRefData: public wxGDIRefData +class WXDLLIMPEXP_CORE wxPalette : public wxPaletteBase { - friend class WXDLLEXPORT wxPalette; public: - wxPaletteRefData(void); - ~wxPaletteRefData(void); -protected: - WXHPALETTE m_hPalette; -}; + wxPalette() { } + wxPalette(int n, + const unsigned char *red, const unsigned char *green, const unsigned char *blue) + { + Create(n, red, green, blue); + } -#define M_PALETTEDATA ((wxPaletteRefData *)m_refData) + bool Create(int n, + const unsigned char *red, const unsigned char *green, const unsigned char *blue); -class WXDLLEXPORT wxPalette: public wxGDIObject -{ - DECLARE_DYNAMIC_CLASS(wxPalette) + virtual int GetColoursCount() const; -public: - wxPalette(void); - inline wxPalette(const wxPalette& palette) { Ref(palette); } - inline wxPalette(const wxPalette* palette) { /* UnRef(); */ if (palette) Ref(*palette); } - - wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); - ~wxPalette(void); - bool Create(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); - int GetPixel(const unsigned char red, const unsigned char green, const unsigned char blue) const; - bool GetRGB(int pixel, unsigned char *red, unsigned char *green, unsigned char *blue) const; + int + GetPixel(unsigned char red, unsigned char green, unsigned char blue) const; - virtual bool Ok(void) const { return (m_refData != NULL) ; } + bool + GetRGB(int pixel, + unsigned char *red, unsigned char *green, unsigned char *blue) const; - inline wxPalette& operator = (const wxPalette& palette) { if (*this == palette) return (*this); Ref(palette); return *this; } - inline bool operator == (const wxPalette& palette) { return m_refData == palette.m_refData; } - inline bool operator != (const wxPalette& palette) { return m_refData != palette.m_refData; } + // implemetation + WXHPALETTE GetHPALETTE() const; + void SetHPALETTE(WXHPALETTE pal); - virtual bool FreeResource(bool force = FALSE); +protected: + virtual wxGDIRefData *CreateGDIRefData() const; + virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const; - inline WXHPALETTE GetHPALETTE(void) const { return (M_PALETTEDATA ? M_PALETTEDATA->m_hPalette : 0); } - void SetHPALETTE(WXHPALETTE pal); +private: + DECLARE_DYNAMIC_CLASS(wxPalette) }; -#define wxColorMap wxPalette -#define wxColourMap wxPalette - -#endif - // __PALETTEH__ +#endif // _WX_PALETTE_H_