summaryrefslogtreecommitdiff
path: root/core/settings/launcher/tabssettings.h
blob: 76cae681c134e1aba95d28324de60b7a24f76c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef __TABS_SETTINGS_H__
#define __TABS_SETTINGS_H__

#include <qwidget.h>
#include <qmap.h>

#include "tabconfig.h"

class QListBox;


class TabsSettings : public QWidget {
	Q_OBJECT

public:
	TabsSettings ( QWidget *parent = 0, const char *name = 0 );

	void accept ( );

protected slots:
	void newClicked ( );
	void deleteClicked ( );
	void editClicked ( );

protected:
	void init ( );
	void readTabSettings ( );

private:
	QListBox *m_list;
//	QString currentTab;
	QStringList m_ids;
	QMap <QString, TabConfig> m_tabs;
};




#endif