mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-01 08:25:43 -04:00
27 lines
438 B
C++
27 lines
438 B
C++
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "ui_gpusettingswidget.h"
|
|
|
|
class QtHostInterface;
|
|
|
|
class GPUSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GPUSettingsWidget(QtHostInterface* host_interface, QWidget* parent = nullptr);
|
|
~GPUSettingsWidget();
|
|
|
|
private Q_SLOTS:
|
|
void updateScaledDitheringEnabled();
|
|
|
|
private:
|
|
void setupAdditionalUi();
|
|
|
|
Ui::GPUSettingsWidget m_ui;
|
|
|
|
QtHostInterface* m_host_interface;
|
|
};
|