]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/arcoptions.h
Phase two of adding polyline functionality...
[architektonas] / src / forms / arcoptions.h
index 66f2edaa2293a1f452a3c552f12d87ca6cc37cb8..40a3264b0c2d7c0d223f1ffc1223571ac5c1d6b9 100644 (file)
@@ -1,11 +1,10 @@
 #ifndef __ARCOPTIONS_H__
 #define __ARCOPTIONS_H__
 
-//#include "ui_arcoptions.h"
 #include <QtGui>
 
-class RS_ActionDrawArc;
-class RS_ActionInterface;
+class ActionDrawArc;
+class ActionInterface;
 
 class ArcOptions: public QWidget
 {
@@ -16,16 +15,13 @@ class ArcOptions: public QWidget
                ~ArcOptions();
 
        public slots:
-               void setAction(RS_ActionInterface * a, bool update);
+               void setAction(ActionInterface * a, bool update);
                void updateDirection(bool);
 
        protected:
-               RS_ActionDrawArc * action;
+               ActionDrawArc * action;
                QRadioButton * rbPos;
                QRadioButton * rbNeg;
-
-       private:
-//             Ui::ArcOptions ui;
 };
 
 #endif // __ARCOPTIONS_H__