summaryrefslogtreecommitdiff
path: root/tests/guiapp/tracedialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/guiapp/tracedialog.h')
-rw-r--r--tests/guiapp/tracedialog.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/guiapp/tracedialog.h b/tests/guiapp/tracedialog.h
deleted file mode 100644
index 8d5c58a..0000000
--- a/tests/guiapp/tracedialog.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef TRACEDIALOG_H
-#define TRACEDIALOG_H
-
-#include <QtGui/QDialog>
-
-namespace Ui {
-class TraceDialog;
-}
-
-class SerialPort;
-
-class TraceDialog : public QDialog
-{
- Q_OBJECT
-public:
- explicit TraceDialog(SerialPort *port, QWidget *parent = 0);
- ~TraceDialog();
-
-protected:
- void changeEvent(QEvent *e);
-
-private slots:
- void printTrace(const QByteArray &data, bool directionRx);
- void procSendButtonClick();
- void procClearButtonClick();
- void procReadyRead();
-
-private:
- Ui::TraceDialog *ui;
-
- SerialPort *m_port;
-};
-
-#endif // TRACEDIALOG_H