wxFreeChart
art.h
1 // Name: art.h
3 // Purpose:
4 // Author: Moskvichev Andrey V.
5 // Created: 2008/11/07
6 // Copyright: (c) 2008-2010 Moskvichev Andrey V.
7 // Licence: wxWidgets licence
9 
10 // TODO rename file!
11 #ifndef ART_H_
12 #define ART_H_
13 
14 #include <wx/wx.h>
15 #include <wx/symbol.h>
16 
17 #include <wx/hashmap.h>
18 
19 WX_DECLARE_HASH_MAP(int, wxColor, wxIntegerHash, wxIntegerEqual, ColorMap);
20 WX_DECLARE_HASH_MAP(int, wxPen, wxIntegerHash, wxIntegerEqual, PenMap);
21 WX_DECLARE_HASH_MAP(int, wxBrush, wxIntegerHash, wxIntegerEqual, BrushMap);
22 WX_DECLARE_HASH_MAP(int, Symbol *, wxIntegerHash, wxIntegerEqual, SymbolMap);
23 
24 wxColour WXDLLIMPEXP_FREECHART GetDefaultColour(size_t index);
25 
26 Symbol WXDLLIMPEXP_FREECHART *GetDefaultSymbol(size_t index);
27 
28 #endif /*ART_H_*/
Symbols base class.
Definition: symbol.h:18