staticlayout

This commit is contained in:
Adam D. Ruppe 2013-10-21 19:24:22 -04:00
parent 13f9209c60
commit 0453e59f29
1 changed files with 11 additions and 0 deletions

View File

@ -677,7 +677,18 @@ class Widget {
class VerticalLayout : Widget {
// intentionally blank - widget's default is vertical layout right now
this(Widget parent = null) { super(parent); if(parent) this.parentWindow = parent.parentWindow; }
}
class StaticLayout : Widget {
this(Widget parent = null) { super(parent); if(parent) this.parentWindow = parent.parentWindow; }
override void recomputeChildLayout() {
registerMovement();
foreach(child; children)
child.recomputeChildLayout();
}
}
class HorizontalLayout : Widget {
this(Widget parent = null) { super(parent); if(parent) this.parentWindow = parent.parentWindow; }
override void recomputeChildLayout() {