X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Ftextoptions.h;h=fd845140031f1f2710973aeb98322b0b9e7aada6;hb=d774c2655ba2c3657a565f325411144452392277;hp=b9975348922644eb33b6be758f935e24ee219ebb;hpb=16ce54abf01ca3032e42a5bb11a4afcf9014dcca;p=architektonas diff --git a/src/forms/textoptions.h b/src/forms/textoptions.h index b997534..fd84514 100644 --- a/src/forms/textoptions.h +++ b/src/forms/textoptions.h @@ -3,24 +3,25 @@ #include "ui_textoptions.h" -class RS_ActionInterface; -class RS_ActionDrawText; +class ActionInterface; +class ActionDrawText; +class QToolBar; class TextOptions: public QWidget { Q_OBJECT public: - TextOptions(QWidget * parent = 0, Qt::WindowFlags flags = 0); + TextOptions(QToolBar * parent = 0, Qt::WindowFlags flags = 0); ~TextOptions(); public slots: - void setAction(RS_ActionInterface * a, bool update); + void setAction(ActionInterface * a, bool update); void updateText(); void updateAngle(); protected: - RS_ActionDrawText * action; + ActionDrawText * action; private: Ui::TextOptions ui;