]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/palette.h
Further wxAUI commits
[wxWidgets.git] / include / wx / msw / palette.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
88ef3a57 2// Name: wx/msw/palette.h
2bda0e17
KB
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
2bda0e17
KB
15#include "wx/gdiobj.h"
16
17class WXDLLEXPORT wxPalette;
18
19class WXDLLEXPORT wxPaletteRefData: public wxGDIRefData
20{
21 friend class WXDLLEXPORT wxPalette;
22public:
23 wxPaletteRefData(void);
24 ~wxPaletteRefData(void);
25protected:
26 WXHPALETTE m_hPalette;
27};
28
29#define M_PALETTEDATA ((wxPaletteRefData *)m_refData)
30
917be7ed 31class WXDLLEXPORT wxPalette: public wxPaletteBase
2bda0e17
KB
32{
33 DECLARE_DYNAMIC_CLASS(wxPalette)
34
35public:
36 wxPalette(void);
2bda0e17 37
debe6624 38 wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
2bda0e17 39 ~wxPalette(void);
debe6624 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;
debe6624 42 bool GetRGB(int pixel, unsigned char *red, unsigned char *green, unsigned char *blue) const;
2bda0e17
KB
43
44 virtual bool Ok(void) const { return (m_refData != NULL) ; }
45
f6bcfd97
BP
46 inline bool operator == (const wxPalette& palette) const { return m_refData == palette.m_refData; }
47 inline bool operator != (const wxPalette& palette) const { return m_refData != palette.m_refData; }
2bda0e17 48
078cf5cb 49 virtual bool FreeResource(bool force = false);
2bda0e17
KB
50
51 inline WXHPALETTE GetHPALETTE(void) const { return (M_PALETTEDATA ? M_PALETTEDATA->m_hPalette : 0); }
52 void SetHPALETTE(WXHPALETTE pal);
53};
54
2bda0e17 55#endif
bbcdf8bc 56 // _WX_PALETTE_H_