qt/LedOK/wDevicesManager/upgradeapkdialog.h

26 lines
561 B
C
Raw Normal View History

2022-01-04 18:11:48 +08:00
#ifndef UPGRADEAPKDIALOG_H
#define UPGRADEAPKDIALOG_H
2022-08-25 18:37:24 +08:00
#include <QDialog>
2022-01-04 18:11:48 +08:00
#include <QTreeWidgetItem>
#include "wupgradeapkitem.h"
2022-08-25 18:37:24 +08:00
class UpgradeApkDialog : public QDialog {
2022-01-04 18:11:48 +08:00
Q_OBJECT
public:
2022-08-25 18:37:24 +08:00
explicit UpgradeApkDialog(QWidget *parent = nullptr);
protected:
virtual void keyPressEvent(QKeyEvent *ev);
2022-01-04 18:11:48 +08:00
protected slots:
void FilterProgram(const QString &strtemp);
private:
2022-08-25 18:37:24 +08:00
void onAddLedCard(LedCard *p);
LoQTreeWidget *wDevicePublishList;
2022-01-04 18:11:48 +08:00
QTreeWidgetItem *m_headerItem=nullptr;
QString m_strUrl="";
};
#endif // UpgradeApkDialog_H