summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/buttondialog.h
Unidiff
Diffstat (limited to 'noncore/tools/remote/buttondialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/remote/buttondialog.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/noncore/tools/remote/buttondialog.h b/noncore/tools/remote/buttondialog.h
new file mode 100644
index 0000000..33dc4ef
--- a/dev/null
+++ b/noncore/tools/remote/buttondialog.h
@@ -0,0 +1,59 @@
1/*
2Opie-Remote. emulates remote controlls on an iPaq (and maybe a Zaurus) in Opie.
3Copyright (C) 2002 Thomas Stephens
4
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
7version.
8
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
11Public License for more details.
12
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
15*/
16
17#include <qdialog.h>
18#include <qstring.h>
19#include <qstringlist.h>
20#include <qcombobox.h>
21#include <qlayout.h>
22#include <qlabel.h>
23#include <qlineedit.h>
24#include <qmessagebox.h>
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <sys/socket.h>
29#include <sys/types.h>
30#include <sys/un.h>
31#include <unistd.h>
32#include <errno.h>
33
34#define PACKET_SIZE 256
35#define TIMEOUT 3
36
37class ButtonDialog : public QDialog
38{
39 Q_OBJECT
40public:
41 ButtonDialog(QString buttonName, QWidget *parent=0, const char*name=0, bool modal=FALSE, WFlags f=0);
42 void setIRSocket(int newfd);
43 const char *readPacket();
44 QStringList getRemotes();
45 QStringList getButtons(const char *remoteName);
46 QStringList getList();
47 QString getLabel();
48public slots:
49 void remoteSelected(const QString &string);
50 void buttonSelected(const QString &string);
51private:
52 QComboBox *remote;
53 QComboBox *button;
54 QStringList list;
55 QLineEdit *label;
56 int fd;
57 int timeout;
58 struct sockaddr_un addr;
59};