You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
618 B
37 lines
618 B
#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
|