mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-07 18:39:58 +00:00
c09ff382a4
To prepare for translation support, this makes all of the widgets cognizant of the language change event that occurs whenever installTranslator() is called and automatically retranslates their text where necessary. This is important as calling the backing UI's retranslateUi() is often not enough, particularly in cases where we add our own strings that aren't controlled by it. In that case we need to manually refresh the strings ourselves.
54 lines
1.1 KiB
C++
54 lines
1.1 KiB
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 <vector>
|
|
|
|
#include <QDialog>
|
|
#include <QList>
|
|
|
|
#include "core/file_sys/vfs_types.h"
|
|
|
|
class QGraphicsScene;
|
|
class QStandardItem;
|
|
class QStandardItemModel;
|
|
class QTreeView;
|
|
class QVBoxLayout;
|
|
|
|
namespace Ui {
|
|
class ConfigurePerGameGeneral;
|
|
}
|
|
|
|
class ConfigurePerGameGeneral : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigurePerGameGeneral(QWidget* parent, u64 title_id);
|
|
~ConfigurePerGameGeneral() override;
|
|
|
|
/// Save all button configurations to settings file
|
|
void ApplyConfiguration();
|
|
|
|
void LoadFromFile(FileSys::VirtualFile file);
|
|
|
|
private:
|
|
void changeEvent(QEvent* event) override;
|
|
void RetranslateUI();
|
|
|
|
void LoadConfiguration();
|
|
|
|
std::unique_ptr<Ui::ConfigurePerGameGeneral> ui;
|
|
FileSys::VirtualFile file;
|
|
u64 title_id;
|
|
|
|
QVBoxLayout* layout;
|
|
QTreeView* tree_view;
|
|
QStandardItemModel* item_model;
|
|
QGraphicsScene* scene;
|
|
|
|
std::vector<QList<QStandardItem*>> list_items;
|
|
};
|