X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fwidgets%2Fpentoolbar.h;h=c08f006e610c5556e6bd631cf6ce5e30b6e7b7ed;hb=1f0d096a7fc370ff02477f3860beae2669bf8903;hp=0a0fd5a99a13d9e9bae84b5062ea09190cd93580;hpb=e5a77a32dbe17d9534d3099f1fd3fdacba199516;p=architektonas diff --git a/src/widgets/pentoolbar.h b/src/widgets/pentoolbar.h index 0a0fd5a..c08f006 100644 --- a/src/widgets/pentoolbar.h +++ b/src/widgets/pentoolbar.h @@ -5,21 +5,21 @@ //#include "rs_layerlistlistener.h" #include "rs_pen.h" -class QG_ColorBox; -class QG_WidthBox; -class QG_LineTypeBox; +class ColorBox; +class WidthBox; +class LineTypeBox; class RS_Layer; /** * A toolbar that offers all widgets for choosing a pen. */ -class QG_PenToolBar: public QToolBar//, public RS_LayerListListener +class PenToolBar: public QToolBar//, public RS_LayerListListener { Q_OBJECT public: - QG_PenToolBar(QMainWindow * parent = NULL, const char * name = NULL); - virtual ~QG_PenToolBar(); + PenToolBar(QMainWindow * parent = NULL, const char * name = NULL); + virtual ~PenToolBar(); RS_Pen getPen(); @@ -37,9 +37,9 @@ class QG_PenToolBar: public QToolBar//, public RS_LayerListListener private: RS_Pen currentPen; - QG_ColorBox * colorBox; - QG_WidthBox * widthBox; - QG_LineTypeBox * lineTypeBox; + ColorBox * colorBox; + WidthBox * widthBox; + LineTypeBox * lineTypeBox; }; #endif // __PENTOOLBAR_H__