summaryrefslogtreecommitdiffstats
path: root/noatun/modules/keyz/keyz.h
blob: b21e44f84598a479e91c2258985ab2380cd713e0 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#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 *tqparent );
    virtual void save();

private:
    class KKeyChooser* m_chooser;

};

#endif // KEYZ_H