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