]>
Commit | Line | Data |
---|---|---|
8cf73271 | 1 | ///////////////////////////////////////////////////////////////////////////// |
88ef3a57 | 2 | // Name: wx/mac/carbon/palette.h |
8cf73271 SC |
3 | // Purpose: wxPalette class |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
65571936 | 9 | // Licence: wxWindows licence |
8cf73271 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_PALETTE_H_ | |
13 | #define _WX_PALETTE_H_ | |
14 | ||
8cf73271 SC |
15 | #include "wx/colour.h" |
16 | #include "wx/gdiobj.h" | |
17 | ||
18 | class WXDLLEXPORT wxPalette; | |
19 | ||
20 | class WXDLLEXPORT wxPaletteRefData: public wxGDIRefData | |
21 | { | |
22 | DECLARE_NO_COPY_CLASS(wxPaletteRefData) | |
917be7ed | 23 | |
8cf73271 SC |
24 | friend class WXDLLEXPORT wxPalette; |
25 | public: | |
26 | wxPaletteRefData(); | |
27 | ~wxPaletteRefData(); | |
28 | protected: | |
29 | wxColour* m_palette; | |
30 | wxInt32 m_count ; | |
31 | }; | |
32 | ||
33 | #define M_PALETTEDATA ((wxPaletteRefData *)m_refData) | |
34 | ||
917be7ed | 35 | class WXDLLEXPORT wxPalette: public wxPaletteBase |
8cf73271 SC |
36 | { |
37 | DECLARE_DYNAMIC_CLASS(wxPalette) | |
38 | ||
39 | public: | |
40 | wxPalette(); | |
41 | wxPalette(const wxPalette& palette) | |
917be7ed | 42 | : wxPaletteBase() |
8cf73271 SC |
43 | { Ref(palette); } |
44 | ||
45 | wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); | |
46 | ~wxPalette(); | |
47 | bool Create(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); | |
88ef3a57 | 48 | int GetPixel(unsigned char red, unsigned char green, unsigned char blue) const; |
8cf73271 SC |
49 | bool GetRGB(int pixel, unsigned char *red, unsigned char *green, unsigned char *blue) const; |
50 | ||
51 | virtual bool Ok() const { return (m_refData != NULL) ; } | |
52 | ||
53 | inline wxPalette& operator = (const wxPalette& palette) { if (*this == palette) return (*this); Ref(palette); return *this; } | |
fbfb8bcc VZ |
54 | inline bool operator == (const wxPalette& palette) const { return m_refData == palette.m_refData; } |
55 | inline bool operator != (const wxPalette& palette) const { return m_refData != palette.m_refData; } | |
8cf73271 SC |
56 | |
57 | /* TODO: implementation | |
58 | inline WXHPALETTE GetHPALETTE() const { return (M_PALETTEDATA ? M_PALETTEDATA->m_hPalette : 0); } | |
59 | void SetHPALETTE(WXHPALETTE pal); | |
60 | */ | |
61 | }; | |
62 | ||
63 | #endif | |
64 | // _WX_PALETTE_H_ |