/usr/share/pyshared/quodlibet/qltk/quodlibetwindow.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 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 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 | # -*- coding: utf-8 -*-
# Copyright 2004-2005 Joe Wreschnig, Michael Urman, IƱigo Serna
# 2012 Christoph Reiter
#
# 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
import os
import sys
from gi.repository import Gtk, GObject, Gdk, GLib, Gio
from quodlibet import browsers
from quodlibet import config
from quodlibet import const
from quodlibet import formats
from quodlibet import qltk
from quodlibet import util
from quodlibet import app
from quodlibet.formats.remote import RemoteFile
from quodlibet.qltk.browser import LibraryBrowser
from quodlibet.qltk.chooser import FolderChooser, FileChooser
from quodlibet.qltk.controls import PlayControls
from quodlibet.qltk.cover import CoverImage
from quodlibet.qltk.getstring import GetStringDialog
from quodlibet.qltk.info import SongInfo
from quodlibet.qltk.information import Information
from quodlibet.qltk.logging import LoggingWindow
from quodlibet.qltk.msg import ErrorMessage
from quodlibet.qltk.notif import StatusBar, TaskController
from quodlibet.qltk.playorder import PlayOrder
from quodlibet.qltk.pluginwin import PluginWindow
from quodlibet.qltk.properties import SongProperties
from quodlibet.qltk.prefs import PreferencesWindow
from quodlibet.qltk.queue import QueueExpander
from quodlibet.qltk.songlist import SongList
from quodlibet.qltk.songmodel import PlaylistMux
from quodlibet.qltk.x import RPaned, ConfigRVPaned, Alignment, ScrolledWindow
from quodlibet.qltk.about import AboutQuodLibet
from quodlibet.util import copool, gobject_weak
from quodlibet.util.uri import URI
from quodlibet.util.library import background_filter, scan_libary
from quodlibet.qltk.window import PersistentWindowMixin
class MainSongList(SongList):
# The SongList that represents the current playlist.
class CurrentColumn(Gtk.TreeViewColumn):
# Displays the current song indicator, either a play or pause icon.
header_name = "~current"
__last_name = None
def _cdf(self, column, cell, model, iter, data):
PLAY = "media-playback-start"
PAUSE = "media-playback-pause"
STOP = "media-playback-stop"
ERROR = "dialog-error"
row = model[iter]
song = row[0]
if row.path == model.current_path:
if model.sourced:
name = [PLAY, PAUSE][app.player.paused]
else:
name = STOP
elif song("~errors"):
name = ERROR
else:
name = None
if self.__last_name == name:
return
self.__last_name = name
if name is not None:
gicon = Gio.ThemedIcon.new_from_names(
[name + "-symbolic", name])
else:
gicon = None
cell.set_property('gicon', gicon)
def __init__(self):
self._render = Gtk.CellRendererPixbuf()
self._render.set_property('xalign', 0.5)
super(MainSongList.CurrentColumn, self).__init__("", self._render)
self.set_sizing(Gtk.TreeViewColumnSizing.FIXED)
self.set_fixed_width(24)
self.set_cell_data_func(self._render, self._cdf)
self.header_name = "~current"
_activated = False
def __init__(self, library, player):
super(MainSongList, self).__init__(library, player, update=True)
self.connect_object('row-activated', self.__select_song, player)
# ugly.. so the main window knows if the next song-started
# comes from an row-activated or anything else.
def reset_activated(*args):
self._activated = False
s = player.connect_after('song-started', reset_activated)
self.connect_object('destroy', player.disconnect, s)
def __select_song(self, player, indices, col):
self._activated = True
iter = self.model.get_iter(indices)
if player.go_to(iter, True):
player.paused = False
def set_sort_by(self, *args, **kwargs):
super(MainSongList, self).set_sort_by(*args, **kwargs)
tag, reverse = self.get_sort_by()
config.set('memory', 'sortby', "%d%s" % (int(reverse), tag))
class SongListScroller(ScrolledWindow):
def __init__(self, menu):
super(SongListScroller, self).__init__()
self.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.ALWAYS)
self.set_shadow_type(Gtk.ShadowType.IN)
self.connect_object('notify::visible', self.__visibility, menu)
def __visibility(self, menu, event):
value = self.get_property('visible')
menu.set_active(value)
config.set("memory", "songlist", str(value))
class TopBar(Gtk.HBox):
def __init__(self, parent, player, library):
super(TopBar, self).__init__(spacing=3)
# play controls
t = PlayControls(player, library.librarian)
self.volume = t.volume
self.pack_start(t, False, False, 0)
# song text
text = SongInfo(library.librarian, player)
self.pack_start(Alignment(text, border=3), True, True, 0)
# cover image
self.image = CoverImage(resize=True)
gobject_weak(player.connect, 'song-started', self.__new_song,
parent=self)
gobject_weak(parent.connect, 'artwork-changed',
self.__song_art_changed, library, parent=self)
self.pack_start(self.image, False, True, 0)
def __new_song(self, player, song):
self.image.set_song(song)
def __song_art_changed(self, player, songs, library):
self.image.refresh()
refresh_albums = []
for song in songs:
# Album browser only (currently):
album = library.albums.get(song.album_key, None)
if album:
album.scan_cover(force=True)
refresh_albums.append(album)
if refresh_albums:
library.albums.refresh(refresh_albums)
class StatusBarBox(Gtk.HBox):
def __init__(self, model, player):
super(StatusBarBox, self).__init__(spacing=12)
self.order = order = PlayOrder(model, player)
hb = Gtk.HBox(spacing=6)
label = Gtk.Label(label=_("_Order:"))
label.set_mnemonic_widget(order)
label.set_use_underline(True)
hb.pack_start(label, True, True, 0)
hb.pack_start(order, True, True, 0)
self.pack_start(hb, False, True, 0)
self.repeat = repeat = qltk.ccb.ConfigCheckButton(
_("_Repeat"), "settings", "repeat")
repeat.set_tooltip_text(_("Restart the playlist when finished"))
self.pack_start(repeat, False, True, 0)
repeat.connect('toggled', self.__repeat, model)
repeat.set_active(config.getboolean('settings', 'repeat'))
self.statusbar = StatusBar(TaskController.default_instance)
self.pack_start(self.statusbar, True, True, 0)
def __repeat(self, button, model):
model.repeat = button.get_active()
DND_URI_LIST, = range(1)
class QuodLibetWindow(Gtk.Window, PersistentWindowMixin):
SIG_PYOBJECT = (GObject.SignalFlags.RUN_LAST, None, (object,))
__gsignals__ = {
'artwork-changed': SIG_PYOBJECT,
}
def __init__(self, library, player):
super(QuodLibetWindow, self).__init__()
self.last_dir = const.HOME
self.__update_title(player)
self.set_default_size(550, 450)
main_box = Gtk.VBox()
self.add(main_box)
# create main menubar, load/restore accelerator groups
self.__library = library
self.__create_menu(player, library)
self.add_accel_group(self.ui.get_accel_group())
accel_fn = os.path.join(const.USERDIR, "accels")
Gtk.AccelMap.load(accel_fn)
accelgroup = Gtk.accel_groups_from_object(self)[0]
GObject.Object.connect(accelgroup, 'accel-changed',
lambda *args: Gtk.AccelMap.save(accel_fn))
main_box.pack_start(self.ui.get_widget("/Menu"), False, True, 0)
# get the playlist up before other stuff
self.songlist = MainSongList(library, player)
self.songlist.show_all()
self.add_accel_group(self.songlist.accelerators)
self.songlist.connect_after(
'drag-data-received', self.__songlist_drag_data_recv)
self.song_scroller = SongListScroller(
self.ui.get_widget("/Menu/View/SongList"))
self.song_scroller.add(self.songlist)
self.qexpander = QueueExpander(
self.ui.get_widget("/Menu/View/Queue"), library, player)
self.playlist = PlaylistMux(
player, self.qexpander.model, self.songlist.model)
top_bar = TopBar(self, player, library)
top_align = Alignment(top_bar, border=3, bottom=-3)
main_box.pack_start(top_align, False, True, 0)
self.__browserbox = Alignment(top=3, bottom=3)
main_box.pack_start(self.__browserbox, True, True, 0)
statusbox = StatusBarBox(self.songlist.model, player)
self.order = statusbox.order
self.repeat = statusbox.repeat
self.statusbar = statusbox.statusbar
main_box.pack_start(Alignment(statusbox, border=3, top=-3),
False, True, 0)
self.songpane = ConfigRVPaned("memory", "queue_position", 0.75)
self.songpane.pack1(self.song_scroller, resize=True, shrink=False)
self.songpane.pack2(self.qexpander, resize=True, shrink=False)
self.__handle_position = self.songpane.get_property("position")
self.song_scroller.connect('notify::visible', self.__show_or)
self.qexpander.connect('notify::visible', self.__show_or)
self.qexpander.connect('notify::expanded', self.__expand_or)
self.qexpander.connect('draw', self.__qex_size_allocate)
self.songpane.connect('notify', self.__moved_pane_handle)
sort = config.get('memory', 'sortby')
self.songlist.set_sort_by(None, sort[1:], order=int(sort[0]))
self.browser = None
main_box.show_all()
try:
self.select_browser(
self, config.get("memory", "browser"), library, player, True)
except:
config.set("memory", "browser", browsers.name(0))
config.save(const.CONFIG)
raise
# set at least the playlist before the mainloop starts..
player.setup(self.playlist, None, 0)
def delayed_song_set():
song = library.get(config.get("memory", "song"))
seek_pos = config.getint("memory", "seek")
config.set("memory", "seek", 0)
player.setup(self.playlist, song, seek_pos)
self.__delayed_setup = GLib.idle_add(delayed_song_set)
self.showhide_playlist(self.ui.get_widget("/Menu/View/SongList"))
self.showhide_playqueue(self.ui.get_widget("/Menu/View/Queue"))
self.songlist.connect('popup-menu', self.__songs_popup_menu)
self.songlist.connect('columns-changed', self.__cols_changed)
self.songlist.connect('columns-changed', self.__hide_headers)
self.songlist.info.connect("changed", self.__set_time)
lib = library.librarian
gobject_weak(lib.connect_object, 'changed', self.__song_changed,
player, parent=self)
player_sigs = [
('song-ended', self.__song_ended),
('song-started', self.__song_started),
('paused', self.__update_paused, True),
('unpaused', self.__update_paused, False),
]
for sig in player_sigs:
gobject_weak(player.connect, *sig, **{"parent": self})
targets = [("text/uri-list", Gtk.TargetFlags.OTHER_APP, DND_URI_LIST)]
targets = [Gtk.TargetEntry.new(*t) for t in targets]
self.drag_dest_set(
Gtk.DestDefaults.ALL, targets, Gdk.DragAction.COPY)
self.connect('drag-data-received', self.__drag_data_received)
if config.getboolean('library', 'refresh_on_start'):
self.__rebuild(None, False)
self.connect_object("key-press-event", self.__key_pressed, player)
self.connect("delete-event", self.__save_browser)
self.connect("destroy", self.__destroy)
self.enable_window_tracking("quodlibet")
def __key_pressed(self, player, event):
if not player.song:
return
def seek_relative(seconds):
current = player.get_position()
current += seconds * 1000
current = min(player.song("~#length") * 1000 - 1, current)
current = max(0, current)
player.seek(current)
if qltk.is_accel(event, "<alt>Right"):
seek_relative(10)
return True
elif qltk.is_accel(event, "<alt>Left"):
seek_relative(-10)
return True
def __destroy(self, *args):
GLib.source_remove(self.__delayed_setup)
# The tray icon plugin tries to unhide QL because it gets disabled
# on Ql exit. The window should stay hidden after destroy.
self.show = lambda: None
self.present = self.show
def __drag_data_received(self, widget, ctx, x, y, sel, tid, etime):
assert tid == DND_URI_LIST
uris = sel.get_uris()
dirs = []
error = False
for uri in uris:
try:
uri = URI(uri)
except ValueError:
continue
if uri.is_filename:
loc = os.path.normpath(uri.filename)
if os.path.isdir(loc):
dirs.append(loc)
else:
loc = os.path.realpath(loc)
if loc not in self.__library:
self.__library.add_filename(loc)
elif app.player.can_play_uri(uri):
if uri not in self.__library:
self.__library.add([RemoteFile(uri)])
else:
error = True
break
Gtk.drag_finish(ctx, not error, False, etime)
if error:
ErrorMessage(
self, _("Unable to add songs"),
_("<b>%s</b> uses an unsupported protocol.") % uri).run()
else:
if dirs:
copool.add(
self.__library.scan, dirs, self.__status.bar.progress,
cofuncid="library", funcid="library")
def __songlist_drag_data_recv(self, view, *args):
if callable(self.browser.reordered):
self.browser.reordered(view)
self.songlist.set_sort_by(None, refresh=False)
def __save_browser(self, *args):
print_d("Saving active browser state")
try:
self.browser.save()
except NotImplementedError:
pass
def destroy(self, *args):
self.__save_browser()
super(QuodLibetWindow, self).destroy()
def __show_or(self, widget, prop):
ssv = self.song_scroller.get_property('visible')
qxv = self.qexpander.get_property('visible')
self.songpane.set_property('visible', ssv or qxv)
if not ssv:
self.qexpander.set_expanded(True)
self.__expand_or(widget, prop)
def __expand_or(self, widget, prop):
if self.qexpander.get_property('expanded'):
self.songpane.set_property("position", self.__handle_position)
def __moved_pane_handle(self, widget, prop):
if self.qexpander.get_property('expanded'):
self.__handle_position = self.songpane.get_property("position")
def __qex_size_allocate(self, event, param=None):
if not self.qexpander.get_property('expanded'):
p_max = self.songpane.get_property("max-position")
p_cur = self.songpane.get_property("position")
if p_max != p_cur:
self.songpane.set_property("position", p_max)
def __create_menu(self, player, library):
ag = Gtk.ActionGroup('QuodLibetWindowActions')
actions = [
('Music', None, _("_Music")),
('AddFolders', Gtk.STOCK_ADD, _('_Add a Folder...'),
"<control>O", None, self.open_chooser),
('AddFiles', Gtk.STOCK_ADD, _('_Add a File...'),
None, None, self.open_chooser),
('AddLocation', Gtk.STOCK_ADD, _('_Add a Location...'),
None, None, self.open_location),
('BrowseLibrary', Gtk.STOCK_FIND, _('Open _Browser'), ""),
("Preferences", Gtk.STOCK_PREFERENCES, None, None, None,
self.__preferences),
("Plugins", Gtk.STOCK_EXECUTE, _("_Plugins"), None, None,
self.__plugins),
("Quit", Gtk.STOCK_QUIT, None, None, None, self.destroy),
('Filters', None, _("_Filters")),
("PlayedRecently", Gtk.STOCK_FIND, _("Recently _Played"),
"", None, self.__filter_menu_actions),
("AddedRecently", Gtk.STOCK_FIND, _("Recently _Added"),
"", None, self.__filter_menu_actions),
("TopRated", Gtk.STOCK_FIND, _("_Top 40"),
"", None, self.__filter_menu_actions),
("Control", None, _("_Control")),
("EditTags", Gtk.STOCK_PROPERTIES, _("Edit _Tags"), "", None,
self.__current_song_prop),
("Information", Gtk.STOCK_INFO, None, None, None,
self.__current_song_info),
("Jump", Gtk.STOCK_JUMP_TO, _("_Jump to Playing Song"),
"<control>J", None, self.__jump_to_current),
("View", None, _("_View")),
("Help", None, _("_Help")),
("OutputLog", Gtk.STOCK_EDIT, _("_Output Log"),
None, None, lambda *args: LoggingWindow(self)),
]
if const.DEBUG:
def cause_error(*args):
raise Exception
actions.append(("DebugCauseError", Gtk.STOCK_DIALOG_ERROR,
_("_Cause an Error"), None, None, cause_error))
actions.append(("Previous", Gtk.STOCK_MEDIA_PREVIOUS, None,
"<control>comma", None, self.__previous_song))
actions.append(("PlayPause", Gtk.STOCK_MEDIA_PLAY, None,
"<control>space", None, self.__play_pause))
actions.append(("Next", Gtk.STOCK_MEDIA_NEXT, None,
"<control>period", None, self.__next_song))
ag.add_actions(actions)
act = Gtk.Action("About", None, None, Gtk.STOCK_ABOUT)
act.connect_object('activate', self.__show_about, player)
ag.add_action_with_accel(act, None)
act = Gtk.Action("OnlineHelp", _("Online Help"), None, Gtk.STOCK_HELP)
act.connect_object('activate', util.website, const.ONLINE_HELP)
ag.add_action_with_accel(act, "F1")
act = Gtk.Action("SearchHelp", _("Search Help"), None, "")
act.connect_object('activate', util.website, const.SEARCH_HELP)
ag.add_action_with_accel(act, None)
act = Gtk.Action(
"RefreshLibrary", _("Re_fresh Library"), None, Gtk.STOCK_REFRESH)
act.connect('activate', self.__rebuild, False)
ag.add_action_with_accel(act, None)
act = Gtk.Action(
"ReloadLibrary", _("Re_load Library"), None, Gtk.STOCK_REFRESH)
act.connect('activate', self.__rebuild, True)
ag.add_action_with_accel(act, None)
for tag_, lab in [
("genre", _("Filter on _Genre")),
("artist", _("Filter on _Artist")),
("album", _("Filter on Al_bum"))]:
act = Gtk.Action(
"Filter%s" % util.capitalize(tag_), lab, None, Gtk.STOCK_INDEX)
act.connect_object('activate',
self.__filter_on, tag_, None, player)
ag.add_action_with_accel(act, None)
for (tag_, accel, label) in [
("genre", "G", _("Random _Genre")),
("artist", "T", _("Random _Artist")),
("album", "M", _("Random Al_bum"))]:
act = Gtk.Action("Random%s" % util.capitalize(tag_), label,
None, Gtk.STOCK_DIALOG_QUESTION)
act.connect('activate', self.__random, tag_)
ag.add_action_with_accel(act, "<control>" + accel)
ag.add_toggle_actions([
("SongList", None, _("Song _List"), None, None,
self.showhide_playlist,
config.getboolean("memory", "songlist"))])
ag.add_toggle_actions([
("Queue", None, _("_Queue"), None, None,
self.showhide_playqueue,
config.getboolean("memory", "queue"))])
view_actions = []
for i, Kind in enumerate(browsers.browsers):
action = "View" + Kind.__name__
label = Kind.accelerated_name
view_actions.append((action, None, label, None, None, i))
current = browsers.index(config.get("memory", "browser"))
def action_callback(view_action, current):
self.select_browser(view_action, current, library, player)
ag.add_radio_actions(
view_actions, current, action_callback,
None)
for Kind in browsers.browsers:
if not Kind.in_menu:
continue
action = "Browser" + Kind.__name__
label = Kind.accelerated_name
act = Gtk.Action(action, label, None, None)
act.connect_object('activate', LibraryBrowser, Kind, library)
ag.add_action_with_accel(act, None)
debug_menu = ""
if const.DEBUG:
debug_menu = ("<separator/>"
"<menuitem action='OutputLog'/>"
"<menuitem action='DebugCauseError'/>")
self.ui = Gtk.UIManager()
self.ui.insert_action_group(ag, -1)
menustr = const.MENU % {"browsers": browsers.BrowseLibrary(),
"views": browsers.ViewBrowser(),
"debug": debug_menu}
self.ui.add_ui_from_string(menustr)
# Cute. So. UIManager lets you attach tooltips, but when they're
# for menu items, they just get ignored. So here I get to actually
# attach them.
self.ui.get_widget("/Menu/Music/RefreshLibrary").set_tooltip_text(
_("Check for changes in your library"))
self.ui.get_widget("/Menu/Music/ReloadLibrary").set_tooltip_text(
_("Reload all songs in your library "
"(this can take a long time)"))
self.ui.get_widget("/Menu/Filters/TopRated").set_tooltip_text(
_("The 40 songs you've played most (more than 40 may "
"be chosen if there are ties)"))
def __show_about(self, player):
about = AboutQuodLibet(self, player)
about.run()
about.destroy()
def __browser_configure(self, paned, event, browser):
if paned.get_property('position-set'):
key = "%s_pos" % browser.__class__.__name__
config.set("browsers", key, str(paned.get_relative()))
def select_browser(self, activator, current, library, player,
restore=False):
if isinstance(current, Gtk.RadioAction):
current = current.get_current_value()
Browser = browsers.get(current)
config.set("memory", "browser", Browser.__name__)
if self.browser:
container = self.browser.__container
self.browser.unpack(container, self.songpane)
if self.browser.accelerators:
self.remove_accel_group(self.browser.accelerators)
container.destroy()
self.browser.destroy()
self.browser = Browser(library, True)
self.browser.connect('songs-selected', self.__browser_cb)
self.browser.connect('activated', self.__browser_activate)
if restore:
self.browser.restore()
self.browser.activate()
self.browser.finalize(restore)
if self.browser.reordered:
self.songlist.enable_drop()
elif self.browser.dropped:
self.songlist.enable_drop(False)
else:
self.songlist.disable_drop()
if self.browser.accelerators:
self.add_accel_group(self.browser.accelerators)
container = self.browser.__container = self.browser.pack(self.songpane)
# Look for a paned if the container is none
sub = container
if not isinstance(container, RPaned):
for child in container.get_children():
if isinstance(child, RPaned) and child is not self.songpane:
sub = child
# Save position if container is a RPaned
if isinstance(sub, RPaned):
try:
key = "%s_pos" % self.browser.__class__.__name__
val = config.getfloat("browsers", key)
# Use a minimum restore size
val = max(val, 0.1)
except:
val = 0.4
sub.connect(
'notify::position', self.__browser_configure, self.browser)
sub.set_relative(val)
player.replaygain_profiles[1] = self.browser.replaygain_profiles
player.volume = player.volume
self.__browserbox.add(container)
container.show()
self.__hide_menus()
self.__hide_headers()
self.__refresh_size()
def __update_paused(self, player, paused):
menu = self.ui.get_widget("/Menu/Control/PlayPause")
if paused:
key = Gtk.STOCK_MEDIA_PLAY
else:
key = Gtk.STOCK_MEDIA_PAUSE
text = Gtk.stock_lookup(key).label
menu.get_image().set_from_stock(key, Gtk.IconSize.MENU)
menu.set_label(text)
menu.set_use_underline(True)
def __check_remove_song(self, player, song):
if song is None:
return
if not self.browser.dynamic(song):
iter = self.songlist.model.find(song)
if iter:
self.songlist.remove_iters([iter])
def __song_ended(self, player, song, stopped):
self.__check_remove_song(player, song)
def __song_changed(self, player, songs):
self.__update_title(player)
for song in songs:
self.__check_remove_song(player, song)
def __update_title(self, player):
song = player.info
title = "Quod Libet"
if song:
title = song.comma("~title~version~~people") + " - " + title
self.set_title(title)
def __song_started(self, player, song):
self.__update_title(player)
for wid in ["Jump", "Next", "EditTags", "Information"]:
self.ui.get_widget(
'/Menu/Control/' + wid).set_sensitive(bool(song))
for wid in ["FilterAlbum", "FilterArtist", "FilterGenre"]:
self.ui.get_widget(
'/Menu/Filters/' + wid).set_sensitive(bool(song))
if song:
for h in ['genre', 'artist', 'album']:
self.ui.get_widget(
"/Menu/Filters/Filter%s" % h.capitalize()).set_sensitive(
h in song)
# don't jump on stream changes (player.info != player.song)
if song and player.song is song and not self.songlist._activated and \
config.getboolean("settings", "jump"):
self.__jump_to_current(False)
def __refresh_size(self):
ssv = self.song_scroller.get_property('visible')
qex = self.qexpander.get_property('visible')
if ssv or qex:
return
# Handle more later if needed..
if not isinstance(self.browser, Gtk.Box):
return
# If a child expands the browser will take the new space
for child in self.browser.get_children():
if self.browser.query_child_packing(child)[0]:
break
else:
# no expanding child, make the window smaller instead
width, height = self.get_size()
height = self.size_request().height
self.resize(width, height)
def showhide_playlist(self, toggle):
self.song_scroller.set_property('visible', toggle.get_active())
self.__refresh_size()
def showhide_playqueue(self, toggle):
self.qexpander.set_property('visible', toggle.get_active())
self.__refresh_size()
def __play_pause(self, *args):
if app.player.song is None:
app.player.reset()
else:
app.player.paused ^= True
def __jump_to_current(self, explicit):
"""Select/scroll to the current playing song in the playlist.
If it can't be found tell the browser to properly fill the playlist
with an appropriate selection containing the song.
explicit means that the jump request comes from the user and not
from an event like song-started.
"""
def jump_to(song, select=True):
model = self.songlist.model
if song == model.current:
path = model.current_path
else:
iter = model.find(song)
if iter is None:
return
path = model[iter].path
self.songlist.scroll_to_cell(path, use_align=True, row_align=0.5)
if select:
self.songlist.set_cursor(path)
song = app.player.song
model = self.songlist.model
# We are not playing a song
if song is None:
return
# model.find because the source could be the queue
if song == model.current or (model.find(song) and explicit):
jump_to(song, select=explicit)
elif explicit:
self.browser.scroll(app.player.song)
# We need to wait until the browser has finished
# scrolling/filling and the songlist is ready.
# Not perfect, but works for now.
GLib.idle_add(jump_to, song, priority=GLib.PRIORITY_LOW)
def __next_song(self, *args):
app.player.next()
def __previous_song(self, *args):
app.player.previous()
def __random(self, item, key):
self.browser.filter_random(key)
def __filter_menu_actions(self, menuitem):
name = menuitem.get_name()
if name == "PlayedRecently":
self.__make_query("#(lastplayed < 7 days ago)")
elif name == "AddedRecently":
self.__make_query("#(added < 7 days ago)")
elif name == "TopRated":
bg = background_filter()
songs = (bg and filter(bg, self.__library)) or self.__library
songs = [song.get("~#playcount", 0) for song in songs]
if len(songs) == 0:
return
songs.sort()
if len(songs) < 40:
self.__make_query("#(playcount > %d)" % (songs[0] - 1))
else:
self.__make_query("#(playcount > %d)" % (songs[-40] - 1))
def __rebuild(self, activator, force):
scan_libary(self.__library, force)
# Set up the preferences window.
def __preferences(self, activator):
PreferencesWindow(self)
def __plugins(self, activator):
PluginWindow(self)
def open_location(self, action):
name = GetStringDialog(self, _("Add a Location"),
_("Enter the location of an audio file:"),
okbutton=Gtk.STOCK_ADD).run()
if name:
if not util.uri_is_valid(name):
ErrorMessage(
self, _("Unable to add location"),
_("<b>%s</b> is not a valid location.") % (
util.escape(name))).run()
elif not app.player.can_play_uri(name):
ErrorMessage(
self, _("Unable to add location"),
_("<b>%s</b> uses an unsupported protocol.") % (
util.escape(name))).run()
else:
if name not in self.__library:
self.__library.add([RemoteFile(name)])
def open_chooser(self, action):
if not os.path.exists(self.last_dir):
self.last_dir = const.HOME
if action.get_name() == "AddFolders":
chooser = FolderChooser(self, _("Add Music"), self.last_dir)
cb = Gtk.CheckButton(_("Watch this folder for new songs"))
cb.set_active(not config.get("settings", "scan"))
cb.show()
chooser.set_extra_widget(cb)
else:
chooser = FileChooser(
self, _("Add Music"), formats.filter, self.last_dir)
cb = None
fns = chooser.run()
chooser.destroy()
if fns:
if action.get_name() == "AddFolders":
self.last_dir = fns[0]
copool.add(self.__library.scan, fns, funcid="library")
else:
self.last_dir = os.path.basename(fns[0])
for filename in map(os.path.realpath, map(util.fsnative, fns)):
if filename in self.__library:
continue
song = self.__library.add_filename(filename)
if not song:
from traceback import format_exception_only as feo
tb = feo(sys.last_type, sys.last_value)
msg = _("%s could not be added to your library.\n\n")
msg %= util.escape(util.fsdecode(
os.path.basename(filename)))
msg += util.escape("".join(tb).decode(
const.ENCODING, "replace"))
d = ErrorMessage(self, _("Unable to add song"), msg)
d.label.set_selectable(True)
d.run()
continue
if cb and cb.get_active():
dirs = util.split_scan_dirs(config.get("settings", "scan"))
for fn in fns:
if fn not in dirs:
dirs.append(fn)
dirs = ":".join(dirs)
config.set("settings", "scan", dirs)
def __songs_popup_menu(self, songlist):
path, col = songlist.get_cursor()
header = col.header_name
menu = self.songlist.Menu(header, self.browser, self.__library)
if menu is not None:
return self.songlist.popup_menu(menu, 0,
Gtk.get_current_event_time())
def __current_song_prop(self, *args):
song = app.player.song
if song:
SongProperties(self.__library.librarian, [song], parent=self)
def __current_song_info(self, *args):
song = app.player.song
if song:
Information(self.__library.librarian, [song], self)
def __hide_menus(self):
menus = {'genre': ["/Menu/Filters/FilterGenre",
"/Menu/Filters/RandomGenre"],
'artist': ["/Menu/Filters/FilterArtist",
"/Menu/Filters/RandomArtist"],
'album': ["/Menu/Filters/FilterAlbum",
"/Menu/Filters/RandomAlbum"],
None: ["/Menu/Filters/PlayedRecently",
"/Menu/Filters/AddedRecently",
"/Menu/Filters/TopRated",
"/Menu/Filters/TopRated"]}
for key, widgets in menus.items():
c = self.browser.can_filter(key)
for widget in widgets:
self.ui.get_widget(widget).set_property('visible', c)
def __browser_activate(self, browser):
model = self.songlist.get_model()
model.reset()
if app.player.go_to(model.get_iter_first(), True):
app.player.paused = False
def __browser_cb(self, browser, songs, sorted):
if browser.background:
bg = background_filter()
if bg:
songs = filter(bg, songs)
self.songlist.set_songs(songs, sorted)
def __filter_on(self, header, songs, player):
browser = self.browser
if not browser:
return
# Fall back to the playing song
if songs is None:
if player.song:
songs = [player.song]
else:
return
browser.filter_on(songs, header)
def __hide_headers(self, activator=None):
for column in self.songlist.get_columns():
if self.browser.headers is None:
column.set_visible(True)
else:
for tag in util.tagsplit(column.header_name):
if tag in self.browser.headers:
column.set_visible(True)
break
else:
column.set_visible(False)
def __cols_changed(self, songlist):
headers = [col.header_name for col in songlist.get_columns()]
try:
headers.remove('~current')
except ValueError:
pass
if len(headers) == len(config.get_columns()):
# Not an addition or removal (handled separately)
config.set_columns(headers)
SongList.headers = headers
def __make_query(self, query):
if self.browser.can_filter_text():
self.browser.filter_text(query.encode('utf-8'))
self.browser.activate()
def __set_time(self, info, songs):
i = len(songs)
length = sum(song.get("~#length", 0) for song in songs)
t = self.browser.statusbar(i) % {
'count': i, 'time': util.format_time_long(length)}
self.statusbar.set_default_text(t)
|