2020-04-29 14:47:40 +08:00
|
|
|
|
#ifndef MF_UID_PARAMETERDIALOG_H
|
2020-04-25 00:57:28 +08:00
|
|
|
|
#define MF_UID_PARAMETERDIALOG_H
|
|
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
2020-08-13 09:30:47 +08:00
|
|
|
|
namespace Ui
|
|
|
|
|
{
|
2020-04-25 00:57:28 +08:00
|
|
|
|
class MF_UID_parameterDialog;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class MF_UID_parameterDialog : public QDialog
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2020-04-29 14:47:40 +08:00
|
|
|
|
explicit MF_UID_parameterDialog(const QString& uid, const QString& atqa, const QString& sak, QWidget *parent = nullptr);
|
2020-04-25 00:57:28 +08:00
|
|
|
|
~MF_UID_parameterDialog();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Ui::MF_UID_parameterDialog *ui;
|
2020-04-29 14:47:40 +08:00
|
|
|
|
signals:
|
2020-08-13 09:30:47 +08:00
|
|
|
|
void sendCMD(const QString& cmd);
|
2020-04-29 14:47:40 +08:00
|
|
|
|
private slots:
|
|
|
|
|
void on_buttonBox_accepted();
|
2020-04-25 00:57:28 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // MF_UID_PARAMETERDIALOG_H
|