forked from tslocum/cview
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
783 B
34 lines
783 B
// Demo code for the Flex primitive. |
|
package main |
|
|
|
import ( |
|
"code.rocketnine.space/tslocum/cview" |
|
) |
|
|
|
func demoBox(title string) *cview.Box { |
|
b := cview.NewBox() |
|
b.SetBorder(true) |
|
b.SetTitle(title) |
|
return b |
|
} |
|
|
|
func main() { |
|
app := cview.NewApplication() |
|
app.EnableMouse(true) |
|
|
|
subFlex := cview.NewFlex() |
|
subFlex.SetDirection(cview.FlexRow) |
|
subFlex.AddItem(demoBox("Top"), 0, 1, false) |
|
subFlex.AddItem(demoBox("Middle (3 x height of Top)"), 0, 3, false) |
|
subFlex.AddItem(demoBox("Bottom (5 rows)"), 5, 1, false) |
|
|
|
flex := cview.NewFlex() |
|
flex.AddItem(demoBox("Left (1/2 x width of Top)"), 0, 1, false) |
|
flex.AddItem(subFlex, 0, 2, false) |
|
flex.AddItem(demoBox("Right (20 cols)"), 20, 1, false) |
|
|
|
app.SetRoot(flex, true) |
|
if err := app.Run(); err != nil { |
|
panic(err) |
|
} |
|
}
|
|
|