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
@@ -31,18 +31,14 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
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:
@@ -53,7 +49,5 @@ private:
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};