summaryrefslogtreecommitdiff
path: root/tests/guiapp/optionsdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/guiapp/optionsdialog.h')
-rw-r--r--tests/guiapp/optionsdialog.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/tests/guiapp/optionsdialog.h b/tests/guiapp/optionsdialog.h
deleted file mode 100644
index c4ac69d..0000000
--- a/tests/guiapp/optionsdialog.h
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef OPTIONSDIALOG_H
-#define OPTIONSDIALOG_H
-
-#include <QtGui/QDialog>
-
-namespace Ui {
-class OptionsDialog;
-}
-
-class SerialPort;
-
-class OptionsDialog : public QDialog
-{
- Q_OBJECT
-public:
- explicit OptionsDialog(SerialPort *port, QWidget *parent = 0);
- ~OptionsDialog();
-
-protected:
- void showEvent(QShowEvent *e);
-
-private slots:
- void procFillingOptions();
- void procApplyButtonClick();
-
-private:
- Ui::OptionsDialog *ui;
- SerialPort *m_port;
- int m_rate;
- int m_data;
- int m_parity;
- int m_stop;
- int m_flow;
- int m_policy;
-
- void detectOptions();
-};
-
-#endif // OPTIONSDIALOG_H