diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-30 23:02:02 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-30 23:02:02 -0400 |
| commit | 77bf566ebbcb62acd4d08d905d9542d6ff9b6b80 (patch) | |
| tree | eeb8e72bc3bf57f5be7f0c0af4319189ac6de838 /redo/mergeback/layout.go | |
| parent | 155899c65ed32245e2ccad4197a10c77017d835b (diff) | |
...in with the new.
Diffstat (limited to 'redo/mergeback/layout.go')
| -rw-r--r-- | redo/mergeback/layout.go | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/redo/mergeback/layout.go b/redo/mergeback/layout.go deleted file mode 100644 index e88cae4..0000000 --- a/redo/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 -} |
