Panda3DS/include/panda_qt/config_window.hpp
Auxy6858 35b15fdd48
Jelly + ice cream theme (#486)
* 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>
2024-04-02 01:21:36 +03:00

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();
};