blob: 047f08058a5addb4ffb6cd97d7445d186776dd9e (
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
|
#ifndef __WINSKINCONFIG_H
#define __WINSKINCONFIG_H
#include <noatun/pref.h>
#include <tqwidget.h>
class TQVBoxLayout;
class WaSkinManager;
class TQSlider;
class WinSkinConfig:public CModule {
Q_OBJECT
TQ_OBJECT
public:
WinSkinConfig(TQWidget * tqparent, WaSkinManager *waManager);
void save();
public slots:
void reopen();
private slots:
void selected();
void install();
void remove();
private:
WaSkinManager *mWaSkinManager;
TQListBox *skin_list;
TQString orig_skin;
TQVBoxLayout *vbox;
TQPushButton *buttonRemove;
TQSlider *scrollSpeed;
};
#endif
|