summaryrefslogtreecommitdiff
path: root/source/Asura.Editor/widgets/label.h
blob: 1d053f8987652d33b02ecfedbd317170f2e8d291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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