Newer
Older
AutomaticVerification / softwareDirectory / AutoVerScheme / newcheckmethod.h
陈实 on 14 Mar 2024 757 bytes 检定程序选择设备
#ifndef NEWCHECKMETHOD_H
#define NEWCHECKMETHOD_H

#include <QWidget>
#include "basecommonapi.h"

namespace Ui {
class NewCheckMethod;
}

class NewCheckMethod : public QWidget
{
    Q_OBJECT

public:
    explicit NewCheckMethod(QWidget *parent = nullptr,QString sId="");
    ~NewCheckMethod();
    void getMethodInfo();
    void chooseDevices(QString checkIds,QString bizIds);
private slots:
    void showCheckDevice();
    void choosePicture();
    void deletePicture();
    void showCheckPoint();

    void on_pushButton_3_clicked();

    void on_pushButton_4_clicked();
protected:
    void showEvent(QShowEvent *event);
private:
    QString methodId="";
    Ui::NewCheckMethod *ui;
    VerificationProgramInfo programInfo;
};

#endif // NEWCHECKMETHOD_H