mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-05 01:45:05 +01:00
90f9d32f13
This adds a Game List configuration group box which is similar to yuzu's, with features including icon size setting, row 1/2 text, and ability to hide invalid titles (those without a valid SMDH). I also added a UI tab and moved the language and theme settings there.
32 lines
602 B
C++
32 lines
602 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QWidget>
|
|
|
|
class HotkeyRegistry;
|
|
|
|
namespace Ui {
|
|
class ConfigureGeneral;
|
|
}
|
|
|
|
class ConfigureGeneral : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureGeneral(QWidget* parent = nullptr);
|
|
~ConfigureGeneral();
|
|
|
|
void PopulateHotkeyList(const HotkeyRegistry& registry);
|
|
void applyConfiguration();
|
|
void retranslateUi();
|
|
|
|
private:
|
|
void setConfiguration();
|
|
|
|
std::unique_ptr<Ui::ConfigureGeneral> ui;
|
|
};
|