summaryrefslogtreecommitdiff
path: root/noncore/styles/theme/settings/themeset.h
blob: 24804cefa2f674ac070b7aea217557263ebfd2ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __OPIE_THEME_SET_H__
#define __OPIE_THEME_SET_H__

#include <qdialog.h>

class QListView;

class ThemeSet : public QDialog {
	Q_OBJECT
	
public:
	ThemeSet ( QWidget *parent = 0, const char *name = 0, WFlags fl = 0 );

protected:
	virtual void accept ( );
	
private:
	QListView *m_list;
};
#endif