example usage of popup menu in the bluetooth module.
This commit is contained in:
parent
2e152d1be4
commit
85ec7c4331
1 changed files with 22 additions and 3 deletions
|
@ -14,6 +14,8 @@ import bumblebee.input
|
||||||
import bumblebee.output
|
import bumblebee.output
|
||||||
import bumblebee.engine
|
import bumblebee.engine
|
||||||
import bumblebee.util
|
import bumblebee.util
|
||||||
|
import bumblebee.popup
|
||||||
|
import logging
|
||||||
|
|
||||||
|
|
||||||
class Module(bumblebee.engine.Module):
|
class Module(bumblebee.engine.Module):
|
||||||
|
@ -34,7 +36,7 @@ class Module(bumblebee.engine.Module):
|
||||||
cmd=self.manager)
|
cmd=self.manager)
|
||||||
engine.input.register_callback(self,
|
engine.input.register_callback(self,
|
||||||
button=bumblebee.input.RIGHT_MOUSE,
|
button=bumblebee.input.RIGHT_MOUSE,
|
||||||
cmd=self.toggle)
|
cmd=self.popup)
|
||||||
|
|
||||||
def status(self, widget):
|
def status(self, widget):
|
||||||
"""Get status."""
|
"""Get status."""
|
||||||
|
@ -69,14 +71,31 @@ class Module(bumblebee.engine.Module):
|
||||||
"""Launch manager."""
|
"""Launch manager."""
|
||||||
bumblebee.util.execute(self.manager)
|
bumblebee.util.execute(self.manager)
|
||||||
|
|
||||||
def toggle(self, widget):
|
def popup(self, widget):
|
||||||
|
"""Show a popup menu."""
|
||||||
|
menu = bumblebee.popup.PopupMenu()
|
||||||
|
if self._status == "On":
|
||||||
|
menu.add_menuitem('Disable Bluetooth')
|
||||||
|
elif self._status == "Off":
|
||||||
|
menu.add_menuitem('Enable Bluetooth')
|
||||||
|
else:
|
||||||
|
return
|
||||||
|
|
||||||
|
# show menu and get return code
|
||||||
|
ret = menu.show(widget)
|
||||||
|
if ret == 0:
|
||||||
|
logging.debug('bt: toggling bluetooth')
|
||||||
|
# first (and only) item selected.
|
||||||
|
self._toggle()
|
||||||
|
|
||||||
|
def _toggle(self):
|
||||||
"""Toggle bluetooth state."""
|
"""Toggle bluetooth state."""
|
||||||
if self._status == "On":
|
if self._status == "On":
|
||||||
state = "false"
|
state = "false"
|
||||||
else:
|
else:
|
||||||
state = "true"
|
state = "true"
|
||||||
|
|
||||||
cmd = "dbus-send --system --dest=org.blueman.Mechanism"\
|
cmd = "dbus-send --system --print-reply --dest=org.blueman.Mechanism"\
|
||||||
" / org.blueman.Mechanism.SetRfkillState"\
|
" / org.blueman.Mechanism.SetRfkillState"\
|
||||||
" boolean:{}".format(state)
|
" boolean:{}".format(state)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue