Elaztek Developer Hub
Blamite Game Engine - Keystone  00351.02.07.22.1906.blamite
A library that enables the use of Qt in Blamite's editing tools.
integer.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "../generic/BlamEditorInstanceField_Generic.h"
4 
6 {
7 private:
8  int* value = nullptr;
9  QLineEdit* edit_control = nullptr;
10 
11 public:
12  BlamEditorInstanceField_Integer(int* _value, std::string title);
13 
14 private slots:
15  void OnValueChanged();
16 };
BlamEditorInstanceField_Generic
Definition: BlamEditorInstanceField_Generic.h:16
BlamEditorInstanceField_Integer::BlamEditorInstanceField_Integer
BlamEditorInstanceField_Integer(int *_value, std::string title)
Definition: integer.cpp:8
BlamEditorInstanceField_Integer
Definition: integer.h:5