mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-30 09:35:40 +00:00
32 lines
657 B
C++
32 lines
657 B
C++
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "ui_enhancementsettingswidget.h"
|
|
|
|
class SettingsDialog;
|
|
|
|
class EnhancementSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
EnhancementSettingsWidget(SettingsDialog* dialog, QWidget* parent);
|
|
~EnhancementSettingsWidget();
|
|
|
|
private Q_SLOTS:
|
|
void updateScaledDitheringEnabled();
|
|
void updateDownsampleScaleVisible();
|
|
void updatePGXPSettingsEnabled();
|
|
|
|
private:
|
|
void setupAdditionalUi();
|
|
|
|
Ui::EnhancementSettingsWidget m_ui;
|
|
|
|
SettingsDialog* m_dialog;
|
|
};
|