]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/generic/paletteg.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Created: 01/02/97 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 1998 Robert Roebling and Julian Smart | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | ||
12 | #ifndef __WX_PALETTEG_H__ | |
13 | #define __WX_PALETTEG_H__ | |
14 | ||
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 | ||
24 | class WXDLLIMPEXP_CORE wxPalette; | |
25 | ||
26 | //----------------------------------------------------------------------------- | |
27 | // wxPalette | |
28 | //----------------------------------------------------------------------------- | |
29 | ||
30 | class WXDLLIMPEXP_CORE wxPalette: public wxPaletteBase | |
31 | { | |
32 | DECLARE_DYNAMIC_CLASS(wxPalette) | |
33 | ||
34 | public: | |
35 | ||
36 | wxPalette(); | |
37 | wxPalette( int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue ); | |
38 | wxPalette( const wxPalette& palette ); | |
39 | ~wxPalette(); | |
40 | wxPalette& operator = ( const wxPalette& palette ); | |
41 | bool operator == ( const wxPalette& palette ) const; | |
42 | bool operator != ( const wxPalette& palette ) const; | |
43 | virtual bool Ok() const; | |
44 | ||
45 | bool Create( int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); | |
46 | int GetPixel( unsigned char red, unsigned char green, unsigned char blue ) const; | |
47 | bool GetRGB( int pixel, unsigned char *red, unsigned char *green, unsigned char *blue ) const; | |
48 | ||
49 | // no data | |
50 | }; | |
51 | ||
52 | #endif // __WX_PALETTEG_H__ |