]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/textoptions.h
In the middle of major refactoring...
[architektonas] / src / forms / textoptions.h
index b9975348922644eb33b6be758f935e24ee219ebb..fd845140031f1f2710973aeb98322b0b9e7aada6 100644 (file)
@@ -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;