#ifndef KEYZ_H #define KEYZ_H #include #include 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