summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/graph.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/checkbook/graph.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/checkbook/graph.h7
1 files changed, 4 insertions, 3 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
@@ -24,40 +24,41 @@
59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#ifndef GRAPH_H
#define GRAPH_H
#include <qpixmap.h>
#include <qwidget.h>
class GraphInfo;
+class QPainter;
class Graph : public QWidget
{
Q_OBJECT
public:
Graph( QWidget * = 0x0, GraphInfo * = 0x0, const QString & = 0x0, int = 0 );
void setGraphInfo( GraphInfo * );
void drawGraph( bool = FALSE );
protected:
void paintEvent( QPaintEvent * );
void resizeEvent( QResizeEvent * );
private:
GraphInfo *data;
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