]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/paletteg.h
added missing consts and pass objects by const reference instead of by value (patch...
[wxWidgets.git] / include / wx / generic / paletteg.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: palette.h
3// Purpose:
4// Author: Robert Roebling
5// Created: 01/02/97
6// Id:
371a5b4e 7// Copyright: (c) 1998 Robert Roebling and Julian Smart
65571936 8// Licence: wxWindows licence
c801d85f
KB
9/////////////////////////////////////////////////////////////////////////////
10
11
ce113d5f
VS
12#ifndef __WX_PALETTEG_H__
13#define __WX_PALETTEG_H__
c801d85f 14
c801d85f
KB
15#include "wx/defs.h"
16#include "wx/object.h"
17#include "wx/gdiobj.h"
18#include "wx/gdicmn.h"
19
20//-----------------------------------------------------------------------------
21// classes
22//-----------------------------------------------------------------------------
23
20123d49 24class WXDLLIMPEXP_CORE wxPalette;
c801d85f
KB
25
26//-----------------------------------------------------------------------------
27// wxPalette
28//-----------------------------------------------------------------------------
29
20123d49 30class WXDLLIMPEXP_CORE wxPalette: public wxPaletteBase
c801d85f
KB
31{
32 DECLARE_DYNAMIC_CLASS(wxPalette)
33
34 public:
8bbe427f
VZ
35
36 wxPalette();
debe6624 37 wxPalette( int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue );
c801d85f 38 wxPalette( const wxPalette& palette );
8bbe427f 39 ~wxPalette();
c801d85f 40 wxPalette& operator = ( const wxPalette& palette );
fbfb8bcc
VZ
41 bool operator == ( const wxPalette& palette ) const;
42 bool operator != ( const wxPalette& palette ) const;
917be7ed 43 virtual bool Ok() const;
8bbe427f 44
debe6624 45 bool Create( int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
c801d85f 46 int GetPixel( const unsigned char red, const unsigned char green, const unsigned char blue ) const;
debe6624
JS
47 bool GetRGB( int pixel, unsigned char *red, unsigned char *green, unsigned char *blue ) const;
48
c801d85f
KB
49 // no data
50};
51
ce113d5f 52#endif // __WX_PALETTEG_H__