entity layer
This commit is contained in:
30
konstructor/entity/entity.dialog.go
Normal file
30
konstructor/entity/entity.dialog.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package entity
|
||||
|
||||
import "image/color"
|
||||
|
||||
type DialogMap map[string]Dialog
|
||||
|
||||
type DialogLayout struct {
|
||||
Background string
|
||||
ChoiceFont FontLayout
|
||||
}
|
||||
|
||||
type DialogChoice struct {
|
||||
ID string
|
||||
Label string
|
||||
Handler func()
|
||||
}
|
||||
|
||||
type Dialog struct {
|
||||
CurrentSelected int
|
||||
Layout DialogLayout
|
||||
Choices []DialogChoice
|
||||
}
|
||||
|
||||
func (dialog *Dialog) GetChoiceColor(i int) color.Color {
|
||||
if dialog.CurrentSelected == i {
|
||||
return dialog.Layout.ChoiceFont.SelectedColor
|
||||
} else {
|
||||
return dialog.Layout.ChoiceFont.Color
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user