summaryrefslogtreecommitdiff
path: root/source/Asura.Editor/controls/label.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-03-29 22:28:40 +0800
committerchai <chaifix@163.com>2019-03-29 22:28:40 +0800
commit157530b8b6e11efc5573d5a0db8987a440197aa1 (patch)
treef9df79c013885e13dc81e7046c9828037eb29e2e /source/Asura.Editor/controls/label.h
parente37b1dfd022bda4dfdcba243c0543c62c89db32f (diff)
*misc
Diffstat (limited to 'source/Asura.Editor/controls/label.h')
-rw-r--r--source/Asura.Editor/controls/label.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/source/Asura.Editor/controls/label.h b/source/Asura.Editor/controls/label.h
new file mode 100644
index 0000000..1d053f8
--- /dev/null
+++ b/source/Asura.Editor/controls/label.h
@@ -0,0 +1,25 @@
+#ifndef __ASURA_EDITOR_LABEL_H__
+#define __ASURA_EDITOR_LABEL_H__
+
+#include <asura-lib-utils/scripting/portable.hpp>
+#include <asura-lib-core/graphics/image.h>
+
+#include "widget.h"
+
+namespace AsuraEditor
+{
+
+ class Label
+ : public Widget
+ , public AEScripting::Portable<Label>
+ {
+ public:
+
+ void OnEvent(AEInput::Event& e) override;
+ void OnPaint() override;
+
+ };
+
+}
+
+#endif \ No newline at end of file