From 52f7d276a6bb04b8827ac019ad1e135b43819cea Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 30 May 2016 00:14:46 -0400 Subject: Removed prev/. --- prev/mergeback/layout.go | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 prev/mergeback/layout.go (limited to 'prev/mergeback/layout.go') diff --git a/prev/mergeback/layout.go b/prev/mergeback/layout.go deleted file mode 100644 index e88cae4..0000000 --- a/prev/mergeback/layout.go +++ /dev/null @@ -1,36 +0,0 @@ -package ui - -// Recursively replaces nils with stretchy empty spaces and changes the orientation -// of inner stack so they are perpenticular to each other. -func resetControls(parent *Stack) { - for i, control := range parent.controls { - switch control.(type) { - case *Stack: - stack := control.(*Stack) - stack.orientation = !parent.orientation - resetControls(stack) - case nil: - emptySpace := newStack(horizontal) - parent.controls[i] = emptySpace - parent.stretchy[i] = true - } - } -} - -// Creates a new Stack from the given controls. The topmost Stack will have -// vertical orientation and margin borders, with each nested stack being -// oriented oppositely. Controls are displayed with a default padding -// between them. -func Layout(controls ...Control) *Stack { - stack := &Stack{ - orientation: vertical, - controls: controls, - stretchy: make([]bool, len(controls)), - width: make([]int, len(controls)), - height: make([]int, len(controls)), - } - - resetControls(stack) - - return stack -} -- cgit v1.2.3