2021-12-13 12:12:54 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2023-01-12 09:30:39 +00:00
|
|
|
* Copyright (C) 2002-2023 PCSX2 Dev Team
|
2021-12-13 12:12:54 +00:00
|
|
|
*
|
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
|
|
|
|
#include "ui_GraphicsSettingsWidget.h"
|
|
|
|
|
2022-02-15 14:29:18 +00:00
|
|
|
enum class GSRendererType : s8;
|
|
|
|
|
2021-12-13 12:12:54 +00:00
|
|
|
class SettingsDialog;
|
|
|
|
|
|
|
|
class GraphicsSettingsWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2022-02-15 14:29:18 +00:00
|
|
|
GraphicsSettingsWidget(SettingsDialog* dialog, QWidget* parent);
|
2021-12-13 12:12:54 +00:00
|
|
|
~GraphicsSettingsWidget();
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void fullscreenModesChanged(const QStringList& modes);
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
2022-08-01 23:58:29 +00:00
|
|
|
void onTextureFilteringChange();
|
|
|
|
void onSWTextureFilteringChange();
|
2021-12-13 12:12:54 +00:00
|
|
|
void onRendererChanged(int index);
|
|
|
|
void onAdapterChanged(int index);
|
2022-03-26 04:06:40 +00:00
|
|
|
void onTrilinearFilteringChanged();
|
2022-03-24 00:58:29 +00:00
|
|
|
void onGpuPaletteConversionChanged(int state);
|
2021-12-13 12:12:54 +00:00
|
|
|
void onFullscreenModeChanged(int index);
|
2022-03-26 18:16:25 +00:00
|
|
|
void onShadeBoostChanged();
|
2022-12-18 13:05:00 +00:00
|
|
|
void onVideoCaptureContainerChanged();
|
2023-01-12 09:30:39 +00:00
|
|
|
void onEnableVideoCaptureArgumentsChanged();
|
2021-12-13 12:12:54 +00:00
|
|
|
|
|
|
|
private:
|
2022-02-15 14:29:18 +00:00
|
|
|
GSRendererType getEffectiveRenderer() const;
|
2022-06-18 10:48:03 +00:00
|
|
|
void updateRendererDependentOptions();
|
2022-02-15 14:29:18 +00:00
|
|
|
|
|
|
|
SettingsDialog* m_dialog;
|
|
|
|
|
2021-12-13 12:12:54 +00:00
|
|
|
Ui::GraphicsSettingsWidget m_ui;
|
|
|
|
|
2022-06-18 10:48:03 +00:00
|
|
|
bool m_hardware_renderer_visible = false;
|
|
|
|
bool m_software_renderer_visible = false;
|
2021-12-13 12:12:54 +00:00
|
|
|
};
|