toolbars.h
author insilmaril
Mon Feb 12 09:28:47 2007 +0000 (2007-02-12)
changeset 427 fb74fa7bfb4c
permissions -rw-r--r--
1.8.66 Various fixes
     1 #ifndef TOOLBARS_H
     2 #define TOOLBARS_H
     3 
     4 #include <QToolBar>
     5 
     6 #include "settings.h"
     7 
     8 class ToolBar:public QToolBar
     9 {
    10 	Q_OBJECT
    11 
    12 public:
    13 	void loadSettings (const Settings &);
    14 	void saveSettings (const Settings &);
    15 
    16 private:
    17 };
    18 
    19 /////////////////////////////////////////////////////////////////////////////
    20 class ToolBarSet
    21 {
    22 public:
    23 	ToolBarSet();
    24 	void loadSettings(const Settings &);	
    25 	void saveSettings(const Settings &);	
    26 	void add (QToolBar *);
    27 private:
    28 	QList <ToolBar*> list;
    29 };
    30 
    31 #endif