summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/mainview.h
Unidiff
Diffstat (limited to 'noncore/tools/remote/mainview.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/tools/remote/mainview.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/tools/remote/mainview.h b/noncore/tools/remote/mainview.h
index 2434064..e93da5c 100644
--- a/noncore/tools/remote/mainview.h
+++ b/noncore/tools/remote/mainview.h
@@ -24,31 +24,33 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24#include <qpaintdevice.h> 24#include <qpaintdevice.h>
25#include <qobject.h> 25#include <qobject.h>
26#include <sys/socket.h> 26#include <sys/socket.h>
27#include <sys/types.h> 27#include <sys/types.h>
28#include <sys/un.h> 28#include <sys/un.h>
29#include <unistd.h> 29#include <unistd.h>
30#include <stdio.h> 30#include <stdio.h>
31#include <signal.h> 31#include <signal.h>
32 32
33#include "remotetab.h" 33#include "remotetab.h"
34#include "learntab.h" 34#include "learntab.h"
35#include "configtab.h" 35#include "configtab.h"
36#include "helptab.h"
36 37
37#define BUFFERSIZE 256 38#define BUFFERSIZE 256
38 39
39class MainView : public QWidget 40class MainView : public QWidget
40{ 41{
41 Q_OBJECT 42 Q_OBJECT
42public: 43public:
43 MainView(QWidget *parent=0, const char *name=0); 44 MainView(QWidget *parent=0, const char *name=0);
44 int getIRSocket(); 45 int getIRSocket();
45 void setIRSocket(int newfd); 46 void setIRSocket(int newfd);
46public slots: 47public slots:
47 void updateRemotesList(); 48 void updateRemotesList();
48private: 49private:
49 int fd; 50 int fd;
50 RemoteTab *remote; 51 RemoteTab *remote;
51 ConfigTab *config; 52 ConfigTab *config;
52 LearnTab *learn; 53 LearnTab *learn;
54 HelpTab *help;
53 Config *cfg; 55 Config *cfg;
54}; 56};