mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-29 01:05:50 +01:00
5ca0430cb2
The old tooltip description box used GraphicsWidget to provide shared code to the Graphics config panes for adding descriptions to their settings. The description box has been replaced by BalloonTips and serves no further purpose, so remove it and have the Graphics panes derive from QWidget instead.
59 lines
1.2 KiB
C++
59 lines
1.2 KiB
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <array>
|
|
|
|
#include <QWidget>
|
|
|
|
class ConfigBool;
|
|
class ConfigChoice;
|
|
class ConfigSlider;
|
|
class GraphicsWindow;
|
|
class QCheckBox;
|
|
class QComboBox;
|
|
class QPushButton;
|
|
class QSlider;
|
|
class ToolTipComboBox;
|
|
|
|
class EnhancementsWidget final : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit EnhancementsWidget(GraphicsWindow* parent);
|
|
|
|
private:
|
|
void LoadSettings();
|
|
void SaveSettings();
|
|
|
|
void CreateWidgets();
|
|
void ConnectWidgets();
|
|
void AddDescriptions();
|
|
void ConfigurePostProcessingShader();
|
|
void LoadPPShaders();
|
|
|
|
// Enhancements
|
|
ConfigChoice* m_ir_combo;
|
|
ToolTipComboBox* m_aa_combo;
|
|
ToolTipComboBox* m_texture_filtering_combo;
|
|
ToolTipComboBox* m_pp_effect;
|
|
QPushButton* m_configure_pp_effect;
|
|
ConfigBool* m_scaled_efb_copy;
|
|
ConfigBool* m_per_pixel_lighting;
|
|
ConfigBool* m_widescreen_hack;
|
|
ConfigBool* m_disable_fog;
|
|
ConfigBool* m_force_24bit_color;
|
|
ConfigBool* m_disable_copy_filter;
|
|
ConfigBool* m_arbitrary_mipmap_detection;
|
|
|
|
// Stereoscopy
|
|
ConfigChoice* m_3d_mode;
|
|
ConfigSlider* m_3d_depth;
|
|
ConfigSlider* m_3d_convergence;
|
|
ConfigBool* m_3d_swap_eyes;
|
|
|
|
int m_msaa_modes;
|
|
bool m_block_save;
|
|
};
|