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.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/noncore/tools/remote/buttondialog.h b/noncore/tools/remote/buttondialog.h
index 33dc4ef..cc697b5 100644
--- a/noncore/tools/remote/buttondialog.h
+++ b/noncore/tools/remote/buttondialog.h
@@ -22,38 +22,32 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22#include <qlabel.h> 22#include <qlabel.h>
23#include <qlineedit.h> 23#include <qlineedit.h>
24#include <qmessagebox.h> 24#include <qmessagebox.h>
25#include <stdio.h> 25#include <stdio.h>
26#include <stdlib.h> 26#include <stdlib.h>
27#include <string.h> 27#include <string.h>
28#include <sys/socket.h> 28#include <sys/socket.h>
29#include <sys/types.h> 29#include <sys/types.h>
30#include <sys/un.h> 30#include <sys/un.h>
31#include <unistd.h> 31#include <unistd.h>
32#include <errno.h> 32#include <errno.h>
33 33
34#define PACKET_SIZE 256 34#include "lirchandler.h"
35#define TIMEOUT 3
36 35
37class ButtonDialog : public QDialog 36class ButtonDialog : public QDialog
38{ 37{
39 Q_OBJECT 38 Q_OBJECT
40public: 39public:
41 ButtonDialog(QString buttonName, QWidget *parent=0, const char*name=0, bool modal=FALSE, WFlags f=0); 40 ButtonDialog(QString buttonName, QWidget *parent=0, const char*name=0, bool modal=FALSE, WFlags f=0);
42 void setIRSocket(int newfd); 41 ~ButtonDialog();
43 const char *readPacket();
44 QStringList getRemotes();
45 QStringList getButtons(const char *remoteName);
46 QStringList getList(); 42 QStringList getList();
47 QString getLabel(); 43 QString getLabel();
48public slots: 44public slots:
49 void remoteSelected(const QString &string); 45 void remoteSelected(const QString &string);
50 void buttonSelected(const QString &string); 46 void buttonSelected(const QString &string);
51private: 47private:
52 QComboBox *remote; 48 QComboBox *remote;
53 QComboBox *button; 49 QComboBox *button;
54 QStringList list; 50 QStringList list;
55 QLineEdit *label; 51 QLineEdit *label;
56 int fd; 52 LircHandler *lh;
57 int timeout;
58 struct sockaddr_un addr;
59}; 53};