81 lines
2.1 KiB
Python
81 lines
2.1 KiB
Python
#
|
|
#
|
|
#
|
|
|
|
from __future__ import absolute_import, division, print_function, unicode_literals
|
|
|
|
from gi.repository import Gtk, Gdk
|
|
|
|
|
|
def make(name, label, function, *args):
|
|
action = Gtk.Action(name, label, label, None)
|
|
action.set_icon_name(name)
|
|
if function:
|
|
action.connect('activate', function, *args)
|
|
return action
|
|
|
|
|
|
def make_toggle(name, label, function, *args):
|
|
action = Gtk.ToggleAction(name, label, label, None)
|
|
action.set_icon_name(name)
|
|
action.connect('activate', function, *args)
|
|
return action
|
|
|
|
#
|
|
#
|
|
#
|
|
|
|
# def _toggle_notifications(action):
|
|
# if action.get_active():
|
|
# notify.init('Solaar')
|
|
# else:
|
|
# notify.uninit()
|
|
# action.set_sensitive(notify.available)
|
|
# toggle_notifications = make_toggle('notifications', 'Notifications', _toggle_notifications)
|
|
|
|
|
|
from .about import show_window as _show_about_window
|
|
from solaar import NAME
|
|
about = make('help-about', 'About ' + NAME, _show_about_window)
|
|
|
|
#
|
|
#
|
|
#
|
|
|
|
from . import pair_window
|
|
def _pair_device(action, frame):
|
|
window = frame.get_toplevel()
|
|
|
|
pair_dialog = pair_window.create(action, frame._device)
|
|
pair_dialog.set_transient_for(window)
|
|
pair_dialog.set_destroy_with_parent(True)
|
|
pair_dialog.set_modal(True)
|
|
pair_dialog.set_type_hint(Gdk.WindowTypeHint.DIALOG)
|
|
pair_dialog.set_position(Gtk.WindowPosition.CENTER)
|
|
pair_dialog.present()
|
|
|
|
def pair(frame):
|
|
return make('list-add', 'Pair new device', _pair_device, frame)
|
|
|
|
|
|
from ..ui import error_dialog
|
|
def _unpair_device(action, frame):
|
|
window = frame.get_toplevel()
|
|
device = frame._device
|
|
qdialog = Gtk.MessageDialog(window, 0,
|
|
Gtk.MessageType.QUESTION, Gtk.ButtonsType.NONE,
|
|
"Unpair device\n%s ?" % device.name)
|
|
qdialog.set_icon_name('remove')
|
|
qdialog.add_button(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL)
|
|
qdialog.add_button('Unpair', Gtk.ResponseType.ACCEPT)
|
|
choice = qdialog.run()
|
|
qdialog.destroy()
|
|
if choice == Gtk.ResponseType.ACCEPT:
|
|
try:
|
|
del device.receiver[device.number]
|
|
except:
|
|
error_dialog(window, 'Unpairing failed', 'Failed to unpair device\n%s .' % device.name)
|
|
|
|
def unpair(frame):
|
|
return make('edit-delete', 'Unpair', _unpair_device, frame)
|