]> Shamusworld >> Repos - architektonas/blob - src/forms/cadtoolbarpoints.h
Refactored CAD tool bars to use predefined actions.
[architektonas] / src / forms / cadtoolbarpoints.h
1 #ifndef __CADTOOLBARPOINTS_H__
2 #define __CADTOOLBARPOINTS_H__
3
4 #include <QtGui>
5
6 class CadToolBar;
7
8 class CadToolBarPoints: public QWidget
9 {
10         Q_OBJECT
11
12         public:
13                 CadToolBarPoints(CadToolBar * parent, Qt::WindowFlags flags = 0);
14                 ~CadToolBarPoints();
15
16         protected slots:
17                 void back();
18
19         private:
20                 QToolButton * CreateToolButton(QAction * action);
21
22         protected:
23                 CadToolBar * cadToolBar;
24 };
25
26 #endif  // __CADTOOLBARPOINTS_H__