1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/toolbars.h Mon Oct 16 12:42:54 2006 +0000
1.3 @@ -0,0 +1,31 @@
1.4 +#ifndef TOOLBARS_H
1.5 +#define TOOLBARS_H
1.6 +
1.7 +#include <QToolBar>
1.8 +
1.9 +#include "settings.h"
1.10 +
1.11 +class ToolBar:public QToolBar
1.12 +{
1.13 + Q_OBJECT
1.14 +
1.15 +public:
1.16 + void loadSettings (const Settings &);
1.17 + void saveSettings (const Settings &);
1.18 +
1.19 +private:
1.20 +};
1.21 +
1.22 +/////////////////////////////////////////////////////////////////////////////
1.23 +class ToolBarSet
1.24 +{
1.25 +public:
1.26 + ToolBarSet();
1.27 + void loadSettings(const Settings &);
1.28 + void saveSettings(const Settings &);
1.29 + void add (QToolBar *);
1.30 +private:
1.31 + QList <ToolBar*> list;
1.32 +};
1.33 +
1.34 +#endif