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.
tdemultimedia/noatun/modules/keyz/keyz.h

51 lines
729 B

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