summaryrefslogtreecommitdiffstats
path: root/LogReceiver/abortbootdialog.h
diff options
context:
space:
mode:
authorNiklas2011-09-23 14:08:55 +0200
committerNiklas2011-09-23 14:08:55 +0200
commit0216e9aadb7e794037d3cf553b05474de8322a74 (patch)
treefb4c699a56a459d9f4b628a5f66b19796de23f5c /LogReceiver/abortbootdialog.h
parentchanged the css file for the networkdiscovery. now it looks a bit nicer (diff)
downloadfbgui-0216e9aadb7e794037d3cf553b05474de8322a74.tar.gz
fbgui-0216e9aadb7e794037d3cf553b05474de8322a74.tar.xz
fbgui-0216e9aadb7e794037d3cf553b05474de8322a74.zip
renamed the logreceiver to networkdiscovery and deleted the abortbootdialog and chooseinterfacedialog since this is now implemented via html/css/jquery
Diffstat (limited to 'LogReceiver/abortbootdialog.h')
-rw-r--r--LogReceiver/abortbootdialog.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/LogReceiver/abortbootdialog.h b/LogReceiver/abortbootdialog.h
deleted file mode 100644
index 157331b..0000000
--- a/LogReceiver/abortbootdialog.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef ABORTBOOTDIALOG_H
-#define ABORTBOOTDIALOG_H
-
-#include <QDialog>
-#include "qboxlayout.h"
-#include "qgroupbox.h"
-#include "qcombobox.h"
-#include "qlabel.h"
-
-
-class AbortBootDialog : public QDialog
-{
- Q_OBJECT
-public:
- explicit AbortBootDialog(QWidget *parent = 0);
-
- void closeDialog();
-private slots:
- void showLogButtonClicked();
- void shutDownButtonClicked();
- void restartButtonClicked();
- void timerLabelUpdate();
-
-private:
- QVBoxLayout *mainLayout;
- QGroupBox *contentGroupBox;
- QGroupBox *buttonGroupBox;
- QLabel *timerLabel;
- QTimer *timer;
- int oneMinuteCountdown;
-
- void createContentGroupBox();
- void createButtonGroupBox();
- void createTimer();
-
-
-signals:
- void showLogSignal();
- void shutDownSignal();
- void restartSignal();
-
-public slots:
-
-};
-
-#endif // ABORTBOOTDIALOG_H