mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-24 06:35:42 +00:00
51 lines
1,019 B
C++
51 lines
1,019 B
C++
#pragma once
|
|
#include "frontend-common/postprocessing_shader.h"
|
|
#include <QtWidgets/QDialog>
|
|
#include <QtWidgets/QWidget>
|
|
|
|
class QGridLayout;
|
|
|
|
class PostProcessingShaderConfigWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PostProcessingShaderConfigWidget(QWidget* parent, FrontendCommon::PostProcessingShader* shader);
|
|
~PostProcessingShaderConfigWidget();
|
|
|
|
QGridLayout* getLayout() { return m_layout; }
|
|
|
|
Q_SIGNALS:
|
|
void configChanged();
|
|
void resettingtoDefaults();
|
|
|
|
private Q_SLOTS:
|
|
void onResetToDefaultsClicked();
|
|
|
|
protected:
|
|
void createUi();
|
|
|
|
FrontendCommon::PostProcessingShader* m_shader;
|
|
QGridLayout* m_layout;
|
|
};
|
|
|
|
class PostProcessingShaderConfigDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PostProcessingShaderConfigDialog(QWidget* parent, FrontendCommon::PostProcessingShader* shader);
|
|
~PostProcessingShaderConfigDialog();
|
|
|
|
Q_SIGNALS:
|
|
void configChanged();
|
|
|
|
private Q_SLOTS:
|
|
void onConfigChanged();
|
|
void onCloseClicked();
|
|
|
|
private:
|
|
PostProcessingShaderConfigWidget* m_widget;
|
|
};
|
|
|