mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-12-14 11:02:04 +08:00
22 lines
431 B
C++
22 lines
431 B
C++
#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
|