mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-01 09:23:36 +00:00
19 lines
417 B
C++
19 lines
417 B
C++
#pragma once
|
|
|
|
#include "UIControl_Base.h"
|
|
|
|
class UIControl_Label : public UIControl_Base {
|
|
private:
|
|
bool m_reinitEnabled;
|
|
|
|
public:
|
|
UIControl_Label();
|
|
|
|
virtual bool setupControl(UIScene* scene, IggyValuePath* parent,
|
|
const std::string& controlName);
|
|
|
|
void init(UIString label);
|
|
virtual void ReInit();
|
|
|
|
void disableReinitialisation() { m_reinitEnabled = false; }
|
|
}; |