#include "newverifymethod.h" #include "ui_newverifymethod.h" #include "verifydevice.h" #include "formverypoint.h" NewVerifyMethod::NewVerifyMethod(QWidget *parent) : QWidget(parent), ui(new Ui::NewVerifyMethod) { ui->setupUi(this); } NewVerifyMethod::~NewVerifyMethod() { delete ui; } void NewVerifyMethod::showVerifyDevice() { VerifyDevice *checkWindow = new VerifyDevice; checkWindow->setWindowState(Qt::WindowMaximized); checkWindow->setWindowModality(Qt::ApplicationModal); checkWindow->show(); } void NewVerifyMethod::showVeryPoint() { FormVeryPoint *checkWindow = new FormVeryPoint; //checkWindow.setWindowState(Qt::WindowMaximized); checkWindow->setWindowModality(Qt::ApplicationModal); checkWindow->show(); }