安装模块窗口

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

View File

@@ -3,6 +3,7 @@
#include <QMainWindow>
#include "kernelinformation.h"
#include "kernelinstaller.h"
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
@@ -16,8 +17,14 @@ public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void on_m_refreshButton_clicked();
void on_m_installButton_clicked();
private:
Ui::MainWindow *ui;
KernelInformation *kernelInformation;
void RefreshKernelList();
void RefreshKernelListView(KernelInformation *info);
};