toolbars.h
author insilmaril
Tue, 05 Sep 2006 11:53:54 +0000
changeset 374 8df2895c131c
parent 13 9aadd0f58300
permissions -rw-r--r--
fixed default shortcut in findwindow
     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