Elaztek Developer Hub
Blamite Game Engine - Keystone  00355.06.11.22.0220.blamite
A library that enables the use of Qt in Blamite's editing tools.
ThemeChooserItem.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QWidget>
4 
6 #include "ui_ThemeChooserItem.h"
7 
8 class ThemeChooserItem : public QWidget
9 {
10  Q_OBJECT
11 
12 private:
13  Ui::ThemeChooserItem ui;
14  BlamEditorTheme* theme = nullptr;
15 
16 public:
17  ThemeChooserItem(BlamEditorTheme* _theme, QWidget *parent = Q_NULLPTR);
19 
20 private slots:
21  void btn_apply_Click();
22  void btn_edit_Click();
23 };
themes.h
BlamEditorTheme
Class representing a Blamite Editor Theme.
Definition: themes.h:47
ThemeChooserItem
Definition: ThemeChooserItem.h:8
ThemeChooserItem::ThemeChooserItem
ThemeChooserItem(BlamEditorTheme *_theme, QWidget *parent=Q_NULLPTR)
Definition: ThemeChooserItem.cpp:9
ThemeChooserItem::~ThemeChooserItem
~ThemeChooserItem()
Definition: ThemeChooserItem.cpp:43