package main // implements widgets 'Window' and 'Tab' import ( "git.wit.org/wit/gui/toolkit" // "github.com/awesome-gocui/gocui" ) func (w *cuiWidget) hideWidgets() { switch w.widgetType { case toolkit.Root: case toolkit.Flag: case toolkit.Window: case toolkit.Tab: case toolkit.Box: case toolkit.Grid: default: w.deleteView() } for _, child := range w.children { child.hideWidgets() } } func (w *cuiWidget) hideFake() { if (w.isFake) { w.deleteView() } for _, child := range w.children { child.hideFake() } } func (w *cuiWidget) showFake() { if (w.isFake) { w.drawView() } for _, child := range w.children { child.showFake() } } func (w *cuiWidget) showWidgets() { w.drawView() for _, child := range w.children { child.showWidgets() } } func (w *cuiWidget) setTabWH() { t := len(w.text) w.realWidth = t + me.buttonPadding w.realHeight = me.defaultHeight startW := 1 startH := 1 for _, child := range me.rootNode.children { if (child.isFake) { continue } if (w == child) { w.startW = startW w.startH = startH w.gocuiSize.startW = startW w.gocuiSize.startH = startH w.setWH() w.showWidgetPlacement(logNow, "setTABWH:") return } startW += child.realWidth } w.startW = startW w.startH = startH w.gocuiSize.startW = startW w.gocuiSize.startH = startH w.setWH() w.showWidgetPlacement(logNow, "setTabWH:") } func (w *cuiWidget) redoTabs(draw bool) { if (w == nil) { return } log(logVerbose, "redoTabs() START about to check for window and tab ", w.name) w.text = w.name t := len(w.text) if ((w.widgetType == toolkit.Window) || (w.widgetType == toolkit.Tab)) { log(logVerbose, "redoTabs() in Window and Tab", w.name) w.realWidth = t + me.buttonPadding w.realHeight = me.defaultHeight w.gocuiSize.w0 = me.rootNode.logicalSize.w1 w.gocuiSize.w1 = w.gocuiSize.w0 + w.realWidth w.gocuiSize.h0 = 0 w.gocuiSize.h1 = w.realHeight // start logical sizes windows and in the top left corner w.logicalSize.w0 = 2 w.logicalSize.w1 = 2 w.logicalSize.h0 = w.realHeight w.logicalSize.h1 = w.realHeight // start all windows and in the top left corner w.nextW = w.logicalSize.w0 w.nextH = w.logicalSize.h0 me.rootNode.logicalSize.w1 = w.gocuiSize.w1 me.rootNode.logicalSize.h1 = w.gocuiSize.h1 w.deleteView() w.drawView() w.showWidgetPlacement(logNow, "redoTabs()") } log(logVerbose, "redoTabs() about to for loop children", w.name) for _, child := range w.children { log(logVerbose, "redoTabs() got to child", child.name) child.redoTabs(draw) } }