// BuildMenu fills the menu with the given actions list. // func (o *Actions) BuildMenu(menu cdtype.Menuer, actionIds []int) { for _, ID := range actionIds { act := o.list[ID] var entry cdtype.MenuWidgeter switch act.Menu { case cdtype.MenuEntry: entry = menu.AddEntry(act.Name, act.Icon, o.Callback(act.ID)) case cdtype.MenuSeparator: menu.AddSeparator() case cdtype.MenuCheckBox: entry = menu.AddCheckEntry(act.Name, *act.Bool, o.Callback(act.ID)) if act.Call == nil { act.Call = func() { *act.Bool = !*act.Bool } } case cdtype.MenuRadioButton: entry = menu.AddRadioEntry(act.Name, *act.Bool, act.Group, o.Callback(act.ID)) // case cdtype.MenuSubMenu: } if entry != nil && act.Tooltip != "" { entry.SetTooltipText(act.Tooltip) } } }
// onSubBuildMenu fills the menu with stream actions: select device. // func (app *Applet) onSubBuildMenu(icon string, menu cdtype.Menuer) { // stream actions menu: select device. dev := app.pulse.Stream(dbus.ObjectPath(icon)) mute, _ := dev.Bool("Mute") menu.AddCheckEntry("Mute volume", mute, func() { toggleMute(dev) }) sel, es := dev.ObjectPath("Device") if log.Err(es) { return } app.menuAddDevices(menu, sel, "Output", func(sink dbus.ObjectPath) error { return dev.Call("Move", 0, sink).Err }) // Kill works but seem to leave the client app into a bugged state (same for stream or client kill). // app.menu.Append("Kill", func() { // // log.Err(dev.Call("Kill", 0).Err, "Kill") // kill stream. // client, ec := dev.ObjectPath("Client") // if ec != nil { // return // } // app.pulse.Client.Client(client).Call("Kill", 0) // kill client. // }) }
// onBuildMenu fills the menu with device actions: mute, mixer, select device. // func (app *Applet) onBuildMenu(menu cdtype.Menuer) { // device actions menu: mute, mixer, select device. mute, _ := app.pulse.Device(app.pulse.sink).Bool("Mute") menu.AddCheckEntry("Mute volume", mute, app.pulse.ToggleMute) if app.conf.MixerCommand != "" { menu.AddEntry("Open mixer", "multimedia-volume-control", app.Command().Callback(cmdMixer)) } app.menuAddDevices(menu, app.pulse.sink, "Managed device", app.pulse.SetSink) }
func (app *Applet) menuAddDevices(menu cdtype.Menuer, selected dbus.ObjectPath, title string, call func(dbus.ObjectPath) error) { sinks, _ := app.pulse.Core().ListPath("Sinks") if len(sinks) < 2 { // Only show the sinks list if we have at least 2 devices to switch between. return } menu.AddSeparator() menu.AddEntry(title, "audio-card", nil) menu.AddSeparator() for _, sink := range sinks { dev := app.pulse.Device(sink) sink := sink // make static reference of sink for the callback (we're in a range). v, e := dev.MapString("PropertyList") name := ternary.String(e == nil, v["device.description"], "unknown") menu.AddCheckEntry(name, sink == selected, func() { log.Err(call(sink)) }) } }