7 #define SCREEN_ZOOM (1.0 / 4.0)
9 // Forward declarations
14 Painter(QPainter * p = 0);
17 void SetRenderHint(int);
18 void SetBrush(QBrush);
21 void DrawAngledText(Vector, double, QString);
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 DrawText(QRectF, int, QString);
30 void DrawArrowhead(Vector, Vector);
33 static Vector CartesianToQtCoords(Vector);
34 static Vector QtToCartesianCoords(Vector);
38 static Vector origin; // The window origin, not location of the origin
39 static double zoom; // Window zoom factor
40 static Vector screenSize; // Width & height of the window we're drawing on
46 #endif // __PAINTER_H__