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.
about_blamite.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QDialog>
4 
5 #include "ui_about_blamite.h"
6 
10 class about_blamite : public QDialog
11 {
12  Q_OBJECT
13 
14 private slots:
18  void btn_ok_Click();
19 
23  void btn_docs_Click();
24 
28  void btn_elaztek_Click();
29 
30 private:
31  Ui::about_blamite ui;
32 
36  void resizeEvent(QResizeEvent* event);
37 
41  void showEvent(QShowEvent* event);
42 
43 public:
47  about_blamite(QWidget *parent = Q_NULLPTR);
48 
53 };
about_blamite::about_blamite
about_blamite(QWidget *parent=Q_NULLPTR)
Constructs the about box.
Definition: about_blamite.cpp:11
about_blamite::~about_blamite
~about_blamite()
Destroys the about box.
Definition: about_blamite.cpp:67
about_blamite
The Blamite About dialog.
Definition: about_blamite.h:10