You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
364 B
27 lines
364 B
#ifndef _BAR_CHART_H_
|
|
|
|
#include <qwt_plot.h>
|
|
#include <qstringlist.h>
|
|
|
|
class DistroChartItem;
|
|
|
|
class BarChart: public QwtPlot
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
BarChart( QWidget * = NULL );
|
|
|
|
public Q_SLOTS:
|
|
void setOrientation( int );
|
|
void exportChart();
|
|
|
|
private:
|
|
void populate();
|
|
|
|
DistroChartItem *d_barChartItem;
|
|
QStringList d_distros;
|
|
};
|
|
|
|
#endif
|