X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=include%2Fsgp.h;h=0a5fe0344ea7a9c9bd5359d750a7106f703b1a08;hb=6bfb747f8163381d94a02c03a0351e9ca6815d22;hp=7cda247c9c52b2e64758807d06be24e64cc03f3b;hpb=93eb50659a64db3e37753d36c9923e82c7f7ca8a;p=ctsim.git diff --git a/include/sgp.h b/include/sgp.h index 7cda247..0a5fe03 100644 --- a/include/sgp.h +++ b/include/sgp.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: sgp.h,v 1.13 2000/08/02 18:06:00 kevin Exp $ +** $Id: sgp.h,v 1.15 2000/08/27 20:32:55 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -137,6 +137,10 @@ private: static RGBColor s_aRGBColor[]; static int s_iRGBColorCount; +#if HAVE_WXWINDOWS + wxPen m_pen; +#endif + public: enum { // linestyles LS_NOLINE = 0, @@ -167,7 +171,7 @@ public: SGP (const SGPDriver& driver); void drawCircle (const double r); - void drawArc (double start, double stop, const double r); + void drawArc (const double r, double start, double stop); void drawRect (double xmin, double ymin, double xmax, double ymax); void lineAbs(double x, double y); void moveAbs(double x, double y); @@ -191,9 +195,13 @@ public: void setTextSize (double height); void setTextAngle (double angle); void setTextColor (int iFGcolor, int iBGcolor); + void setPenWidth (int width); void setMarker (int idMarker, int color); void setRasterOp (int ro); + void getTextExtent (const char *szText, double* x, double* y); + double getCharHeight (); + void ctmClear (); void ctmSet (const TransformationMatrix2D& m); void preTranslate (double x, double y);