]> Shamusworld >> Repos - architektonas/blob - src/forms/circleoptions.h
In the middle of major refactoring...
[architektonas] / src / forms / circleoptions.h
1 #ifndef __CIRCLEOPTIONS_H__
2 #define __CIRCLEOPTIONS_H__
3
4 #include <QtGui>
5
6 class ActionInterface;
7 class ActionDrawCircleCR;
8
9 class CircleOptions: public QWidget
10 {
11         Q_OBJECT
12
13         public:
14                 CircleOptions(QToolBar * parent = 0, Qt::WindowFlags flags = 0);
15                 ~CircleOptions();
16
17         public slots:
18                 void setAction(ActionInterface * a, bool update);
19                 void updateRadius(const QString & r);
20
21         protected:
22                 ActionDrawCircleCR * action;
23
24         private:
25                 QLabel * lRadius;
26                 QLineEdit * leRadius;
27 };
28
29 #endif  // __CIRCLEOPTIONS_H__