]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/palette.h
added support for broadcasting to UDP sockets (patch 1740266)
[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);
d3c7fc99 24 virtual ~wxPaletteRefData(void);
2bda0e17
KB
25protected:
26 WXHPALETTE m_hPalette;
27};
28
29#define M_PALETTEDATA ((wxPaletteRefData *)m_refData)
30
917be7ed 31class WXDLLEXPORT wxPalette: public wxPaletteBase
2bda0e17 32{
2bda0e17 33public:
5633b968
RR
34 wxPalette();
35 wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
36 virtual ~wxPalette(void);
37 bool Create(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
38
39 int GetPixel(unsigned char red, unsigned char green, unsigned char blue) const;
40 bool GetRGB(int pixel, unsigned char *red, unsigned char *green, unsigned char *blue) const;
2bda0e17 41
5633b968 42 virtual int GetColoursCount() const;
2bda0e17 43
b7cacb43
VZ
44 virtual bool Ok() const { return IsOk(); }
45 virtual bool IsOk(void) const { return (m_refData != NULL) ; }
2bda0e17 46
5633b968 47 virtual bool FreeResource(bool force = false);
2bda0e17 48
5633b968
RR
49 // implemetation
50 inline WXHPALETTE GetHPALETTE(void) const { return (M_PALETTEDATA ? M_PALETTEDATA->m_hPalette : 0); }
51 void SetHPALETTE(WXHPALETTE pal);
52
53private:
54 DECLARE_DYNAMIC_CLASS(wxPalette)
2bda0e17
KB
55};
56
2bda0e17 57#endif
bbcdf8bc 58 // _WX_PALETTE_H_