]> Shamusworld >> Repos - architektonas/blob - src/painter.h
219547c7b2f47f38b47084923ff59714cf0e38a7
[architektonas] / src / painter.h
1 #ifndef __PAINTER_H__
2 #define __PAINTER_H__
3
4 #include <QtGui>
5 #include "vector.h"
6
7 //#define SCREEN_ZOOM  (1.0 / 4.0)
8
9 // Forward declarations
10
11 class Painter
12 {
13         public:
14                 Painter(QPainter * p = 0);
15                 ~Painter();
16
17                 void SetRenderHint(int);
18                 void SetBrush(QBrush);
19                 void SetFont(QFont);
20                 void SetPen(QPen);
21                 void DrawAngledText(Vector, double, QString, double);
22                 void DrawArc(Vector, double, double, double);
23                 void DrawEllipse(Vector, double, double);
24                 void DrawHandle(Vector);
25                 void DrawLine(int, int, int, int);
26                 void DrawLine(Vector, Vector);
27                 void DrawPoint(int, int);
28                 void DrawRoundedRect(QRectF, double, double);
29                 void DrawRect(QRectF);
30                 void DrawText(QRectF, int, QString);
31                 void DrawArrowhead(Vector, Vector, double);
32
33         public:
34                 static Vector CartesianToQtCoords(Vector);
35                 static Vector QtToCartesianCoords(Vector);
36
37         public:
38                 // Class variables
39                 static Vector origin;           // The window origin, not location of the origin
40                 static double zoom;                     // Window zoom factor
41                 static Vector screenSize;       // Width & height of the window we're drawing on
42
43         private:
44                 QPainter * painter;
45 };
46
47 #endif  // __PAINTER_H__