Elaztek Developer Hub
Blamite Game Engine - Keystone  00305.01.23.21.0442.blamite
A library that enables the use of Qt in Blamite's editing tools.
foundry_main_window.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QMainWindow>
4 #include "ui_foundry_main_window.h"
5 
7 
11 class foundry_main_window : public QMainWindow
12 {
13  Q_OBJECT
14 
15 private slots:
16  void menu_editor_settings_Click();
17 
18 private:
19  Ui::foundry_main_window ui;
20 
21  foundry_editor_settings editor_settings;
22  QLabel* status_text;
23 
24 public:
25  foundry_main_window(QWidget *parent = Q_NULLPTR);
27 };
foundry_main_window::~foundry_main_window
~foundry_main_window()
Definition: foundry_main_window.cpp:18
foundry_main_window
The main window for Foundry.
Definition: foundry_main_window.h:11
foundry_editor_settings.h
foundry_editor_settings
The Foundry settings dialog.
Definition: foundry_editor_settings.h:11
foundry_main_window::foundry_main_window
foundry_main_window(QWidget *parent=Q_NULLPTR)
Definition: foundry_main_window.cpp:3