mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-03-13 08:42:19 +08:00
45 lines
1.1 KiB
C++
Executable File
45 lines
1.1 KiB
C++
Executable File
/*
|
|
* gfdgd xi、为什么您不喜欢熊出没和阿布呢
|
|
* 依照 GPLV3 开源
|
|
*/
|
|
#include "mainwindow.h"
|
|
#include "ui_mainwindow.h"
|
|
#include "buildvbox.h"
|
|
#include <QFileDialog>
|
|
#include <QDebug>
|
|
#include <QNetworkInterface>
|
|
#include <QProcess>
|
|
#include <QLoggingCategory>
|
|
#include <infoutils.h>
|
|
#include <QMessageBox>
|
|
|
|
MainWindow::MainWindow(QWidget *parent) :
|
|
QMainWindow(parent),
|
|
ui(new Ui::MainWindow)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->tabWidget->setTabPosition(QTabWidget::West); // 标签靠左
|
|
// 允许输出 qDebug 信息
|
|
QLoggingCategory::defaultCategory()->setEnabled(QtDebugMsg, true);
|
|
}
|
|
|
|
MainWindow::~MainWindow()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void MainWindow::on_browser_clicked()
|
|
{
|
|
// 浏览镜像文件
|
|
QString filePath = QFileDialog::getOpenFileName(this, "选择 ISO 文件", QDir::homePath(), "ISO 镜像文件(*.iso);;所有文件(*.*)");
|
|
if(filePath != ""){
|
|
ui->isoPath->setText(filePath);
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_install_clicked()
|
|
{
|
|
buildvbox(ui->isoPath->text(), ui->systemVersion->currentIndex());
|
|
return;
|
|
}
|