mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-23 10:35:03 +00:00
* OLED Theme * improve check box & text box visibility * clang format --------- Co-authored-by: smiRaphi <neogt404@gmail.com>
17 lines
414 B
C++
17 lines
414 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QApplication>
|
|
#include <QLineEdit>
|
|
#include <QWidget>
|
|
|
|
enum class Theme : int { Dark, Light, Green, Blue, Violet, Gruvbox, TokyoNight, Oled };
|
|
|
|
class WindowThemes : public QObject {
|
|
Q_OBJECT
|
|
public Q_SLOTS:
|
|
void SetWindowTheme(Theme theme, QLineEdit* mw_searchbar);
|
|
};
|