mirror of https://github.com/stenzek/duckstation
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
550 B
C
29 lines
550 B
C
5 years ago
|
#pragma once
|
||
|
|
||
|
#include <QtWidgets/QWidget>
|
||
|
|
||
|
#include "ui_enhancementsettingswidget.h"
|
||
|
|
||
|
class QtHostInterface;
|
||
|
class SettingsDialog;
|
||
|
|
||
|
class EnhancementSettingsWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
EnhancementSettingsWidget(QtHostInterface* host_interface, QWidget* parent, SettingsDialog* dialog);
|
||
|
~EnhancementSettingsWidget();
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
void updateScaledDitheringEnabled();
|
||
|
void updatePGXPSettingsEnabled();
|
||
|
|
||
|
private:
|
||
|
void setupAdditionalUi();
|
||
|
|
||
|
Ui::EnhancementSettingsWidget m_ui;
|
||
|
|
||
|
QtHostInterface* m_host_interface;
|
||
|
};
|