101 lines
2.9 KiB
Python
101 lines
2.9 KiB
Python
# -*- python-mode -*-
|
|
|
|
## Copyright (C) 2012-2013 Daniel Pavel
|
|
##
|
|
## This program is free software; you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation; either version 2 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License along
|
|
## with this program; if not, write to the Free Software Foundation, Inc.,
|
|
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
from gi.repository import Gdk, Gtk
|
|
|
|
from solaar.i18n import _
|
|
|
|
from . import pair_window
|
|
from .common import error_dialog
|
|
|
|
# import logging
|
|
# logger = logging.getLogger(__name__)
|
|
|
|
#
|
|
#
|
|
#
|
|
|
|
|
|
def make(name, label, function, stock_id=None, *args):
|
|
action = Gtk.Action(name, label, label, None)
|
|
action.set_icon_name(name)
|
|
if stock_id is not None:
|
|
action.set_stock_id(stock_id)
|
|
if function:
|
|
action.connect("activate", function, *args)
|
|
return action
|
|
|
|
|
|
def make_toggle(name, label, function, stock_id=None, *args):
|
|
action = Gtk.ToggleAction(name, label, label, None)
|
|
action.set_icon_name(name)
|
|
if stock_id is not None:
|
|
action.set_stock_id(stock_id)
|
|
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)
|
|
|
|
|
|
def pair(window, receiver):
|
|
assert receiver
|
|
assert receiver.kind is None
|
|
|
|
pair_dialog = pair_window.create(receiver)
|
|
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 unpair(window, device):
|
|
assert device
|
|
assert device.kind is not None
|
|
|
|
qdialog = Gtk.MessageDialog(
|
|
window, 0, Gtk.MessageType.QUESTION, Gtk.ButtonsType.NONE, _("Unpair") + " " + device.name + " ?"
|
|
)
|
|
qdialog.set_icon_name("remove")
|
|
qdialog.add_button(_("Cancel"), Gtk.ResponseType.CANCEL)
|
|
qdialog.add_button(_("Unpair"), Gtk.ResponseType.ACCEPT)
|
|
choice = qdialog.run()
|
|
qdialog.destroy()
|
|
if choice == Gtk.ResponseType.ACCEPT:
|
|
receiver = device.receiver
|
|
assert receiver
|
|
device_number = device.number
|
|
|
|
try:
|
|
del receiver[device_number]
|
|
except Exception:
|
|
# logger.exception("unpairing %s", device)
|
|
error_dialog("unpair", device)
|