Elaztek Developer Hub
Blamite Game Engine - Keystone  00361.08.25.22.0004.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 
5 #include <qspinbox.h>
6 
8 {
9 private:
10  int* value = nullptr;
11  QSpinBox* edit_control = nullptr;
12 
13 public:
14  BlamEditorInstanceField_Integer(int* _value, std::string title);
15 
16 private slots:
17  void OnValueChanged();
18 };
BlamEditorInstanceField_Generic
Definition: BlamEditorInstanceField_Generic.h:16
BlamEditorInstanceField_Integer::BlamEditorInstanceField_Integer
BlamEditorInstanceField_Integer(int *_value, std::string title)
Definition: integer.cpp:9
BlamEditorInstanceField_Integer
Definition: integer.h:7