diff options
| author | Shawn Hoffman <godisgovernment@gmail.com> | 2023-04-25 00:12:59 -0700 |
|---|---|---|
| committer | Shawn Hoffman <godisgovernment@gmail.com> | 2023-04-25 12:34:34 -0700 |
| commit | bb227ad7bbf734a0efe29288e79f0d22654ee399 (patch) | |
| tree | d23342856835b71df1abea8d9122d327a8f57ef8 /Source/Core | |
| parent | 8c2e9242555bdcbaa0067658bf8a4a41d6936405 (diff) | |
DolphinQt: reset stylesheets on colorSchemeChanged
This is required for switching system color scheme
(dark/light) dynamically at runtime.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp | 17 | ||||
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 6 | ||||
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 17 | ||||
| -rw-r--r-- | Source/Core/DolphinQt/MainWindow.cpp | 8 |
4 files changed, 42 insertions, 6 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp b/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp index 533fa5e55f..b043fbecba 100644 --- a/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeDiffDialog.cpp @@ -7,10 +7,12 @@ #include <string>
#include <vector>
+#include <QGuiApplication>
#include <QHBoxLayout>
#include <QLabel>
#include <QMenu>
#include <QPushButton>
+#include <QStyleHints>
#include <QTableWidget>
#include <QVBoxLayout>
@@ -30,6 +32,10 @@ #include "DolphinQt/QtUtils/ModalMessageBox.h"
#include "DolphinQt/Settings.h"
+static const QString RECORD_BUTTON_STYLESHEET =
+ QStringLiteral("QPushButton:checked { background-color: rgb(150, 0, 0); border-style: solid; "
+ "border-width: 3px; border-color: rgb(150,0,0); color: rgb(255, 255, 255);}");
+
CodeDiffDialog::CodeDiffDialog(CodeWidget* parent) : QDialog(parent), m_code_widget(parent)
{
setWindowTitle(tr("Code Diff Tool"));
@@ -54,9 +60,7 @@ void CodeDiffDialog::CreateWidgets() m_include_btn = new QPushButton(tr("Code has been executed"));
m_record_btn = new QPushButton(tr("Start Recording"));
m_record_btn->setCheckable(true);
- m_record_btn->setStyleSheet(
- QStringLiteral("QPushButton:checked { background-color: rgb(150, 0, 0); border-style: solid; "
- "border-width: 3px; border-color: rgb(150,0,0); color: rgb(255, 255, 255);}"));
+ m_record_btn->setStyleSheet(RECORD_BUTTON_STYLESHEET);
m_exclude_btn->setEnabled(false);
m_include_btn->setEnabled(false);
@@ -105,6 +109,13 @@ void CodeDiffDialog::CreateWidgets() void CodeDiffDialog::ConnectWidgets()
{
+#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0)
+ connect(QGuiApplication::styleHints(), &QStyleHints::colorSchemeChanged, this,
+ [this](Qt::ColorScheme colorScheme) {
+ m_record_btn->setStyleSheet(RECORD_BUTTON_STYLESHEET);
+ });
+#endif
+
connect(m_record_btn, &QPushButton::toggled, this, &CodeDiffDialog::OnRecord);
connect(m_include_btn, &QPushButton::pressed, [this]() { Update(true); });
connect(m_exclude_btn, &QPushButton::pressed, [this]() { Update(false); });
diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index edac049a96..cd93541736 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -19,6 +19,7 @@ #include <QPainter> #include <QResizeEvent> #include <QScrollBar> +#include <QStyleHints> #include <QStyledItemDelegate> #include <QTableWidgetItem> #include <QWheelEvent> @@ -161,6 +162,11 @@ CodeViewWidget::CodeViewWidget() : m_system(Core::System::GetInstance()) FontBasedSizing(); +#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) + connect(QGuiApplication::styleHints(), &QStyleHints::colorSchemeChanged, this, + [this](Qt::ColorScheme colorScheme) { OnSelectionChanged(); }); +#endif + connect(this, &CodeViewWidget::customContextMenuRequested, this, &CodeViewWidget::OnContextMenu); connect(this, &CodeViewWidget::itemSelectionChanged, this, &CodeViewWidget::OnSelectionChanged); connect(&Settings::Instance(), &Settings::DebugFontChanged, this, &QWidget::setFont); diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index 1f82c969de..4315196996 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -9,11 +9,13 @@ #include <QGridLayout> #include <QGroupBox> +#include <QGuiApplication> #include <QLabel> #include <QLineEdit> #include <QListWidget> #include <QPushButton> #include <QSplitter> +#include <QStyleHints> #include <QTableWidget> #include <QWidget> @@ -28,6 +30,10 @@ #include "DolphinQt/Host.h" #include "DolphinQt/Settings.h" +static const QString BOX_SPLITTER_STYLESHEET = QStringLiteral( + "QSplitter::handle { border-top: 1px dashed black; width: 1px; margin-left: 10px; " + "margin-right: 10px; }"); + CodeWidget::CodeWidget(QWidget* parent) : QDockWidget(parent), m_system(Core::System::GetInstance()) { setWindowTitle(tr("Code")); @@ -104,9 +110,7 @@ void CodeWidget::CreateWidgets() m_search_address->setPlaceholderText(tr("Search Address")); m_box_splitter = new QSplitter(Qt::Vertical); - m_box_splitter->setStyleSheet(QStringLiteral( - "QSplitter::handle { border-top: 1px dashed black; width: 1px; margin-left: 10px; " - "margin-right: 10px; }")); + m_box_splitter->setStyleSheet(BOX_SPLITTER_STYLESHEET); auto add_search_line_edit = [this](const QString& name, QListWidget* list_widget) { auto* widget = new QWidget; @@ -154,6 +158,13 @@ void CodeWidget::CreateWidgets() void CodeWidget::ConnectWidgets() { +#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) + connect(QGuiApplication::styleHints(), &QStyleHints::colorSchemeChanged, this, + [this](Qt::ColorScheme colorScheme) { + m_box_splitter->setStyleSheet(BOX_SPLITTER_STYLESHEET); + }); +#endif + connect(m_search_address, &QLineEdit::textChanged, this, &CodeWidget::OnSearchAddress); connect(m_search_address, &QLineEdit::returnPressed, this, &CodeWidget::OnSearchAddress); connect(m_search_symbols, &QLineEdit::textChanged, this, &CodeWidget::OnSearchSymbols); diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index c1566fb795..3c295c9d74 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -14,6 +14,7 @@ #include <QIcon> #include <QMimeData> #include <QStackedWidget> +#include <QStyleHints> #include <QVBoxLayout> #include <QWindow> @@ -238,6 +239,13 @@ MainWindow::MainWindow(std::unique_ptr<BootParameters> boot_parameters, ConnectMenuBar(); ConnectHotkeys(); +#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) + connect(QGuiApplication::styleHints(), &QStyleHints::colorSchemeChanged, this, + [](Qt::ColorScheme colorScheme) { + Settings::Instance().SetCurrentUserStyle(Settings::Instance().GetCurrentUserStyle()); + }); +#endif + connect(m_cheats_manager, &CheatsManager::OpenGeneralSettings, this, &MainWindow::ShowGeneralWindow); |
