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