summaryrefslogtreecommitdiffstats
path: root/noatun/modules/winskin/winSkinConfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/modules/winskin/winSkinConfig.h')
-rw-r--r--noatun/modules/winskin/winSkinConfig.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/noatun/modules/winskin/winSkinConfig.h b/noatun/modules/winskin/winSkinConfig.h
new file mode 100644
index 00000000..22dca884
--- /dev/null
+++ b/noatun/modules/winskin/winSkinConfig.h
@@ -0,0 +1,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