mirror of
https://github.com/ivanizag/izapple2.git
synced 2025-01-11 04:29:41 +00:00
27 lines
454 B
Go
27 lines
454 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fyne.io/fyne"
|
||
|
"fyne.io/fyne/theme"
|
||
|
"fyne.io/fyne/widget"
|
||
|
)
|
||
|
|
||
|
type toolbarDisk struct {
|
||
|
name string
|
||
|
}
|
||
|
|
||
|
func newToolbarDisk(name string) *toolbarDisk {
|
||
|
var tbd toolbarDisk
|
||
|
tbd.name = name
|
||
|
return &tbd
|
||
|
}
|
||
|
|
||
|
func (tbd *toolbarDisk) ToolbarObject() fyne.CanvasObject {
|
||
|
return widget.NewHBox(
|
||
|
widget.NewIcon(theme.VolumeUpIcon()),
|
||
|
widget.NewLabel(tbd.name),
|
||
|
widget.NewLabel("track 12"),
|
||
|
widget.NewButton("eject", nil),
|
||
|
)
|
||
|
}
|