Elaztek Developer Hub
Blamite Game Engine - Keystone  00326.06.27.21.0407.blamite
A library that enables the use of Qt in Blamite's editing tools.
new_tag.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QDialog>
4 #include <Strings/components/settings/config/config.h>
5 
7 #include "ui_new_tag.h"
8 
9 class new_tag : public QDialog
10 {
11  Q_OBJECT
12 
13 private slots:
14  void btn_ok_Click();
15  void btn_cancel_Click();
16 
17 private:
18  Ui::new_tag ui;
19  guerilla_window* main_window = nullptr;
20 
21 public:
22  new_tag(guerilla_window* _main_window, QWidget *parent = Q_NULLPTR);
23  ~new_tag();
24 };
guerilla_window.h
new_tag
Definition: new_tag.h:9
new_tag::new_tag
new_tag(guerilla_window *_main_window, QWidget *parent=Q_NULLPTR)
Definition: new_tag.cpp:7
new_tag::~new_tag
~new_tag()
Definition: new_tag.cpp:39
guerilla_window
The main Guerilla window.
Definition: guerilla_window.h:18