]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e1d63b79 | 2 | // Name: wx/palmos/palette.h |
ffecfa5a | 3 | // Purpose: wxPalette class |
e1d63b79 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e1d63b79 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_PALETTE_H_ | |
13 | #define _WX_PALETTE_H_ | |
14 | ||
ffecfa5a JS |
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(void); | |
d3c7fc99 | 24 | virtual ~wxPaletteRefData(void); |
ffecfa5a JS |
25 | protected: |
26 | WXHPALETTE m_hPalette; | |
27 | }; | |
28 | ||
29 | #define M_PALETTEDATA ((wxPaletteRefData *)m_refData) | |
30 | ||
917be7ed | 31 | class WXDLLEXPORT wxPalette: public wxPaletteBase |
ffecfa5a JS |
32 | { |
33 | DECLARE_DYNAMIC_CLASS(wxPalette) | |
34 | ||
35 | public: | |
36 | wxPalette(void); | |
ffecfa5a JS |
37 | |
38 | wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); | |
d3c7fc99 | 39 | virtual ~wxPalette(void); |
ffecfa5a | 40 | bool Create(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); |
88ef3a57 | 41 | int GetPixel(unsigned char red, unsigned char green, unsigned char blue) const; |
ffecfa5a JS |
42 | bool GetRGB(int pixel, unsigned char *red, unsigned char *green, unsigned char *blue) const; |
43 | ||
b7cacb43 VZ |
44 | virtual bool Ok() const { return IsOk(); } |
45 | virtual bool IsOk(void) const { return (m_refData != NULL) ; } | |
ffecfa5a | 46 | |
917be7ed | 47 | virtual bool FreeResource(bool force = false); |
ffecfa5a JS |
48 | |
49 | inline WXHPALETTE GetHPALETTE(void) const { return (M_PALETTEDATA ? M_PALETTEDATA->m_hPalette : 0); } | |
50 | void SetHPALETTE(WXHPALETTE pal); | |
51 | }; | |
52 | ||
ffecfa5a JS |
53 | #endif |
54 | // _WX_PALETTE_H_ |