summaryrefslogtreecommitdiffstats
path: root/workspace/LogWriter/logwriter.h
diff options
context:
space:
mode:
authorNiklas2011-09-01 09:31:39 +0200
committerNiklas2011-09-01 09:31:39 +0200
commit4e1b9faba7503f99ee2fbcd7458f66ade42fa309 (patch)
tree4f9668c17d4dbf103ba71302624a387b080301a3 /workspace/LogWriter/logwriter.h
parentsome minor changes (diff)
downloadfbgui-4e1b9faba7503f99ee2fbcd7458f66ade42fa309.tar.gz
fbgui-4e1b9faba7503f99ee2fbcd7458f66ade42fa309.tar.xz
fbgui-4e1b9faba7503f99ee2fbcd7458f66ade42fa309.zip
tried to clean the git. deleted old unused files and folders. moved customdhcpcd and LogReceiver to the fbgui folder
Diffstat (limited to 'workspace/LogWriter/logwriter.h')
-rw-r--r--workspace/LogWriter/logwriter.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/workspace/LogWriter/logwriter.h b/workspace/LogWriter/logwriter.h
deleted file mode 100644
index a4ddea3..0000000
--- a/workspace/LogWriter/logwriter.h
+++ /dev/null
@@ -1,50 +0,0 @@
-#ifndef LOGWRITER_H
-#define LOGWRITER_H
-
-#include <QtGui/QDialog>
-#include <qlocalsocket.h>
-#include "ui_logwriter.h"
-#include "status.h"
-
-class QDialogButtonBox;
-class QLabel;
-class QLineEdit;
-class QPushButton;
-class QLocalSocket;
-
-class LogWriter: public QDialog {
-Q_OBJECT
-
-public:
- LogWriter(QWidget *parent = 0);
- ~LogWriter();
-
-private slots:
- void requestNewFortune();
- void readFortune();
- void displayError(QLocalSocket::LocalSocketError socketError);
- void enableWriteButton();
- void writeToLogReceiver();
-
-private:
- // enum STATUS stat, enum SUBSTATUS sub_stat
- void writeToLogReceiver(int stat, int sub_stat);
- Ui::LogWriterClass ui;
- QLabel *hostLabel;
- QLineEdit *hostLineEdit;
- QLabel *statusLabel;
- QPushButton *connectToLogReceiver;
- QPushButton *quitButton;
- QPushButton *writeButton;
- QDialogButtonBox *buttonBox;
-
- QString currentFortune;
- quint16 blockSize;
- QString serverName;
-
- int sockfd;
-
-};
-
-#endif // LOGWRITER_H
-