]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mgl/palette.h
1. changed all "wxMBConv& conv" parameters to "const wxMBConv&"
[wxWidgets.git] / include / wx / mgl / palette.h
CommitLineData
32b8ec41 1/////////////////////////////////////////////////////////////////////////////
88ef3a57 2// Name: wx/mgl/palette.h
32b8ec41
VZ
3// Purpose:
4// Author: Vaclav Slavik
5// Created: 2001/03/11
6// Id: $Id$
52750c2e 7// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
65571936 8// Licence: wxWindows licence
32b8ec41
VZ
9/////////////////////////////////////////////////////////////////////////////
10
32b8ec41
VZ
11#ifndef __WX_PALETTE_H__
12#define __WX_PALETTE_H__
13
32b8ec41
VZ
14#include "wx/defs.h"
15#include "wx/object.h"
16#include "wx/gdiobj.h"
17#include "wx/gdicmn.h"
18
19//-----------------------------------------------------------------------------
20// classes
21//-----------------------------------------------------------------------------
22
23class WXDLLEXPORT wxPalette;
24struct palette_t;
25
26//-----------------------------------------------------------------------------
27// wxPalette
28//-----------------------------------------------------------------------------
29
917be7ed 30class WXDLLEXPORT wxPalette: public wxPaletteBase
32b8ec41
VZ
31{
32 DECLARE_DYNAMIC_CLASS(wxPalette)
33
34public:
35 wxPalette();
36 wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
32b8ec41 37 ~wxPalette();
32b8ec41
VZ
38 bool operator == (const wxPalette& palette) const;
39 bool operator != (const wxPalette& palette) const;
917be7ed 40 virtual bool Ok() const;
32b8ec41
VZ
41
42 bool Create(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
88ef3a57 43 int GetPixel(unsigned char red, unsigned char green, unsigned char blue) const;
32b8ec41
VZ
44 bool GetRGB(int pixel, unsigned char *red, unsigned char *green, unsigned char *blue) const;
45
46 // implementation
917be7ed
WS
47 virtual int GetColoursCount() const;
48
32b8ec41
VZ
49 palette_t *GetMGLpalette_t() const;
50};
51
32b8ec41 52#endif // __WX_PALETTE_H__