/usr/share/pyshared/quodlibet/qltk/properties.py is in exfalso 3.0.2-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # -*- coding: utf-8 -*-
# Copyright 2004-2005 Joe Wreschnig, Michael Urman, IƱigo Serna
# 2012 Nick Boultbee
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation
from gi.repository import Gtk, GObject, Pango
from quodlibet import qltk
from quodlibet import util
from quodlibet import config
from quodlibet.qltk.edittags import EditTags
from quodlibet.qltk.renamefiles import RenameFiles
from quodlibet.qltk.tagsfrompath import TagsFromPath
from quodlibet.qltk.tracknumbers import TrackNumbers
from quodlibet.qltk.views import HintedTreeView
from quodlibet.qltk.window import PersistentWindowMixin
class SongProperties(qltk.Window, PersistentWindowMixin):
__gsignals__ = {
'changed': (GObject.SignalFlags.RUN_LAST, None, (object,))
}
def __init__(self, library, songs, parent=None):
super(SongProperties, self).__init__(dialog=False)
self.set_transient_for(qltk.get_top_parent(parent))
default_width = 600
config_suffix = ""
if len(songs) <= 1:
default_width -= 200
config_suffix += "single"
self.set_default_size(default_width, 400)
self.enable_window_tracking("quodlibet_properties",
size_suffix=config_suffix)
self.auto_save_on_change = config.getboolean(
'editing', 'auto_save_changes', False)
paned = Gtk.HPaned()
notebook = qltk.Notebook()
pages = []
pages.extend([Ctr(self, library) for Ctr in
[EditTags, TagsFromPath, RenameFiles]])
if len(songs) > 1:
pages.append(TrackNumbers(self, library))
for page in pages:
notebook.append_page(page)
self.set_border_width(12)
fbasemodel = Gtk.ListStore(object, str)
fmodel = Gtk.TreeModelSort(model=fbasemodel)
fview = HintedTreeView(fmodel)
fview.connect('button-press-event', self.__pre_selection_changed)
fview.set_rules_hint(True)
selection = fview.get_selection()
selection.set_mode(Gtk.SelectionMode.MULTIPLE)
self.__save = None
if len(songs) > 1:
render = Gtk.CellRendererText()
c1 = Gtk.TreeViewColumn(_('File'), render, text=1)
render.set_property('ellipsize', Pango.EllipsizeMode.END)
c1.set_sort_column_id(1)
fview.append_column(c1)
sw = Gtk.ScrolledWindow()
sw.add(fview)
sw.set_shadow_type(Gtk.ShadowType.IN)
sw.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC)
sw.show_all()
paned.pack1(sw, shrink=False, resize=True)
# Invisible selections behave a little strangely. So, when
# handling this selection, there's a lot of if len(model) == 1
# checks that "hardcode" the first row being selected.
for song in songs:
fbasemodel.append(row=[song, util.fsdecode(song("~basename"))])
self.connect_object('changed', SongProperties.__set_title, self)
selection.select_all()
paned.pack2(notebook, shrink=False, resize=True)
csig = selection.connect('changed', self.__selection_changed)
s1 = library.connect(
'changed', self.__refresh, fbasemodel, fview)
s2 = library.connect(
'removed', self.__remove, fbasemodel, selection, csig)
self.connect_object('destroy', library.disconnect, s1)
self.connect_object('destroy', library.disconnect, s2)
self.connect_object('changed', self.set_pending, None)
self.emit('changed', songs)
self.add(paned)
paned.set_position(175)
notebook.show()
paned.show()
self.show()
def __remove(self, library, songs, model, selection, sig):
# If the handler is unblocked, then the selection gets updated
# with some half-gone rows and we get a null-type error. So,
# block the changed handler. Instead, track changes manually.
# We can't just unconditionally emit a changed signal on the
# selection or we risk voiding edits on a selection that
# doesn't include the removed songs.
selection.handler_block(sig)
if len(model) == 1:
rows = [Gtk.TreePath((0,))]
else:
rows = selection.get_selected_rows()[1]
to_remove = []
changed = False
for row in model:
if row[0] in songs:
to_remove.append(row.iter)
changed = changed or (row.path in rows)
map(model.remove, to_remove)
selection.handler_unblock(sig)
if changed:
selection.emit('changed')
def __set_title(self, songs):
if songs:
if len(songs) == 1:
title = songs[0].comma("title")
else:
title = ngettext(
"%(title)s and %(count)d more",
"%(title)s and %(count)d more",
len(songs) - 1) % {'title': songs[0].comma("title"),
'count': len(songs) - 1}
self.set_title("%s - %s" % (title, _("Properties")))
else:
self.set_title(_("Properties"))
def __refresh(self, library, songs, model, view):
view.freeze_notify()
if len(model) == 1:
rows = [Gtk.TreePath((0,))]
else:
rows = view.get_selection().get_selected_rows()[1]
changed = False
for row in model:
song = row[0]
if song in songs:
row[1] = song("~basename")
changed = changed or (row.path in rows)
view.thaw_notify()
if changed:
view.get_selection().emit('changed')
def set_pending(self, button, *excess):
self.__save = button
def __pre_selection_changed(self, view, event):
if self.__save:
if self.auto_save_on_change:
self.__save.clicked()
return
resp = qltk.CancelRevertSave(self).run()
if resp == Gtk.ResponseType.YES:
self.__save.clicked()
elif resp == Gtk.ResponseType.NO:
return False
else:
return True # cancel or closed
def __selection_changed(self, selection):
model = selection.get_tree_view().get_model()
if len(model) == 1:
self.emit('changed', [model[(0,)][0]])
else:
model, rows = selection.get_selected_rows()
songs = [model[row][0] for row in rows]
self.emit('changed', songs)
|