forked from eden-emu/eden
This is part of a series of PRs made in preparation for the QML rewrite. this PR specifically moves a bunch of utility functions from main.cpp into qt_common, with the biggest benefit being that QML can reuse the exact same code through ctx passthrough. Also, QtCommon::Frontend is an abstraction layer over several previously Widgets-specific stuff like QMessageBox that gets used everywhere. The idea is that once QML is implemented, these functions can have a Quick version implemented for systems that don't work well with Widgets (sun) or for those on Plasma 6+ (reduces memory usage w/o Widgets linkage) although Quick from C++ is actually anal, but whatever. Other than that this should also just kinda reduce the size of main.cpp which is a 6000-line behemoth rn, and clangd straight up gives up with it for me (likely caused by the massive amount of headers, which this DOES reduce). In the future, I probably want to create a common strings lookup table that both Qt and QML can reference--though I'm not sure how much linguist likes that--which should give us a way to keep language consistent (use frozen-map). TODO: Docs for Qt stuff Co-authored-by: MaranBr <maranbr@outlook.com> Reviewed-on: eden-emu/eden#94 Reviewed-by: MaranBr <maranbr@eden-emu.dev> Reviewed-by: Shinmegumi <shinmegumi@eden-emu.dev>
72 lines
2.2 KiB
C++
72 lines
2.2 KiB
C++
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include <QCheckBox>
|
|
#include <QDialogButtonBox>
|
|
#include <QFileInfo>
|
|
#include <QLabel>
|
|
#include <QListWidget>
|
|
#include <QVBoxLayout>
|
|
#include "yuzu/install_dialog.h"
|
|
#include "qt_common/uisettings.h"
|
|
|
|
InstallDialog::InstallDialog(QWidget* parent, const QStringList& files) : QDialog(parent) {
|
|
file_list = new QListWidget(this);
|
|
|
|
for (const QString& file : files) {
|
|
QListWidgetItem* item = new QListWidgetItem(QFileInfo(file).fileName(), file_list);
|
|
item->setData(Qt::UserRole, file);
|
|
item->setFlags(item->flags() | Qt::ItemIsUserCheckable);
|
|
item->setCheckState(Qt::Checked);
|
|
}
|
|
|
|
file_list->setMinimumWidth((file_list->sizeHintForColumn(0) * 11) / 10);
|
|
|
|
vbox_layout = new QVBoxLayout;
|
|
|
|
hbox_layout = new QHBoxLayout;
|
|
|
|
description = new QLabel(tr("Please confirm these are the files you wish to install."));
|
|
|
|
update_description =
|
|
new QLabel(tr("Installing an Update or DLC will overwrite the previously installed one."));
|
|
|
|
buttons = new QDialogButtonBox;
|
|
buttons->addButton(QDialogButtonBox::Cancel);
|
|
buttons->addButton(tr("Install"), QDialogButtonBox::AcceptRole);
|
|
|
|
connect(buttons, &QDialogButtonBox::accepted, this, &InstallDialog::accept);
|
|
connect(buttons, &QDialogButtonBox::rejected, this, &InstallDialog::reject);
|
|
|
|
hbox_layout->addWidget(buttons);
|
|
|
|
vbox_layout->addWidget(description);
|
|
vbox_layout->addWidget(update_description);
|
|
vbox_layout->addWidget(file_list);
|
|
vbox_layout->addLayout(hbox_layout);
|
|
|
|
setLayout(vbox_layout);
|
|
setWindowTitle(tr("Install Files to NAND"));
|
|
}
|
|
|
|
InstallDialog::~InstallDialog() = default;
|
|
|
|
QStringList InstallDialog::GetFiles() const {
|
|
QStringList files;
|
|
|
|
for (int i = 0; i < file_list->count(); ++i) {
|
|
const QListWidgetItem* item = file_list->item(i);
|
|
if (item->checkState() == Qt::Checked) {
|
|
files.append(item->data(Qt::UserRole).toString());
|
|
}
|
|
}
|
|
|
|
return files;
|
|
}
|
|
|
|
int InstallDialog::GetMinimumWidth() const {
|
|
return file_list->width();
|
|
}
|