00001
00002
00003
00004
00005
00006
00007
00009
00010 #ifndef ART_H_
00011 #define ART_H_
00012
00013 #include <wx/wx.h>
00014 #include <wx/symbol.h>
00015
00016 #include <wx/hashmap.h>
00017
00018 WX_DECLARE_HASH_MAP(int, wxColor, wxIntegerHash, wxIntegerEqual, ColorMap);
00019 WX_DECLARE_HASH_MAP(int, wxPen, wxIntegerHash, wxIntegerEqual, PenMap);
00020 WX_DECLARE_HASH_MAP(int, wxBrush, wxIntegerHash, wxIntegerEqual, BrushMap);
00021 WX_DECLARE_HASH_MAP(int, Symbol *, wxIntegerHash, wxIntegerEqual, SymbolMap);
00022
00023 wxColour WXDLLIMPEXP_FREECHART GetDefaultColour(size_t index);
00024
00025 Symbol WXDLLIMPEXP_FREECHART *GetDefaultSymbol(size_t index);
00026
00027 #endif