00001 00002 // Name: bubbleplot.h 00003 // Purpose: bubble plot declarations 00004 // Author: Moskvichev Andrey V. 00005 // Created: 2008/11/07 00006 // Copyright: (c) 2008-2010 Moskvichev Andrey V. 00007 // Licence: wxWidgets licence 00009 00010 #ifndef BUBBLEPLOT_H_ 00011 #define BUBBLEPLOT_H_ 00012 00013 #include <wx/axisplot.h> 00014 00018 class WXDLLIMPEXP_FREECHART BubblePlot : public AxisPlot 00019 { 00020 public: 00021 BubblePlot(); 00022 virtual ~BubblePlot(); 00023 00024 protected: 00025 virtual bool AcceptAxis(Axis *axis); 00026 00027 virtual bool AcceptDataset(Dataset *dataset); 00028 00029 virtual void DrawDatasets(wxDC &dc, wxRect rc); 00030 }; 00031 00032 #endif /*BUBBLEPLOT_H_*/