Buttons can now hide their text
This commit is contained in:
parent
6c46fc6f7c
commit
865dd20724
@ -24,15 +24,16 @@ type Button struct {
|
|||||||
config config.Wrapped
|
config config.Wrapped
|
||||||
theme theme.Wrapped
|
theme theme.Wrapped
|
||||||
|
|
||||||
hasIcon bool
|
showText bool
|
||||||
iconId theme.Icon
|
hasIcon bool
|
||||||
|
iconId theme.Icon
|
||||||
|
|
||||||
onClick func ()
|
onClick func ()
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewButton creates a new button with the specified label text.
|
// NewButton creates a new button with the specified label text.
|
||||||
func NewButton (text string) (element *Button) {
|
func NewButton (text string) (element *Button) {
|
||||||
element = &Button { }
|
element = &Button { showText: true }
|
||||||
element.theme.Case = theme.C("basic", "button")
|
element.theme.Case = theme.C("basic", "button")
|
||||||
element.Core, element.core = core.NewCore(element.drawAll)
|
element.Core, element.core = core.NewCore(element.drawAll)
|
||||||
element.FocusableCore,
|
element.FocusableCore,
|
||||||
@ -119,6 +120,14 @@ func (element *Button) ClearIcon () {
|
|||||||
element.drawAndPush()
|
element.drawAndPush()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ShowText sets whether or not the button's text will be displayed.
|
||||||
|
func (element *Button) ShowText (showText bool) {
|
||||||
|
if element.showText == showText { return }
|
||||||
|
element.showText = showText
|
||||||
|
element.updateMinimumSize()
|
||||||
|
element.drawAndPush()
|
||||||
|
}
|
||||||
|
|
||||||
// SetTheme sets the element's theme.
|
// SetTheme sets the element's theme.
|
||||||
func (element *Button) SetTheme (new theme.Theme) {
|
func (element *Button) SetTheme (new theme.Theme) {
|
||||||
if new == element.theme.Theme { return }
|
if new == element.theme.Theme { return }
|
||||||
@ -139,16 +148,25 @@ func (element *Button) SetConfig (new config.Config) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (element *Button) updateMinimumSize () {
|
func (element *Button) updateMinimumSize () {
|
||||||
textBounds := element.drawer.LayoutBounds()
|
|
||||||
padding := element.theme.Padding(theme.PatternButton)
|
padding := element.theme.Padding(theme.PatternButton)
|
||||||
margin := element.theme.Margin(theme.PatternButton)
|
margin := element.theme.Margin(theme.PatternButton)
|
||||||
minimumSize := padding.Inverse().Apply(textBounds)
|
var minimumSize image.Rectangle
|
||||||
minimumSize = minimumSize.Sub(minimumSize.Min)
|
|
||||||
|
if element.showText {
|
||||||
|
minimumSize = element.drawer.LayoutBounds()
|
||||||
|
}
|
||||||
|
|
||||||
|
minimumSize = padding.Inverse().Apply(minimumSize)
|
||||||
|
minimumSize = minimumSize.Sub(minimumSize.Min)
|
||||||
|
|
||||||
if element.hasIcon {
|
if element.hasIcon {
|
||||||
icon := element.theme.Icon(element.iconId, theme.IconSizeSmall)
|
icon := element.theme.Icon(element.iconId, theme.IconSizeSmall)
|
||||||
if icon != nil {
|
if icon != nil {
|
||||||
bounds := icon.Bounds()
|
bounds := icon.Bounds()
|
||||||
minimumSize.Max.X += margin.X + bounds.Dx()
|
minimumSize.Max.X += bounds.Dx()
|
||||||
|
if element.showText {
|
||||||
|
minimumSize.Max.X += margin.X
|
||||||
|
}
|
||||||
if minimumSize.Max.Y < bounds.Dy() {
|
if minimumSize.Max.Y < bounds.Dy() {
|
||||||
minimumSize.Max.Y = bounds.Dy()
|
minimumSize.Max.Y = bounds.Dy()
|
||||||
}
|
}
|
||||||
@ -192,24 +210,32 @@ func (element *Button) drawText () {
|
|||||||
foreground := element.theme.Color(theme.ColorForeground, state)
|
foreground := element.theme.Color(theme.ColorForeground, state)
|
||||||
sink := element.theme.Sink(theme.PatternButton)
|
sink := element.theme.Sink(theme.PatternButton)
|
||||||
margin := element.theme.Margin(theme.PatternButton)
|
margin := element.theme.Margin(theme.PatternButton)
|
||||||
|
var offset image.Point
|
||||||
|
|
||||||
textBounds := element.drawer.LayoutBounds()
|
if element.showText {
|
||||||
offset := image.Point {
|
textBounds := element.drawer.LayoutBounds()
|
||||||
X: bounds.Min.X + (bounds.Dx() - textBounds.Dx()) / 2,
|
offset = image.Point {
|
||||||
Y: bounds.Min.Y + (bounds.Dy() - textBounds.Dy()) / 2,
|
X: bounds.Min.X + (bounds.Dx() - textBounds.Dx()) / 2,
|
||||||
}
|
Y: bounds.Min.Y + (bounds.Dy() - textBounds.Dy()) / 2,
|
||||||
offset.Y -= textBounds.Min.Y
|
}
|
||||||
offset.X -= textBounds.Min.X
|
offset.Y -= textBounds.Min.Y
|
||||||
|
offset.X -= textBounds.Min.X
|
||||||
if element.pressed {
|
|
||||||
offset = offset.Add(sink)
|
if element.pressed {
|
||||||
|
offset = offset.Add(sink)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if element.hasIcon {
|
if element.hasIcon {
|
||||||
icon := element.theme.Icon(element.iconId, theme.IconSizeSmall)
|
icon := element.theme.Icon(element.iconId, theme.IconSizeSmall)
|
||||||
if icon != nil {
|
if icon != nil {
|
||||||
iconBounds := icon.Bounds()
|
iconBounds := icon.Bounds()
|
||||||
addedWidth := margin.X + iconBounds.Dx()
|
addedWidth := iconBounds.Dx()
|
||||||
|
|
||||||
|
if element.showText {
|
||||||
|
addedWidth += margin.X
|
||||||
|
}
|
||||||
|
|
||||||
iconOffset := offset
|
iconOffset := offset
|
||||||
iconOffset.X -= addedWidth / 2
|
iconOffset.X -= addedWidth / 2
|
||||||
iconOffset.Y =
|
iconOffset.Y =
|
||||||
|
Reference in New Issue
Block a user