mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-17 12:22:46 +01: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.
39 lines
759 B
C++
39 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;
|
|
};
|