]> Shamusworld >> Repos - architektonas/blob - src/forms/cadtoolbarpolylines.h
1ae2265774832e19249339c07bde74b655067e5e
[architektonas] / src / forms / cadtoolbarpolylines.h
1 #ifndef __CADTOOLBARPOLYLINES_H__
2 #define __CADTOOLBARPOLYLINES_H__
3
4 #include <QtGui>
5
6 class CadToolBar;
7
8 class CadToolBarPolylines: public QWidget
9 {
10         Q_OBJECT
11
12         public:
13                 CadToolBarPolylines(CadToolBar * parent, Qt::WindowFlags flags = 0);
14                 ~CadToolBarPolylines();
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  // __CADTOOLBARPOLYLINES_H__