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