X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/graphlib.git/blobdiff_plain/49c1dd920c3d23d19d2a0de75066865057589129..220646505f3b9d7a22749f7491ecc6c15bfec4f3:/DrawingWindow.h diff --git a/DrawingWindow.h b/DrawingWindow.h index 4e96105..4a9b9df 100644 --- a/DrawingWindow.h +++ b/DrawingWindow.h @@ -3,6 +3,7 @@ #include #include +#include #include #include #include @@ -11,6 +12,7 @@ #include #include #include +#include class DrawingThread; @@ -43,6 +45,13 @@ public: void setBgColor(const char *name); void setBgColor(float red, float green, float blue); + void setPenWidth(int width); + + const QFont &getFont() const; + void setFont(const QFont &font); + + void setAntialiasing(bool state); + void clearGraph(); void drawPoint(int x, int y); @@ -51,11 +60,15 @@ public: void fillRect(int x1, int y1, int x2, int y2); void drawCircle(int x, int y, int r); void fillCircle(int x, int y, int r); + void drawTriangle(int x1, int y1, int x2, int y2, int x3, int y3); + void fillTriangle(int x1, int y1, int x2, int y2, int x3, int y3); void drawText(int x, int y, const char *text, int flags = 0); + void drawText(int x, int y, const std::string &text, int flags = 0); void drawTextBg(int x, int y, const char *text, int flags = 0); + void drawTextBg(int x, int y, const std::string &text, int flags = 0); - unsigned int getPointColor(int x, int y); + unsigned int getPointColor(int x, int y) const; bool waitMousePress(int &x, int &y, int &button, unsigned long time = ULONG_MAX); @@ -102,8 +115,8 @@ private: void initialize(ThreadFunction fun); - void setColor(const QColor& color); - void setBgColor(const QColor& color); + void setColor(const QColor &color); + void setBgColor(const QColor &color); QColor getColor(); QColor getBgColor();