mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 06:47:53 +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.
61 lines
1.2 KiB
C++
61 lines
1.2 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 <QList>
|
|
#include <QWidget>
|
|
|
|
class QGraphicsScene;
|
|
class QStandardItem;
|
|
class QStandardItemModel;
|
|
class QTreeView;
|
|
class QVBoxLayout;
|
|
|
|
namespace Service::Account {
|
|
class ProfileManager;
|
|
}
|
|
|
|
namespace Ui {
|
|
class ConfigureProfileManager;
|
|
}
|
|
|
|
class ConfigureProfileManager : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureProfileManager(QWidget* parent = nullptr);
|
|
~ConfigureProfileManager() override;
|
|
|
|
void ApplyConfiguration();
|
|
|
|
private:
|
|
void changeEvent(QEvent* event) override;
|
|
void RetranslateUI();
|
|
|
|
void SetConfiguration();
|
|
|
|
void PopulateUserList();
|
|
void UpdateCurrentUser();
|
|
|
|
void SelectUser(const QModelIndex& index);
|
|
void AddUser();
|
|
void RenameUser();
|
|
void DeleteUser();
|
|
void SetUserImage();
|
|
|
|
QVBoxLayout* layout;
|
|
QTreeView* tree_view;
|
|
QStandardItemModel* item_model;
|
|
QGraphicsScene* scene;
|
|
|
|
std::vector<QList<QStandardItem*>> list_items;
|
|
|
|
std::unique_ptr<Ui::ConfigureProfileManager> ui;
|
|
bool enabled = false;
|
|
|
|
std::unique_ptr<Service::Account::ProfileManager> profile_manager;
|
|
};
|