mirror of https://github.com/buggins/dlangui.git
DOM render
This commit is contained in:
parent
b6875df3d8
commit
63d052b782
|
@ -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" />
|
||||
|
|
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue