summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/remotetab.h
Unidiff
Diffstat (limited to 'noncore/tools/remote/remotetab.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/tools/remote/remotetab.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/noncore/tools/remote/remotetab.h b/noncore/tools/remote/remotetab.h
index 38b58e9..da0a543 100644
--- a/noncore/tools/remote/remotetab.h
+++ b/noncore/tools/remote/remotetab.h
@@ -34,31 +34,24 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 34
35#include "topgroup.h" 35#include "topgroup.h"
36#include "dvdgroup.h" 36#include "dvdgroup.h"
37#include "channelgroup.h" 37#include "channelgroup.h"
38#include "vcrgroup.h" 38#include "vcrgroup.h"
39 39
40#define PACKET_SIZE 256
41#define TIMEOUT 3
42
43class RemoteTab : public QWidget 40class RemoteTab : public QWidget
44{ 41{
45 Q_OBJECT 42 Q_OBJECT
46public: 43public:
47 RemoteTab(QWidget *parent=0, const char *name=0); 44 RemoteTab(QWidget *parent=0, const char *name=0);
48 void setIRSocket(int newfd);
49 const char *readPacket(); 45 const char *readPacket();
50 void setConfig(Config *newCfg); 46 void setConfig(Config *newCfg);
51 void updateRemotesList(); 47 void updateRemotesList();
52public slots: 48public slots:
53 int sendIR(); 49 int sendIR();
54 void remoteSelected(const QString &string); 50 void remoteSelected(const QString &string);
55private: 51private:
56 int fd;
57 int timeout;
58 struct sockaddr_un addr;
59 Config *cfg; 52 Config *cfg;
60 TopGroup *topGroup; 53 TopGroup *topGroup;
61 DVDGroup *dvdGroup; 54 DVDGroup *dvdGroup;
62 VCRGroup *vcrGroup; 55 VCRGroup *vcrGroup;
63 ChannelGroup *channelGroup; 56 ChannelGroup *channelGroup;
64}; 57};