summaryrefslogtreecommitdiffstats
path: root/noatun/modules/winskin/winSkinConfig.h
blob: a047a1f34c57bb73f19a4b842f4e8b78e2e3751b (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 * parent, 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