This commit is contained in:
2023-04-09 22:12:29 +08:00
commit fba75a8df0
48 changed files with 3413 additions and 0 deletions

39
mainwindow.h Executable file
View File

@@ -0,0 +1,39 @@
/*
* gfdgd xi、为什么您不喜欢熊出没和阿布呢
* 依照 GPLV3 开源
*/
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void ShowCPUMessage();
void on_browser_clicked();
QString GetRunCommand(QString command);
void on_install_clicked();
void on_getvbox_clicked();
void on_getQemu_clicked();
private:
Ui::MainWindow *ui;
long m_cpuAll;
long m_cpuFree;
};
#endif // MAINWINDOW_H