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.
51 lines
741 B
51 lines
741 B
#ifndef KEYZ_H
|
|
#define KEYZ_H
|
|
|
|
#include <noatun/pref.h>
|
|
#include <noatun/plugin.h>
|
|
|
|
class Keyz : public TQObject, public Plugin
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
NOATUNPLUGIND
|
|
|
|
public:
|
|
Keyz();
|
|
~Keyz();
|
|
|
|
static KGlobalAccel *accel() { return s_accel; }
|
|
|
|
public slots:
|
|
void slotVolumeUp();
|
|
void slotVolumeDown();
|
|
void slotMute();
|
|
|
|
void slotForward();
|
|
void slotBackward();
|
|
void slotNextSection();
|
|
void slotPrevSection();
|
|
void slotCopyTitle();
|
|
|
|
private:
|
|
static KGlobalAccel *s_accel;
|
|
int preMuteVol;
|
|
};
|
|
|
|
|
|
class KeyzPrefs : public CModule
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
KeyzPrefs( TQObject *parent );
|
|
virtual void save();
|
|
|
|
private:
|
|
class KKeyChooser* m_chooser;
|
|
|
|
};
|
|
|
|
#endif // KEYZ_H
|