mirror of https://github.com/wh201906/Proxmark3GUI
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
656 B
C++
37 lines
656 B
C++
#ifndef MF_SIM_SIMDIALOG_H
|
|
#define MF_SIM_SIMDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QDebug>
|
|
#include "common/util.h"
|
|
|
|
namespace Ui
|
|
{
|
|
class MF_Sim_simDialog;
|
|
}
|
|
|
|
class MF_Sim_simDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MF_Sim_simDialog(int cardType, QString cardTypeText, QWidget *parent = nullptr);
|
|
~MF_Sim_simDialog();
|
|
|
|
private slots:
|
|
void on_eBox_clicked(bool checked);
|
|
|
|
void on_fBox_clicked(bool checked);
|
|
|
|
private:
|
|
Ui::MF_Sim_simDialog *ui;
|
|
int cardType;
|
|
QString cardTypeText;
|
|
signals:
|
|
void sendCMD(const QString& cmd);
|
|
private slots:
|
|
void on_buttonBox_accepted();
|
|
};
|
|
|
|
#endif // MF_SIM_SIMDIALOG_H
|