]>
git.saurik.com Git - wxWidgets.git/blob - interface/palette.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxPalette class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 A palette is a table that maps pixel values to RGB colours. It allows the
14 colours of a low-depth bitmap, for example, to be mapped to the available
15 colours in a display. The notion of palettes is becoming more and more
16 obsolete nowadays and only the MSW port is still using a native palette.
17 All other ports use generic code which is basically just an array of
20 It is likely that in the future the only use for palettes within wxWidgets
21 will be for representing colour indeces from images (such as GIF or PNG).
22 The image handlers for these formats have been modified to create a palette
23 if there is such information in the original image file (usually 256 or less
24 colour images). See wxImage for more information.
34 wxDC::SetPalette, wxBitmap
36 class wxPalette
: public wxGDIObject
41 Creates a palette from arrays of size @e n, one for each
42 red, blue or green component.
45 A pointer or reference to the palette to copy.
48 The number of indices in the palette.
51 An array of red values.
54 An array of green values.
57 An array of blue values.
62 wxPalette(const wxPalette
& palette
);
63 wxPalette(int n
, const unsigned char* red
,
64 const unsigned char* green
,
65 const unsigned char* blue
);
70 See @ref overview_refcountdestruct "reference-counted object destruction" for
76 Creates a palette from arrays of size @e n, one for each
77 red, blue or green component.
80 The number of indices in the palette.
83 An array of red values.
86 An array of green values.
89 An array of blue values.
91 @returns @true if the creation was successful, @false otherwise.
95 bool Create(int n
, const unsigned char* red
,
96 const unsigned char* green
,
97 const unsigned char* blue
);
100 Returns number of entries in palette.
102 int GetColoursCount();
105 Returns a pixel value (index into the palette) for the given RGB values.
116 @returns The nearest palette index or wxNOT_FOUND for unexpected errors.
120 int GetPixel(unsigned char red
, unsigned char green
,
124 Returns RGB values for a given palette index.
130 Receives the red value.
133 Receives the green value.
136 Receives the blue value.
138 @returns @true if the operation was successful.
142 #define bool GetRGB(int pixel, const unsigned char* red,
143 const unsigned char* green
,
144 const unsigned char* blue
) /* implementation is private */
147 Returns @true if palette data is present.
149 #define bool IsOk() /* implementation is private */
152 Assignment operator, using @ref overview_trefcount "reference counting".
154 wxPalette
operator =(const wxPalette
& palette
);