refactor layout.h into single file per Node* classes

This commit is contained in:
2017-05-13 21:58:04 +01:00
parent 51e355d039
commit 1f6c688258
55 changed files with 3600 additions and 2675 deletions

View File

@@ -1,5 +1,13 @@
#pragma once
enum class kShapeType : uint16_t
{
Quad = const_hash("rect"),
Poly = const_hash("poly"),
RoundRect = const_hash("round-rect"),
Slice9 = const_hash("slice9"),
};
namespace ui {
class Shape