安装模块窗口

This commit is contained in:
2024-04-23 22:39:20 +08:00
parent 9909e472d5
commit cae8205d95
7 changed files with 174 additions and 13 deletions

30
kernelinstaller.h Normal file
View File

@@ -0,0 +1,30 @@
#ifndef KERNELINSTALLER_H
#define KERNELINSTALLER_H
#include <QMainWindow>
#include <qtermwidget5/qtermwidget.h>
namespace Ui {
class KernelInstaller;
}
class KernelInstaller : public QMainWindow
{
Q_OBJECT
public:
explicit KernelInstaller(QStringList kernelList, QWidget *parent = nullptr);
~KernelInstaller();
private:
Ui::KernelInstaller *ui;
QTermWidget *terminal;
QStringList kernelList;
QString tempDir = "/tmp";
void StartInstaller();
};
#endif // KERNELINSTALLER_H