summaryrefslogtreecommitdiffstats
path: root/noatun/modules/infrared/infrared.h
blob: 870efbd50064f13adea87d22687600eb0114d9b7 (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

#ifndef _INFRARED_H_
#define _INFRARED_H_

#include <noatun/player.h>
#include <noatun/plugin.h>

class NoatunPreferences;
class Lirc;

class InfraRed : public TQObject, public Plugin
{
Q_OBJECT
NOATUNPLUGIND
public:
	InfraRed();
	~InfraRed();

private slots:
	void slotCommand(const TQString &, const TQString &, int);

	void start();

private:
	Lirc *m_lirc;
	int volume;
};

#endif