1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
|
"""The profile management dialog."""
# Copyright (C) 2011, 2020 Stephen Fairchild
# (s-fairchild@users.sourceforge.net)
# 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 in the file entitled COPYING.
# If not, see <http://www.gnu.org/licenses/>.
__all__ = ["ProfileDialog"]
import os
import atexit
import gettext
# This is and needs to remain the initial gtk import point.
from gi.repository import Gtk
from gi.repository import GLib
from gi.repository import GObject
from gi.repository import Pango
from gi.repository import GdkPixbuf
from gi.repository import Gdk
from gi.repository import Gio
from idjc import PGlobs, FGlobs
from idjc.prelims import MAX_PROFILE_LENGTH, profile_name_valid, default
from ..utils import Singleton
from ..utils import cmp
from ..gtkstuff import ConfirmationDialog
from ..gtkstuff import ErrorMessageDialog
from ..gtkstuff import CellRendererLED
from ..gtkstuff import CellRendererTime
from ..gtkstuff import IconChooserButton
from ..gtkstuff import IconPreviewFileChooserDialog
from ..gtkstuff import timeout_add
t = gettext.translation(FGlobs.package_name, FGlobs.localedir, fallback=True)
_ = t.gettext
SESSION = os.getenv("XDG_SESSION_TYPE", "x11")
class ProfileEntry(Gtk.Entry):
_allowed = (65056, 65361, 65363, 65365, 65288, 65289, 65535)
def __init__(self):
Gtk.Entry.__init__(self)
self.set_max_length(MAX_PROFILE_LENGTH)
self.connect("key-press-event", self._cb_kp)
self.connect("button-press-event", self._cb_button)
def _cb_kp(self, widget, event):
if not event.keyval in self._allowed and not \
profile_name_valid(event.string):
return True
def _cb_button(self, widget, event):
if event.button != 1:
return True
class NewProfileDialog(Gtk.Dialog):
_icon_dialog = IconPreviewFileChooserDialog(title="Choose An Icon",
action=Gtk.FileChooserAction.OPEN)
_icon_dialog.add_button(_("Clear"), Gtk.ResponseType.NONE)
_icon_dialog.add_button(_("Cancel"), Gtk.ResponseType.CANCEL)
_icon_dialog.add_button(_("OK"), Gtk.ResponseType.OK)
def __init__(self, row, filter_function=None, title_extra = "", edit=False):
Gtk.Dialog.__init__(self)
self.set_border_width(6)
self.get_child().set_spacing(12)
self.set_modal(True)
self.set_destroy_with_parent(True)
self._icon_dialog.set_transient_for(self)
if row is not None:
if edit:
# TC: data entry dialog window title text. %s = profile name
title = _("Edit profile %s")
else:
# TC: data entry dialog window title text. %s = profile name
title = _("New profile based upon %s")
title %= row[1]
else:
# TC: data entry dialog window title text.
title = _("New profile details")
self.set_title(title + title_extra)
hbox = Gtk.HBox()
hbox.set_border_width(6)
hbox.set_spacing(12)
if edit:
icon_name = "document-edit-symbolic"
else:
icon_name = "edit-copy-symbolic" if row else "document-new-symbolic"
self.image = Gtk.Image.new_from_icon_name(icon_name, Gtk.IconSize.DIALOG)
self.image.set_halign(Gtk.Align.START)
self.image.set_valign(Gtk.Align.START)
hbox.pack_start(self.image, False)
table = Gtk.Grid()
table.set_row_spacing(4)
hbox.pack_start(table)
labels = (
# TC: data entry dialog label text.
_("Profile name"),
# TC: data entry dialog label text.
_("Icon") if SESSION != "wayland" else "",
# TC: data entry dialog label text.
_("Nickname"),
# TC: data entry dialog label text.
_("Description"))
names = ("profile_entry", "icon_button", "nickname_entry",
"description_entry")
icb = IconChooserButton(self._icon_dialog)
icb.set_no_show_all(SESSION == "wayland")
widgets = (ProfileEntry(), icb, Gtk.Entry(), Gtk.Entry())
for i, (label, name, widget) in enumerate(zip(labels, names, widgets)):
label = Gtk.Label.new(label)
label.set_xalign(1.0)
label.set_margin_end(4)
table.attach(label, 0, i, 1, 1)
table.attach(widget, 1, i, 1, 1)
widget.set_hexpand(True)
setattr(self, name, widget)
self.profile_entry.set_width_chars(30)
self.get_content_area().add(hbox)
if row is not None:
profile = row[1] if edit else ""
profile_text = row[1] if edit else ""
self.profile_entry.set_text(profile_text)
self.icon_button.set_filename(row[4])
self.nickname_entry.set_text(row[5])
self.description_entry.set_text(row[2])
self.profile_entry.grab_focus()
else:
self.icon_button.set_filename(PGlobs.default_icon)
if edit:
if self.profile_entry.get_text() == default:
self.profile_entry.set_sensitive(False)
self.delete = Gtk.Button(label=_("Delete"))
self.delete.connect_after("clicked", lambda w: self.destroy())
self.add_action_widget(self.delete, Gtk.ResponseType.NONE)
cancel = Gtk.Button(label=_("Cancel"))
cancel.connect("clicked", lambda w: self.destroy())
self.add_action_widget(cancel, Gtk.ResponseType.NONE)
self.ok = Gtk.Button(label=_("OK"))
self.add_action_widget(self.ok, Gtk.ResponseType.NONE)
@classmethod
def append_dialog_title(cls, text):
cls._icon_dialog.set_title(cls._icon_dialog.get_title() + text)
class ProfileSingleton(Singleton, type(Gtk.Dialog)):
def __call__(cls, *args, **kwds):
return super(ProfileSingleton, cls).__call__(*args, **kwds)
class ProfileDialog(Gtk.Dialog, metaclass=ProfileSingleton):
__gproperties__ = { "selection-active" : (GObject.TYPE_BOOLEAN,
"selection active",
"selected profile is active",
0, GObject.ParamFlags.READABLE),
"selection": (str, "profile selection",
"profile selected in profile manager",
"", MAX_PROFILE_LENGTH)
}
_signal_names = "choose", "delete", "auto"
_new_profile_dialog_signal_names = "new", "clone", "edit"
__gsignals__ = { "selection-active-changed" : (
GObject.SignalFlags.RUN_FIRST, GObject.TYPE_NONE,
(str, GObject.TYPE_BOOLEAN,)),
"selection-changed" : (
GObject.SignalFlags.RUN_FIRST, GObject.TYPE_NONE,
(str,))
}
__gsignals__.update(dict(
(x, (GObject.SignalFlags.RUN_FIRST, GObject.TYPE_NONE,
(GObject.TYPE_STRING,))) for x in (_signal_names)))
__gsignals__.update(dict(
(x, (GObject.SignalFlags.RUN_FIRST, GObject.TYPE_NONE,
(GObject.TYPE_STRING,) * 5))
for x in (_new_profile_dialog_signal_names)))
@property
def profile(self):
return self._profile
def __init__(self, default, data_function=None):
self._default = default
self._profile = self._highlighted = None
self._selection_active = False
self._olddata = ()
self._title_extra = ""
# TC: profile dialog window title text.
Gtk.Dialog.__init__(self, title=_("IDJC Profile Manager"))
self.set_border_width(6)
w = Gtk.ScrolledWindow()
w.set_margin_bottom(5)
w.set_size_request(600, 300)
w.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC)
self.get_content_area().add(w)
self.store = Gtk.ListStore(GdkPixbuf.Pixbuf, str, str, int,
str, str, int, int)
self.sorted = Gtk.TreeModelSort(model=self.store)
self.sorted.set_sort_func(1, self._sort_func)
self.sorted.set_sort_column_id(1, Gtk.SortType.ASCENDING)
self.treeview = Gtk.TreeView(model=self.sorted)
self.treeview.set_headers_visible(True)
w.add(self.treeview)
autorend = Gtk.CellRendererToggle()
autorend.set_activatable(True)
autorend.connect("toggled", self._cb_autorend_toggle)
pbrend = Gtk.CellRendererPixbuf()
pbrend.props.width = 16
strrend = Gtk.CellRendererText()
ledrend = CellRendererLED()
time_rend = CellRendererTime()
strrend_ellip = Gtk.CellRendererText()
strrend_ellip.props.ellipsize = Pango.EllipsizeMode.END
# TC: column heading. The available profile names appears below.
c0 = Gtk.TreeViewColumn(None, autorend, active=7)
image = Gtk.Image.new_from_icon_name("document-open-symbolic", Gtk.IconSize.MENU)
c0.set_widget(image)
image.show()
self.treeview.append_column(c0)
c1 = Gtk.TreeViewColumn(_("Profile"))
if SESSION != "wayland":
c1.pack_start(pbrend, expand=False)
c1.add_attribute(pbrend, "pixbuf", 0)
c1.pack_start(strrend, expand=True)
c1.add_attribute(strrend, "text", 1)
c1.set_spacing(2)
self.treeview.append_column(c1)
# TC: column heading. The profile nicknames.
c2 = Gtk.TreeViewColumn(_("Nickname"), strrend, text=5)
self.treeview.append_column(c2)
# TC: column heading.
c3 = Gtk.TreeViewColumn(_("Description"), strrend_ellip, text=2)
c3.set_expand(True)
self.treeview.append_column(c3)
# TC: column heading. The time a particular profile has been running.
c4 = Gtk.TreeViewColumn(_("Up-time"))
c4.pack_start(ledrend, expand=True)
c4.pack_start(time_rend, expand=True)
c4.add_attribute(ledrend, "active", 3)
c4.add_attribute(time_rend, "time", 6)
c4.set_spacing(2)
self.treeview.append_column(c4)
self.selection = self.treeview.get_selection()
self.selection.connect("changed", self._cb_selection)
box = Gtk.ButtonBox()
box.set_spacing(6)
box.set_layout(Gtk.ButtonBoxStyle.END)
for attr, icon_name, sec in zip(
("new", "clone", "edit", "delete", "cancel", "choose"),
("document-new-symbolic",
"edit-copy-symbolic",
"document-edit-symbolic",
"document-delete-symbolic",
"window-close-symbolic",
"system-run-symbolic"),
(True,) * 4 + (False,) * 2):
w = Gtk.Button.new_from_icon_name(icon_name, Gtk.IconSize.BUTTON)
box.add(w)
box.set_child_secondary(w, sec)
setattr(self, attr, w)
self.get_content_area().add(box)
self.delete.set_no_show_all(True)
self.cancel.connect("clicked", self._cb_cancel)
self.set_data_function(data_function)
self.connect("notify::visible", self._cb_visible)
for each in "choose", "delete":
getattr(self, each).connect("clicked", self._cb_click, each)
for each in self._new_profile_dialog_signal_names:
getattr(self, each).connect("clicked", self._cb_new_profile_dialog,
each)
def display_error(self, message, transient_parent=None, markup=False):
error_dialog = ErrorMessageDialog("", message, markup=markup)
error_dialog.set_transient_for(transient_parent or self)
error_dialog.show_all()
def destroy_new_profile_dialog(self):
self._new_profile_dialog.destroy()
del self._new_profile_dialog
def get_new_profile_dialog(self):
return self._new_profile_dialog
def do_get_property(self, prop):
if prop.name == "selection-active":
return self._selection_active
elif prop.name == "selection":
return self._highlighted
else:
raise AttributeError("unknown property: %s" % prop.name)
def do_selection_active_changed(self, profile, state):
state = not state
self.choose.set_sensitive(state)
self.edit.set_sensitive(state)
self.clone.set_sensitive(state)
def _cb_autorend_toggle(self, *args):
self.emit("auto", self._highlighted)
def _cb_click(self, widget, signal):
if self._highlighted is not None:
def commands():
self.emit(signal, self._highlighted)
self._update_data()
if signal == "delete":
if self._highlighted == self._default:
message = _("<span weight='bold' size='12000'>Delete the"
" data of profile '%s'?</span>\n\nThe profile will"
" be recreated with initial settings.")
else:
message = _("<span weight='bold' size='12000'>Delete "
"profile '%s' and all of its data?</span>\n\nThis"
" action cannot be undone.")
conf = ConfirmationDialog("", message % self._highlighted,
markup=True)
conf.set_transient_for(self)
conf.ok.connect("clicked", lambda w: commands())
conf.show_all()
else:
commands()
def _cb_new_profile_dialog(self, widget, action):
if action in ("clone", "edit"):
if self._highlighted is None:
return
row = self._get_row_for_profile(self._highlighted)
template = row[1]
else:
row = None
template = None
np_dialog = self._new_profile_dialog = NewProfileDialog(row,
title_extra = self._title_extra, edit=action=="edit")
np_dialog.set_transient_for(self)
def sub_ok(widget):
profile = np_dialog.profile_entry.get_text()
icon = np_dialog.icon_button.get_filename()
description = np_dialog.description_entry.get_text().strip()
nickname = np_dialog.nickname_entry.get_text().strip()
self.emit(action, profile, template, icon, nickname, description)
self._update_data()
self.highlight_profile(profile)
np_dialog.ok.connect("clicked", sub_ok)
if action == "edit":
np_dialog.delete.connect("clicked", lambda w: self.delete.clicked())
np_dialog.show_all()
def _cb_cancel(self, widget):
if self._profile is None:
self.response(0)
else:
self.hide()
def _cb_delete_event(self, widget, event):
self.hide()
return True
def _cb_visible(self, *args):
self._update_data()
if self.props.visible:
timeout_add(200, self._update_data)
def _cb_selection(self, ts):
model, iter = ts.get_selected()
if iter is not None:
highlighted = model.get_value(iter, 1)
active = model.get_value(iter, 3)
else:
highlighted = None
active = False
if highlighted != self._highlighted:
self._highlighted = highlighted
self.emit("selection-changed", self._highlighted)
if active != self._selection_active:
self._selection_active = active
self.emit("selection-active-changed", self._highlighted, active)
def highlight_profile(self, target, scroll=True):
i = self._get_index_for_profile(target)
if i is None:
i = self._get_index_for_profile("default")
if i is not None:
self.selection.select_path(i)
if scroll:
self.selection.get_tree_view().scroll_to_cell(i)
def _get_index_for_profile(self, target):
for i, data in enumerate(self.sorted):
if data[1] == target:
return i
return None
def _get_row_for_profile(self, target):
path = self._get_index_for_profile(target)
if path is not None:
return list(self.sorted[path])
else:
return None
def _sort_func(self, model, *iters):
vals = tuple(model.get_value(x, 1) for x in iters if x is not None)
try:
return vals.index(self._default)
except ValueError:
return cmp(*vals)
def set_data_function(self, f):
self._data_function = f
self._update_data()
if f is not None:
self.highlight_profile(self._default)
def _auto_data_function(self, col, cell, model, iter):
val = model.get_value(iter, 7)
cell.set_active(val)
def _update_data(self):
if self._data_function is not None:
data = tuple(self._data_function())
if self._olddata != data:
self._olddata = data
h = self._highlighted
self.selection.handler_block_by_func(self._cb_selection)
self.store.clear()
for d in data:
if d["icon"] is not None:
i = d["icon"]
else:
if d["profile"] == self._default:
i = PGlobs.default_icon
else:
i = None
if i is not None:
try:
pb = GdkPixbuf.Pixbuf.new_from_file_at_size(i, 16, 16)
except GLib.GError:
pb = i = None
else:
pb = None
desc = d["description"] or ""
active = d["active"]
nick = d["nickname"] or ""
uptime = d["uptime"]
auto = d["auto"]
self.store.append((pb, d["profile"], desc, active, i or "",
nick, uptime, auto))
self.selection.handler_unblock_by_func(self._cb_selection)
self.highlight_profile(h, scroll=False)
return self.props.visible
def set_profile(self, newprofile, title_extra, iconpathname):
assert self._profile is None
self.hide()
self._profile = newprofile
self.highlight_profile(newprofile, scroll=True)
self.set_title(self.get_title() + title_extra)
NewProfileDialog.append_dialog_title(title_extra)
self._title_extra = title_extra
try:
self.set_icon_from_file(iconpathname)
except GLib.GError:
print("Profile icon image file not found:", iconpathname)
else:
Gtk.Window.set_default_icon_from_file(iconpathname)
self.connect("delete-event", self._cb_delete_event)
self.response(0)
def run(self):
if self._profile is None:
self.show_all()
try:
Gtk.Dialog.run(self)
except KeyboardInterrupt:
pass
else:
self.show()
def present(self):
self.show_all()
|