From 77446a6745c112c8a0ce5b1ad66e365bf227cb38 Mon Sep 17 00:00:00 2001 From: Michal Kubecek Date: Thu, 16 Apr 2015 14:47:27 +0200 Subject: automatic conversion of dtmfform.ui --- src/gui/dtmfform.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/gui/dtmfform.h (limited to 'src/gui/dtmfform.h') diff --git a/src/gui/dtmfform.h b/src/gui/dtmfform.h new file mode 100644 index 0000000..a9c6b45 --- /dev/null +++ b/src/gui/dtmfform.h @@ -0,0 +1,39 @@ +#ifndef DTMFFORM_H +#define DTMFFORM_H + +#include +#include +#include "ui_dtmfform.h" + +class DtmfForm : public QDialog, private Ui::DtmfForm +{ + Q_OBJECT + +public: + explicit DtmfForm(QWidget *parent = 0); + ~DtmfForm(); + +public slots: + void dtmf1(); + void dtmf2(); + void dtmf3(); + void dtmf4(); + void dtmf5(); + void dtmf6(); + void dtmf7(); + void dtmf8(); + void dtmf9(); + void dtmf0(); + void dtmfStar(); + void dtmfPound(); + void dtmfA(); + void dtmfB(); + void dtmfC(); + void dtmfD(); + void keyPressEvent(QKeyEvent* e); + +signals: + void digits(const QString&); +}; + +#endif // DTMFFORM_H -- cgit v1.2.3