]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: palette.h | |
3 | // Purpose: wxPalette class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
078cf5cb | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_PALETTE_H_ |
13 | #define _WX_PALETTE_H_ | |
2bda0e17 | 14 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
2bda0e17 KB |
16 | #pragma interface "palette.h" |
17 | #endif | |
18 | ||
19 | #include "wx/gdiobj.h" | |
20 | ||
21 | class WXDLLEXPORT wxPalette; | |
22 | ||
23 | class WXDLLEXPORT wxPaletteRefData: public wxGDIRefData | |
24 | { | |
25 | friend class WXDLLEXPORT wxPalette; | |
26 | public: | |
27 | wxPaletteRefData(void); | |
28 | ~wxPaletteRefData(void); | |
29 | protected: | |
30 | WXHPALETTE m_hPalette; | |
31 | }; | |
32 | ||
33 | #define M_PALETTEDATA ((wxPaletteRefData *)m_refData) | |
34 | ||
917be7ed | 35 | class WXDLLEXPORT wxPalette: public wxPaletteBase |
2bda0e17 KB |
36 | { |
37 | DECLARE_DYNAMIC_CLASS(wxPalette) | |
38 | ||
39 | public: | |
40 | wxPalette(void); | |
917be7ed | 41 | inline wxPalette(const wxPalette& palette) : wxPaletteBase(palette) { Ref(palette); } |
2bda0e17 | 42 | |
debe6624 | 43 | wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); |
2bda0e17 | 44 | ~wxPalette(void); |
debe6624 | 45 | bool Create(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); |
2bda0e17 | 46 | int GetPixel(const unsigned char red, const unsigned char green, const unsigned char blue) const; |
debe6624 | 47 | bool GetRGB(int pixel, unsigned char *red, unsigned char *green, unsigned char *blue) const; |
2bda0e17 KB |
48 | |
49 | virtual bool Ok(void) const { return (m_refData != NULL) ; } | |
50 | ||
51 | inline wxPalette& operator = (const wxPalette& palette) { if (*this == palette) return (*this); Ref(palette); return *this; } | |
f6bcfd97 BP |
52 | inline bool operator == (const wxPalette& palette) const { return m_refData == palette.m_refData; } |
53 | inline bool operator != (const wxPalette& palette) const { return m_refData != palette.m_refData; } | |
2bda0e17 | 54 | |
078cf5cb | 55 | virtual bool FreeResource(bool force = false); |
2bda0e17 KB |
56 | |
57 | inline WXHPALETTE GetHPALETTE(void) const { return (M_PALETTEDATA ? M_PALETTEDATA->m_hPalette : 0); } | |
58 | void SetHPALETTE(WXHPALETTE pal); | |
59 | }; | |
60 | ||
2bda0e17 | 61 | #endif |
bbcdf8bc | 62 | // _WX_PALETTE_H_ |