summaryrefslogtreecommitdiffstats
path: root/tests/guiapp/maindialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/guiapp/maindialog.h')
-rw-r--r--tests/guiapp/maindialog.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/tests/guiapp/maindialog.h b/tests/guiapp/maindialog.h
deleted file mode 100644
index 889c8ce3..00000000
--- a/tests/guiapp/maindialog.h
+++ /dev/null
@@ -1,48 +0,0 @@
-#ifndef MAINDIALOG_H
-#define MAINDIALOG_H
-
-#include <QtGui/QDialog>
-
-namespace Ui {
-class MainDialog;
-}
-
-class SerialPort;
-class QTimer;
-
-class MainDialog : public QDialog
-{
- Q_OBJECT
-public:
- explicit MainDialog(QWidget *parent = 0);
- ~MainDialog();
-
-protected:
- void changeEvent(QEvent *e);
-
-private slots:
- void procShowPorts();
- void procItemPortChanged(int idx);
-
- void procControlButtonClick();
- void procOptionsButtonClick();
- void procIOButtonClick();
- void procRtsButtonClick();
- void procDtrButtonClick();
-
- void procUpdateLines();
-
-private:
- Ui::MainDialog *ui;
-
- SerialPort *m_port;
- QTimer *m_timer;
-
- bool m_rts;
- bool m_dtr;
-
- void fillOpenModeComboBox();
-
-};
-
-#endif // MAINDIALOG_H