mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-12-14 11:02:04 +08:00
初步可以运行命令
This commit is contained in:
21
installdeb.h
Normal file
21
installdeb.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef INSTALLDEB_H
|
||||
#define INSTALLDEB_H
|
||||
|
||||
#include <QObject>
|
||||
#include <qtermwidget5/qtermwidget.h>
|
||||
#include <QMainWindow>
|
||||
|
||||
class InstallDEB
|
||||
{
|
||||
public:
|
||||
InstallDEB(QTermWidget *terminal, QMainWindow *mainWindow = NULL);
|
||||
void AddCommand(QString command);
|
||||
void RunCommand();
|
||||
QStringList commandList;
|
||||
private:
|
||||
QTermWidget *terminal;
|
||||
QMainWindow *mainWindow = NULL;
|
||||
bool runStatus;
|
||||
};
|
||||
|
||||
#endif // INSTALLDEB_H
|
||||
Reference in New Issue
Block a user