]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/cadtoolbarselect.h
In the middle of major refactoring...
[architektonas] / src / forms / cadtoolbarselect.h
index 434ce946069661c68b8f575e14a7fa8400b61bb0..4ba9aa155495b9feeaea9b1a9326157f764db512 100644 (file)
@@ -5,7 +5,7 @@
 
 class CadToolBar;
 class QG_ActionHandler;
-class RS_ActionInterface;
+class ActionInterface;
 
 class CadToolBarSelect: public QWidget
 {
@@ -15,25 +15,16 @@ class CadToolBarSelect: public QWidget
                CadToolBarSelect(CadToolBar * parent, Qt::WindowFlags flags = 0);
                ~CadToolBarSelect();
 
-               void setSelectAction(RS_ActionInterface * selectAction);
+               void setSelectAction(ActionInterface * selectAction);
                void setNextAction(int nextAction);
 
        public slots:
                void runNextAction();
 
-       protected slots:
-               void back();
-
-       private:
-               QToolButton * CreateToolButton(QAction * action);
-
-       protected:
-               CadToolBar * cadToolBar;
-
        private:
                QToolButton * doit;
                QG_ActionHandler * actionHandler;
-               RS_ActionInterface * selectAction;
+               ActionInterface * selectAction;
                int nextAction;
 };