qt/LedOK/program/usbdetectdialog.h

20 lines
409 B
C
Raw Normal View History

2023-04-18 14:14:46 +08:00
#ifndef USBDETECTDIALOG_H
#define USBDETECTDIALOG_H
2023-04-28 18:26:41 +08:00
#include "gutil/qgui.h"
2023-04-28 16:02:14 +08:00
#include <QDialog>
2023-04-18 14:14:46 +08:00
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();
2023-04-28 18:26:41 +08:00
ListWgt *fdDrives;
2023-04-18 14:14:46 +08:00
QLineEdit *fdPassword;
};
#endif // USBDETECTDIALOG_H