]> Shamusworld >> Repos - ttedit/blobdiff - src/graphicprimitives.h
Add ability to move points with the arrow keys.
[ttedit] / src / graphicprimitives.h
index 9b2de448b8deac80c20e3645993c99e03793c015..6d5b27ba98d4d970c9206e26b9334d27e064e0a8 100755 (executable)
@@ -8,8 +8,8 @@
 #ifndef __GRAPHICPRIMITIVES_H__
 #define __GRAPHICPRIMITIVES_H__
 
+#include <stdint.h>
 #include <QtGui>                                                               // For QPainter
-#include "types.h"                                                             // For int32
 #include "glyphpoints.h"                                               // For IPoint
 
 struct point
@@ -21,9 +21,9 @@ struct point
 
 void Bezier(QPainter &, point, point, point);
 void Bezier(QPainter &, IPoint, IPoint, IPoint);
-void DrawRoundDot(QPainter &, int32, int32);
-void DrawSquareDot(QPainter &, int32, int32);
-void DrawRoundDotN(QPainter &, int32, int32, uint32);
-void DrawSquareDotN(QPainter &, int32, int32, uint32);
+void DrawRoundDot(QPainter &, int32_t, int32_t);
+void DrawSquareDot(QPainter &, int32_t, int32_t);
+void DrawRoundDotN(QPainter &, int32_t, int32_t, uint32_t);
+void DrawSquareDotN(QPainter &, int32_t, int32_t, uint32_t);
 
 #endif // __GRAPHICPRIMITIVES_H__