X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1a4ebaf8652324abcead1f101735eee0f8be8711..db7035e48a4ccc6265fa01949cb92db3c6b6c17f:/include/wx/palette.h diff --git a/include/wx/palette.h b/include/wx/palette.h index 52d2da66a1..491838d3cd 100644 --- a/include/wx/palette.h +++ b/include/wx/palette.h @@ -1,19 +1,41 @@ +///////////////////////////////////////////////////////////////////////////// +// Name: wx/palette.h +// Purpose: Common header and base class for wxPalette +// Author: Julian Smart +// Modified by: +// Created: +// RCS-ID: $Id$ +// Copyright: (c) Julian Smart +// Licence: wxWindows Licence +///////////////////////////////////////////////////////////////////////////// + #ifndef _WX_PALETTE_H_BASE_ #define _WX_PALETTE_H_BASE_ -// include it to get wxUSE_PALETTE value -#include "wx/setup.h" +#include "wx/defs.h" #if wxUSE_PALETTE -#if defined(__WXMSW__) +#include "wx/object.h" +#include "wx/gdiobj.h" + +// wxPaletteBase +class WXDLLEXPORT wxPaletteBase: public wxGDIObject +{ +public: + virtual ~wxPaletteBase() { } + + virtual int GetColoursCount() const { wxFAIL_MSG( _T("not implemented") ); return 0; } +}; + +#if defined(__WXPALMOS__) + #include "wx/palmos/palette.h" +#elif defined(__WXMSW__) #include "wx/msw/palette.h" -#elif defined(__WXMOTIF__) - #include "wx/motif/palette.h" +#elif defined(__WXX11__) || defined(__WXMOTIF__) + #include "wx/x11/palette.h" #elif defined(__WXGTK__) || defined(__WXCOCOA__) #include "wx/generic/paletteg.h" -#elif defined(__WXX11__) - #include "wx/x11/palette.h" #elif defined(__WXMGL__) #include "wx/mgl/palette.h" #elif defined(__WXMAC__) @@ -24,5 +46,4 @@ #endif // wxUSE_PALETTE -#endif - // _WX_PALETTE_H_BASE_ +#endif // _WX_PALETTE_H_BASE_