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.
31 lines
387 B
31 lines
387 B
|
|
#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
|
|
|