实现应用安装以及对话框显示安装结果的功能

This commit is contained in:
2024-01-29 10:32:19 +08:00
parent 6d8e706e39
commit 72233f07ed
7 changed files with 92 additions and 11 deletions

View File

@@ -12,9 +12,11 @@ public:
InstallDEB(QTermWidget *terminal, DMainWindow *mainWindow = NULL);
void AddCommand(QString command);
void RunCommand(bool withRoot=false);
void SetCommandAfterRootRun(QString command);
QStringList commandList;
private:
QTermWidget *terminal;
QString commandAfterRootRun;
DMainWindow *mainWindow = NULL;
bool runStatus;
};