]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
88ef3a57 | 2 | // Name: src/msw/palette.cpp |
2bda0e17 KB |
3 | // Purpose: wxPalette |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
6c9a19aa | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
2bda0e17 KB |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
d275c7eb | 16 | #pragma hdrstop |
2bda0e17 KB |
17 | #endif |
18 | ||
d275c7eb VZ |
19 | #if wxUSE_PALETTE |
20 | ||
559a723c WS |
21 | #include "wx/palette.h" |
22 | ||
d275c7eb | 23 | #include "wx/msw/private.h" |
2bda0e17 | 24 | |
8f884a0d VZ |
25 | // ============================================================================ |
26 | // wxPaletteRefData | |
27 | // ============================================================================ | |
2bda0e17 | 28 | |
8f884a0d | 29 | class WXDLLEXPORT wxPaletteRefData: public wxGDIRefData |
2bda0e17 | 30 | { |
8f884a0d VZ |
31 | public: |
32 | wxPaletteRefData() { Init(); } | |
2bda0e17 | 33 | |
8f884a0d VZ |
34 | wxPaletteRefData(int n, |
35 | unsigned char *red, | |
36 | unsigned char *green, | |
37 | unsigned char *blue) | |
38 | { | |
39 | Init(); | |
40 | ||
41 | LOGPALETTE *pPal = Alloc(n); | |
42 | if ( !pPal ) | |
43 | return; | |
44 | ||
45 | for ( int i = 0; i < n; i++ ) | |
46 | { | |
47 | pPal->palPalEntry[i].peRed = red[i]; | |
48 | pPal->palPalEntry[i].peGreen = green[i]; | |
49 | pPal->palPalEntry[i].peBlue = blue[i]; | |
50 | pPal->palPalEntry[i].peFlags = 0; | |
51 | } | |
52 | ||
53 | m_hPalette = ::CreatePalette(pPal); | |
54 | free(pPal); | |
55 | } | |
2bda0e17 | 56 | |
8f884a0d VZ |
57 | wxPaletteRefData(const wxPaletteRefData& data) |
58 | { | |
59 | Init(); | |
2bda0e17 | 60 | |
8f884a0d VZ |
61 | const UINT n = data.GetEntries(); |
62 | if ( !n ) | |
63 | return; | |
2bda0e17 | 64 | |
8f884a0d VZ |
65 | LOGPALETTE *pPal = Alloc(n); |
66 | if ( !pPal ) | |
67 | return; | |
2bda0e17 | 68 | |
8f884a0d VZ |
69 | if ( ::GetPaletteEntries(data.m_hPalette, 0, n, pPal->palPalEntry) ) |
70 | m_hPalette = ::CreatePalette(pPal); | |
71 | ||
72 | free(pPal); | |
73 | } | |
74 | ||
75 | virtual ~wxPaletteRefData() | |
d275c7eb | 76 | { |
8f884a0d VZ |
77 | if ( m_hPalette ) |
78 | ::DeleteObject(m_hPalette); | |
d275c7eb | 79 | } |
f4322df6 | 80 | |
8f884a0d | 81 | virtual bool IsOk() const { return m_hPalette != 0; } |
2bda0e17 | 82 | |
8f884a0d | 83 | UINT GetEntries() const |
5633b968 | 84 | { |
8f884a0d | 85 | return ::GetPaletteEntries(m_hPalette, 0, 0, NULL); |
5633b968 | 86 | } |
f4322df6 | 87 | |
8f884a0d VZ |
88 | private: |
89 | // caller must free() the pointer | |
90 | static LOGPALETTE *Alloc(UINT numEntries) | |
91 | { | |
92 | LOGPALETTE *pPal = (LOGPALETTE *) | |
93 | malloc(sizeof(LOGPALETTE) + numEntries*sizeof(PALETTEENTRY)); | |
94 | if ( pPal ) | |
95 | { | |
96 | pPal->palVersion = 0x300; | |
97 | pPal->palNumEntries = numEntries; | |
98 | } | |
99 | ||
100 | return pPal; | |
101 | } | |
5633b968 | 102 | |
8f884a0d | 103 | void Init() { m_hPalette = 0; } |
2bda0e17 | 104 | |
8f884a0d | 105 | HPALETTE m_hPalette; |
5ea105e0 | 106 | |
8f884a0d VZ |
107 | friend class WXDLLIMPEXP_FWD_CORE wxPalette; |
108 | }; | |
33ac7e6f | 109 | |
8f884a0d VZ |
110 | // ============================================================================ |
111 | // wxPalette | |
112 | // ============================================================================ | |
5ea105e0 | 113 | |
8f884a0d | 114 | IMPLEMENT_DYNAMIC_CLASS(wxPalette, wxGDIObject) |
2bda0e17 | 115 | |
8f884a0d | 116 | #define M_PALETTEDATA ((wxPaletteRefData *)m_refData) |
2bda0e17 | 117 | |
8f884a0d VZ |
118 | bool wxPalette::Create(int n, |
119 | unsigned char *red, | |
120 | unsigned char *green, | |
121 | unsigned char *blue) | |
122 | { | |
123 | m_refData = new wxPaletteRefData(n, red, green, blue); | |
88ef3a57 | 124 | |
8f884a0d VZ |
125 | return IsOk(); |
126 | } | |
33ac7e6f | 127 | |
8f884a0d VZ |
128 | wxGDIRefData *wxPalette::CreateGDIRefData() const |
129 | { | |
130 | return new wxPaletteRefData; | |
2bda0e17 KB |
131 | } |
132 | ||
8f884a0d VZ |
133 | wxGDIRefData *wxPalette::CloneGDIRefData(const wxGDIRefData *data) const |
134 | { | |
135 | return new wxPaletteRefData(*wx_static_cast(const wxPaletteRefData *, data)); | |
136 | } | |
137 | ||
138 | int wxPalette::GetColoursCount() const | |
139 | { | |
140 | return IsOk() ? M_PALETTEDATA->GetEntries() : 0; | |
141 | } | |
142 | ||
143 | int wxPalette::GetPixel(unsigned char red, | |
144 | unsigned char green, | |
145 | unsigned char blue) const | |
2bda0e17 | 146 | { |
88ef3a57 WS |
147 | if ( !m_refData ) |
148 | return wxNOT_FOUND; | |
2bda0e17 | 149 | |
8f884a0d VZ |
150 | return ::GetNearestPaletteIndex(M_PALETTEDATA->m_hPalette, |
151 | PALETTERGB(red, green, blue)); | |
2bda0e17 KB |
152 | } |
153 | ||
8f884a0d VZ |
154 | bool wxPalette::GetRGB(int index, |
155 | unsigned char *red, | |
156 | unsigned char *green, | |
157 | unsigned char *blue) const | |
2bda0e17 | 158 | { |
88ef3a57 WS |
159 | if ( !m_refData ) |
160 | return false; | |
161 | ||
162 | if (index < 0 || index > 255) | |
163 | return false; | |
2bda0e17 | 164 | |
88ef3a57 | 165 | PALETTEENTRY entry; |
8f884a0d | 166 | if ( !::GetPaletteEntries(M_PALETTEDATA->m_hPalette, index, 1, &entry) ) |
88ef3a57 | 167 | return false; |
8f884a0d VZ |
168 | |
169 | *red = entry.peRed; | |
170 | *green = entry.peGreen; | |
171 | *blue = entry.peBlue; | |
172 | ||
173 | return true; | |
174 | } | |
175 | ||
176 | WXHPALETTE wxPalette::GetHPALETTE() const | |
177 | { | |
178 | return M_PALETTEDATA ? (WXHPALETTE)M_PALETTEDATA->m_hPalette : 0; | |
2bda0e17 KB |
179 | } |
180 | ||
181 | void wxPalette::SetHPALETTE(WXHPALETTE pal) | |
182 | { | |
8f884a0d | 183 | AllocExclusive(); |
2bda0e17 | 184 | |
8f884a0d | 185 | M_PALETTEDATA->m_hPalette = (HPALETTE)pal; |
2bda0e17 KB |
186 | } |
187 | ||
d275c7eb | 188 | #endif // wxUSE_PALETTE |