X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Fcadtoolbarselect.h;h=4ba9aa155495b9feeaea9b1a9326157f764db512;hb=d774c2655ba2c3657a565f325411144452392277;hp=434ce946069661c68b8f575e14a7fa8400b61bb0;hpb=f7188d32d0beaef31fc3475be05daea2f018ebec;p=architektonas diff --git a/src/forms/cadtoolbarselect.h b/src/forms/cadtoolbarselect.h index 434ce94..4ba9aa1 100644 --- a/src/forms/cadtoolbarselect.h +++ b/src/forms/cadtoolbarselect.h @@ -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; };