]> Shamusworld >> Repos - architektonas/blob - src/forms/arcoptions.h
d6ddd6d1acc60b6c0bb82d3f98684a870b665374
[architektonas] / src / forms / arcoptions.h
1 #ifndef __ARCOPTIONS_H__
2 #define __ARCOPTIONS_H__
3
4 //#include "ui_arcoptions.h"
5 #include <QtGui>
6
7 class ActionDrawArc;
8 class ActionInterface;
9
10 class ArcOptions: public QWidget
11 {
12         Q_OBJECT
13
14         public:
15                 ArcOptions(QToolBar * parent = 0, Qt::WindowFlags flags = 0);
16                 ~ArcOptions();
17
18         public slots:
19                 void setAction(ActionInterface * a, bool update);
20                 void updateDirection(bool);
21
22         protected:
23                 ActionDrawArc * action;
24                 QRadioButton * rbPos;
25                 QRadioButton * rbNeg;
26
27         private:
28 //              Ui::ArcOptions ui;
29 };
30
31 #endif  // __ARCOPTIONS_H__