summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/graph.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/checkbook/graph.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/checkbook/graph.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/noncore/apps/checkbook/graph.h b/noncore/apps/checkbook/graph.h
index 7379be7..40b23cd 100644
--- a/noncore/apps/checkbook/graph.h
+++ b/noncore/apps/checkbook/graph.h
@@ -32,8 +32,9 @@
#include <qpixmap.h>
#include <qwidget.h>
class GraphInfo;
+class QPainter;
class Graph : public QWidget
{
Q_OBJECT
@@ -43,9 +44,9 @@ class Graph : public QWidget
void setGraphInfo( GraphInfo * );
void drawGraph( bool = FALSE );
-
+
protected:
void paintEvent( QPaintEvent * );
void resizeEvent( QResizeEvent * );
@@ -54,10 +55,10 @@ class Graph : public QWidget
QPixmap graph;
void initGraph();
- void drawBarChart();
- void drawLineChart();
- void drawPieChart();
+ void drawBarChart( int, int, float );
+ void drawLineChart( int, int, float );
+ void drawPieChart( int, int, float );
};
#endif