summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/remotetab.h
Unidiff
Diffstat (limited to 'noncore/tools/remote/remotetab.h') (more/less context) (ignore 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
@@ -1,64 +1,57 @@
1/* 1/*
2Opie-Remote. emulates remote controlls on an iPaq (and maybe a Zaurus) in Opie. 2Opie-Remote. emulates remote controlls on an iPaq (and maybe a Zaurus) in Opie.
3Copyright (C) 2002 Thomas Stephens 3Copyright (C) 2002 Thomas Stephens
4 4
5This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public 5This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
6License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later 6License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later
7version. 7version.
8 8
9This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 9This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
10implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 10implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11Public License for more details. 11Public License for more details.
12 12
13You should have received a copy of the GNU General Public License along with this program; if not, write to the Free 13You should have received a copy of the GNU General Public License along with this program; if not, write to the Free
14Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 14Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15*/ 15*/
16 16
17#include <qpe/config.h> 17#include <qpe/config.h>
18#include <qwidget.h> 18#include <qwidget.h>
19#include <qlayout.h> 19#include <qlayout.h>
20#include <qvbox.h> 20#include <qvbox.h>
21#include <qmessagebox.h> 21#include <qmessagebox.h>
22#include <qstring.h> 22#include <qstring.h>
23#include <qsize.h> 23#include <qsize.h>
24#include <qobjectlist.h> 24#include <qobjectlist.h>
25 25
26#include <stdio.h> 26#include <stdio.h>
27#include <stdlib.h> 27#include <stdlib.h>
28#include <string.h> 28#include <string.h>
29#include <sys/socket.h> 29#include <sys/socket.h>
30#include <sys/types.h> 30#include <sys/types.h>
31#include <sys/un.h> 31#include <sys/un.h>
32#include <unistd.h> 32#include <unistd.h>
33#include <errno.h> 33#include <errno.h>
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};