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