00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef QWT_LEGEND_ITEM_MANAGER_H
00013 #define QWT_LEGEND_ITEM_MANAGER_H
00014
00015 #include "qwt_global.h"
00016
00017 class QwtLegend;
00018 class QWidget;
00019
00024 class QWT_EXPORT QwtLegendItemManager
00025 {
00026 public:
00028 QwtLegendItemManager()
00029 {
00030 }
00031
00033 virtual ~QwtLegendItemManager()
00034 {
00035 }
00036
00042 virtual void updateLegend(QwtLegend *legend) const = 0;
00043
00050 virtual QWidget *legendItem() const = 0;
00051 };
00052
00053 #endif
00054