Eneboo - Documentación para desarrolladores
|
00001 /* -*- mode: C++ ; c-file-style: "stroustrup" -*- ***************************** 00002 * Qwt Widget Library 00003 * Copyright (C) 1997 Josef Wilgen 00004 * Copyright (C) 2002 Uwe Rathmann 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the Qwt License, Version 1.0 00008 *****************************************************************************/ 00009 00010 // vim: expandtab 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 00020 class QWT_EXPORT QwtLegendItemManager 00021 { 00022 public: 00023 QwtLegendItemManager() 00024 { 00025 } 00026 00027 virtual ~QwtLegendItemManager() 00028 { 00029 } 00030 00031 virtual void updateLegend(QwtLegend *) const = 0; 00032 virtual QWidget *legendItem() const = 0; 00033 }; 00034 00035 #endif 00036