mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-27 08:05:41 +00:00
ac825855f7
Stops them breaking in Qt 6.6.
33 lines
714 B
C++
33 lines
714 B
C++
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "ui_consolesettingswidget.h"
|
|
|
|
class SettingsWindow;
|
|
|
|
class ConsoleSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConsoleSettingsWidget(SettingsWindow* dialog, QWidget* parent);
|
|
~ConsoleSettingsWidget();
|
|
|
|
private Q_SLOTS:
|
|
void updateRecompilerICacheEnabled();
|
|
void onEnableCPUClockSpeedControlChecked(int state);
|
|
void onCPUClockSpeedValueChanged(int value);
|
|
void updateCPUClockSpeedLabel();
|
|
|
|
private:
|
|
void calculateCPUClockValue();
|
|
|
|
Ui::ConsoleSettingsWidget m_ui;
|
|
|
|
SettingsWindow* m_dialog;
|
|
};
|