blob: 22dca8846e316923314e5ed993f4e7394f83f3e4 (
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
|
#ifndef __WINSKINCONFIG_H
#define __WINSKINCONFIG_H
#include <noatun/pref.h>
#include <qwidget.h>
class QVBoxLayout;
class WaSkinManager;
class QSlider;
class WinSkinConfig:public CModule {
Q_OBJECT
public:
WinSkinConfig(QWidget * parent, WaSkinManager *waManager);
void save();
public slots:
void reopen();
private slots:
void selected();
void install();
void remove();
private:
WaSkinManager *mWaSkinManager;
QListBox *skin_list;
QString orig_skin;
QVBoxLayout *vbox;
QPushButton *buttonRemove;
QSlider *scrollSpeed;
};
#endif
|