move source files to src
This commit is contained in:
31
src/konstructor/screen.menu.go
Normal file
31
src/konstructor/screen.menu.go
Normal file
@@ -0,0 +1,31 @@
|
||||
package konstructor
|
||||
|
||||
import "image/color"
|
||||
|
||||
type MenuMapKey string
|
||||
|
||||
type MenuMap map[MenuMapKey]Menu
|
||||
|
||||
type MenuLayout struct {
|
||||
MenuItemFont FontLayout
|
||||
}
|
||||
|
||||
type MenuItem struct {
|
||||
ID string
|
||||
Label string
|
||||
Handler func()
|
||||
}
|
||||
|
||||
type Menu struct {
|
||||
CurrentSelected int
|
||||
Layout MenuLayout
|
||||
MenuItems []MenuItem
|
||||
}
|
||||
|
||||
func (menu *Menu) GetMenuItemColor(i int) color.Color {
|
||||
if menu.CurrentSelected == i {
|
||||
return menu.Layout.MenuItemFont.SelectedColor
|
||||
} else {
|
||||
return menu.Layout.MenuItemFont.Color
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user