mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 06:09:57 +00:00
99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
40 lines
759 B
C++
40 lines
759 B
C++
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
class QLineEdit;
|
|
|
|
namespace Ui {
|
|
class ConfigureTas;
|
|
}
|
|
|
|
class ConfigureTasDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureTasDialog(QWidget* parent);
|
|
~ConfigureTasDialog() override;
|
|
|
|
/// Save all button configurations to settings file
|
|
void ApplyConfiguration();
|
|
|
|
private:
|
|
enum class DirectoryTarget {
|
|
TAS,
|
|
};
|
|
|
|
void LoadConfiguration();
|
|
|
|
void SetDirectory(DirectoryTarget target, QLineEdit* edit);
|
|
|
|
void changeEvent(QEvent* event) override;
|
|
void RetranslateUI();
|
|
|
|
void HandleApplyButtonClicked();
|
|
|
|
std::unique_ptr<Ui::ConfigureTas> ui;
|
|
};
|