summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/qcheckgraph.h
blob: 1cafef88cd1d9acd7c6c0269e45d67be99789ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <qstring.h>
#include <qmainwindow.h>
#include <qwidget.h>
#include <qstringlist.h>
#include <qpixmap.h>
#include "config.h"

#include "qcheckgraphbase.h"

class QCheckGraph : public QCheckGraphBase
{
	Q_OBJECT
	public:
		QCheckGraph(const QString);
	private:
		QStringList list;
		QStringList list2;
		QString calculator(QString larger, QString smaller, bool divide);
		QPixmap graph;
		void graphPixmap();
		bool pixmapready;
		Config *config;
	private slots:
		void saveGraphAsPicture();
};