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