qt/LedOK/program/usbdetectdialog.h

20 lines
412 B
C
Raw Normal View History

2023-04-18 14:14:46 +08:00
#ifndef USBDETECTDIALOG_H
#define USBDETECTDIALOG_H
2023-04-28 16:02:14 +08:00
#include <QDialog>
2023-04-18 14:14:46 +08:00
#include <QListWidget>
2023-04-28 16:02:14 +08:00
class UsbDetectDialog : public QDialog {
2023-04-18 14:14:46 +08:00
Q_OBJECT
public:
2023-04-28 16:02:14 +08:00
explicit UsbDetectDialog(QWidget *parent = 0);
2023-04-18 14:14:46 +08:00
signals:
void acceptData(QString string1, QString string2);
private:
void detectDriver();
QListWidget *fdDrives;
QLineEdit *fdPassword;
};
#endif // USBDETECTDIALOG_H