qt/LedOK/device/upgradeapkdialog.h

26 lines
577 B
C
Raw Normal View History

2023-04-18 14:14:46 +08:00
#ifndef UPGRADEAPKDIALOG_H
#define UPGRADEAPKDIALOG_H
#include <QDialog>
#include <QTreeWidgetItem>
#include "wupgradeapkitem.h"
class UpgradeApkDialog : public QDialog {
Q_OBJECT
public:
explicit UpgradeApkDialog(QWidget *parent = nullptr);
QString filePath, fileId;
protected:
virtual void keyPressEvent(QKeyEvent *ev);
protected slots:
void FilterProgram(const QString &strtemp);
private:
2023-05-15 16:06:10 +08:00
void onAddLedCard(LedCard p);
2023-04-18 14:14:46 +08:00
LoQTreeWidget *table;
QTreeWidgetItem *m_headerItem=nullptr;
};
#endif // UpgradeApkDialog_H