mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
* Update config_window.cpp * Update config_window.hpp * Rename theme to Cream * Rename theme to cream harder --------- Co-authored-by: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
30 lines
462 B
C++
30 lines
462 B
C++
#pragma once
|
|
|
|
#include <QApplication>
|
|
#include <QComboBox>
|
|
#include <QDialog>
|
|
#include <QPalette>
|
|
#include <QWidget>
|
|
#include <QtWidgets>
|
|
|
|
class ConfigWindow : public QDialog {
|
|
Q_OBJECT
|
|
|
|
private:
|
|
enum class Theme : int {
|
|
System = 0,
|
|
Light = 1,
|
|
Dark = 2,
|
|
GreetingsCat = 3,
|
|
Cream = 4,
|
|
};
|
|
|
|
Theme currentTheme;
|
|
QComboBox* themeSelect = nullptr;
|
|
|
|
void setTheme(Theme theme);
|
|
|
|
public:
|
|
ConfigWindow(QWidget* parent = nullptr);
|
|
~ConfigWindow();
|
|
};
|