mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-05 09:55:05 +01:00
35 lines
612 B
C++
35 lines
612 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 <QDialog>
|
|
|
|
namespace Ui {
|
|
class ConfigureDialog;
|
|
}
|
|
|
|
class ConfigureDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureDialog(QWidget* parent);
|
|
~ConfigureDialog();
|
|
|
|
void applyConfiguration();
|
|
|
|
private slots:
|
|
void onLanguageChanged(const QString& locale);
|
|
|
|
signals:
|
|
void languageChanged(const QString& locale);
|
|
|
|
private:
|
|
void setConfiguration();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::ConfigureDialog> ui;
|
|
};
|