DOM render

This commit is contained in:
Vadim Lopatin 2016-07-05 10:23:36 +03:00
parent b6875df3d8
commit 63d052b782
2 changed files with 19 additions and 1 deletions

View File

@ -667,9 +667,9 @@
<File path="3rdparty\dimage\zlib.d" />
</Folder>
<Folder name="fontconfig">
<File path="3rdparty\fontconfig\fctypes.d" />
<File path="3rdparty\fontconfig\functions.d" />
<File path="3rdparty\fontconfig\package.d" />
<File path="3rdparty\fontconfig\fctypes.d" />
</Folder>
<Folder name="win32">
<File path="3rdparty\win32\basetsd.d" />
@ -771,6 +771,9 @@
<File path="src\dlangui\dml\tokenizer.d" />
</Folder>
<Folder name="graphics">
<Folder name="domrender">
<File path="src\dlangui\graphics\domrender\renderblock.d" />
</Folder>
<Folder name="scene">
<File path="src\dlangui\graphics\scene\camera.d" />
<File path="src\dlangui\graphics\scene\drawableobject.d" />

View File

@ -0,0 +1,15 @@
module dlangui.graphics.domrender.renderblock;
import dlangui.core.types;
import dlangui.core.collections;
import dlangui.core.css;
import dlangui.core.dom;
class RenderBlock {
Rect pos;
Rect margins;
Rect padding;
Rect borderWidth;
Rect borderStyle;
Collection!RenderBlock children;
}