2002-02-05 11:34:33 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-10-06 10:37:43 -04:00
|
|
|
// Name: wx/x11/palette.h
|
2002-02-05 11:34:33 -05:00
|
|
|
// Purpose: wxPalette class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2002-02-05 11:34:33 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_PALETTE_H_
|
|
|
|
#define _WX_PALETTE_H_
|
|
|
|
|
|
|
|
#include "wx/gdiobj.h"
|
|
|
|
#include "wx/list.h"
|
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxPalette;
|
2002-02-05 11:34:33 -05:00
|
|
|
|
|
|
|
// Palette for one display
|
|
|
|
class wxXPalette : public wxObject
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxXPalette)
|
2004-12-08 12:43:18 -05:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
public:
|
|
|
|
wxXPalette();
|
2004-12-08 12:43:18 -05:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
WXDisplay* m_display;
|
|
|
|
int m_pix_array_n;
|
|
|
|
unsigned long* m_pix_array;
|
|
|
|
WXColormap m_cmap;
|
|
|
|
bool m_destroyable;
|
|
|
|
};
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxPaletteRefData: public wxGDIRefData
|
|
|
|
{
|
2007-07-09 06:09:52 -04:00
|
|
|
friend class WXDLLIMPEXP_FWD_CORE wxPalette;
|
2002-02-05 11:34:33 -05:00
|
|
|
public:
|
|
|
|
wxPaletteRefData();
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxPaletteRefData();
|
2004-12-08 12:43:18 -05:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
protected:
|
|
|
|
wxList m_palettes;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define M_PALETTEDATA ((wxPaletteRefData *)m_refData)
|
|
|
|
|
2004-12-08 12:43:18 -05:00
|
|
|
class WXDLLEXPORT wxPalette: public wxPaletteBase
|
2002-02-05 11:34:33 -05:00
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxPalette)
|
2004-12-08 12:43:18 -05:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
public:
|
|
|
|
wxPalette();
|
2004-12-08 12:43:18 -05:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxPalette();
|
2002-02-05 11:34:33 -05:00
|
|
|
bool Create(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
|
2005-10-06 10:37:43 -04:00
|
|
|
int GetPixel(unsigned char red, unsigned char green, unsigned char blue) const;
|
2002-02-05 11:34:33 -05:00
|
|
|
bool GetRGB(int pixel, unsigned char *red, unsigned char *green, unsigned char *blue) const;
|
2004-12-08 12:43:18 -05:00
|
|
|
|
2006-10-08 17:56:55 -04:00
|
|
|
virtual bool Ok() const { return IsOk(); }
|
|
|
|
virtual bool IsOk() const { return (m_refData != NULL) ; }
|
2004-12-08 12:43:18 -05:00
|
|
|
|
2002-02-08 12:44:23 -05:00
|
|
|
// X-specific
|
2002-02-05 11:34:33 -05:00
|
|
|
WXColormap GetXColormap(WXDisplay* display = NULL) const;
|
|
|
|
bool TransferBitmap(void *data, int depth, int size);
|
|
|
|
bool TransferBitmap8(unsigned char *data, unsigned long size, void *dest, unsigned int bpp);
|
|
|
|
unsigned long *GetXPixArray(WXDisplay* display, int *pix_array_n);
|
|
|
|
void PutXColormap(WXDisplay* display, WXColormap cmap, bool destroyable);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_PALETTE_H_
|