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 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
|
# Copyright (C) 2009-2010 Mathias Brodala
#
# 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, 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
from gi.repository import GLib
from gi.repository import Gtk
from gi.repository import Pango
import logging
from xl import event, player, providers, settings
from xl.formatter import Formatter, TrackFormatter, ProgressTextFormatter
from xl.player.adapters import PlaybackAdapter, QueueAdapter
from xl.nls import gettext as _
from xlgui.guiutil import gtk_widget_replace
from xlgui.widgets.common import AttachedWindow
from xlgui.widgets.info import TrackToolTip
from xlgui.widgets.playback import SeekProgressBar
from xlgui.widgets.playlist import PlaylistModel, PlaylistView
from xlgui.widgets.rating import RatingWidget
logger = logging.getLogger(__name__)
def suppress(signal):
"""
Decorator which prevents the emission of a GObject signal
"""
def wrapper(function):
def wrapped_function(self, *args, **kwargs):
def on_event(sender, *args):
sender.stop_emission_by_name(signal)
return True
handler_id = self.connect(signal, on_event)
function(self, *args, **kwargs)
self.disconnect(handler_id)
return wrapped_function
return wrapper
class ControlBox(Gtk.Box, providers.ProviderHandler):
"""
A box for minimode controls which
updates itself based on settings
"""
__gsignals__ = {'show': 'override'}
def __init__(self):
Gtk.Box.__init__(self)
providers.ProviderHandler.__init__(self, 'minimode-controls')
self.__dirty = True
self.__controls = {}
event.add_ui_callback(self.on_option_set, 'plugin_minimode_option_set')
def destroy(self):
"""
Cleanups
"""
for control in self.__controls.values():
control.destroy()
def __contains__(self, item):
"""
Allows for checking for control ids
"""
if item in self.__controls:
return True
return False
def __getitem__(self, name):
"""
Returns the control specified by name
"""
return self.__controls[name]
def __setitem__(self, name, control):
"""
Sets the control specified by name
"""
if name in self.__controls:
self.remove(self.__controls[name])
del self.__controls[name]
self.__controls[name] = control
self.pack_start(control, False, True, 0)
control.show_all()
def __delitem__(self, name):
"""
Destroys the control specified by name
"""
self.__controls[name].destroy()
del self.__controls[name]
def update(self):
"""
Updates the controls to display
"""
selected_controls = settings.get_option(
'plugin/minimode/selected_controls',
[
'previous',
'play_pause',
'next',
'playlist_button',
'progress_bar',
'restore',
],
)
added_controls = [c for c in selected_controls if c not in self]
for name in added_controls:
try:
provider = self.get_provider(name)()
except Exception: # Not found, initialization error, ...)
logger.exception('Failed to add control provider "%s"', name)
selected_controls.remove(name)
else:
self[name] = provider
removed_controls = [c.name for c in self if c.name not in selected_controls]
for name in removed_controls:
del self[name]
for name in selected_controls:
self.reorder_child(self[name], -1)
def do_show(self):
"""
Updates the appearance if
settings have been changed
"""
if self.__dirty:
self.update()
self.__dirty = False
Gtk.Box.do_show(self)
def on_provider_removed(self, provider):
"""
Removes controls on provider removal
"""
if provider.name in self:
del self[provider.name]
def on_option_set(self, event, settings, option):
"""
Flags changes
"""
if option == 'plugin/minimode/selected_controls':
if self.props.visible:
GLib.idle_add(self.update)
else:
self.__dirty = True
# Control definitions
class BaseControl:
"""
Base control provider
"""
name: str
title: str
description: str
fixed = False
class ButtonControl(Gtk.Button, BaseControl):
"""
Basic button control
"""
__gsignals__ = {'clicked': 'override'}
def __init__(self):
Gtk.Button.__init__(self)
BaseControl.__init__(self)
self.set_image(Gtk.Image())
self.set_relief(Gtk.ReliefStyle.NONE)
self.set_focus_on_click(False)
def set_image_from_icon_name(self, icon_name):
"""
Sets the image to the specified icon
:param icon_name:
"""
self.props.image.set_from_icon_name(icon_name, Gtk.IconSize.BUTTON)
class PreviousButtonControl(ButtonControl):
"""
Button which allows for going to the previous track
"""
name = 'previous'
title = _('Previous')
description = _('Go to the previous track')
def __init__(self):
ButtonControl.__init__(self)
self.set_image_from_icon_name('media-skip-backward')
self.set_tooltip_text(_('Previous track'))
def do_clicked(self):
"""
Goes to the previous track
"""
player.QUEUE.prev()
class NextButtonControl(ButtonControl):
"""
Button which allows for going to the next track
"""
name = 'next'
title = _('Next')
description = _('Go to the next track')
def __init__(self):
ButtonControl.__init__(self)
self.set_image_from_icon_name('media-skip-forward')
self.set_tooltip_text(_('Next track'))
def do_clicked(self):
"""
Goes to the next track
"""
player.QUEUE.next()
class PlayPauseButtonControl(ButtonControl, PlaybackAdapter):
"""
Button which allows for starting,
pausing and resuming of playback
"""
name = 'play_pause'
title = _('Play/Pause')
description = _('Start, pause or resume the playback')
def __init__(self):
ButtonControl.__init__(self)
PlaybackAdapter.__init__(self, player.PLAYER)
self.update_state()
def destroy(self):
"""
Cleanups
"""
PlaybackAdapter.destroy(self)
ButtonControl.destroy(self)
def update_state(self):
"""
Updates the appearance of this button
"""
icon_name = 'media-playback-start'
tooltip_text = _('Start playback')
if not player.PLAYER.is_stopped():
if player.PLAYER.is_paused():
tooltip_text = _('Continue playback')
elif player.PLAYER.is_playing():
icon_name = 'media-playback-pause'
tooltip_text = _('Pause playback')
GLib.idle_add(self.set_image_from_icon_name, icon_name)
GLib.idle_add(self.set_tooltip_text, tooltip_text)
def do_clicked(self):
"""
Starts, pauses or resumes the playback
"""
if player.PLAYER.is_stopped():
player.QUEUE.play()
else:
player.PLAYER.toggle_pause()
def on_playback_track_start(self, event, player, track):
"""
Updates state
"""
self.update_state()
def on_playback_player_end(self, event, player, track):
"""
Updates state
"""
self.update_state()
def on_playback_toggle_pause(self, event, player, track):
"""
Updates state
"""
self.update_state()
class StopButtonControl(ButtonControl):
"""
Button which allows for stopping the playback
and toggling the SPAT feature
"""
name = 'stop'
title = _('Stop')
description = _('Stop the playback')
__gsignals__ = {
'motion-notify-event': 'override',
'leave-notify-event': 'override',
'focus-out-event': 'override',
'key-press-event': 'override',
'key-release-event': 'override',
}
def __init__(self):
ButtonControl.__init__(self)
self.set_image_from_icon_name('media-playback-stop')
self.set_tooltip_text(_('Stop playback'))
self.add_events(
Gdk.EventMask.LEAVE_NOTIFY_MASK
| Gdk.EventMask.POINTER_MOTION_MASK
| Gdk.EventMask.KEY_PRESS_MASK
| Gdk.EventMask.KEY_RELEASE_MASK
)
self._queue_spat = False
self._hovered = False
def update_state(self):
"""
Updates the appearance of this button
"""
icon_name = 'media-playback-stop'
tooltip_text = _('Stop playback')
if self._queue_spat:
icon_name = 'process-stop'
if player.QUEUE.current_playlist.spat_position > 0:
tooltip_text = _('Continue playback after current track')
else:
tooltip_text = _('Stop playback after current track')
self.set_image_from_icon_name(icon_name)
self.set_tooltip_text(tooltip_text)
def do_clicked(self):
"""
Stops the playback
"""
if self._queue_spat:
p = player.QUEUE.current_playlist
p.spat_position = (
-1 if p.current_position == p.spat_position else p.current_position
)
else:
player.PLAYER.stop()
def do_motion_notify_event(self, event):
"""
Indicates SPAT
"""
_, state = event.get_state()
if state & Gdk.ModifierType.SHIFT_MASK:
self._queue_spat = True
self.update_state()
self._hovered = True
def do_leave_notify_event(self, event):
"""
Returns to regular state
"""
if self._queue_spat and not self.is_focus():
self._queue_spat = False
self.update_state()
self._hovered = False
ButtonControl.do_leave_notify_event(self, event)
def do_focus_out_event(self, event):
"""
Returns to regular state
"""
if not self._hovered:
self._queue_spat = False
self.update_state()
def do_key_press_event(self, event):
"""
Indicates SPAT
"""
if event.keyval in (Gdk.KEY_Shift_L, Gdk.KEY_Shift_R):
self._queue_spat = True
self.update_state()
def do_key_release_event(self, event):
"""
Returns to regular state
"""
if event.keyval in (Gdk.KEY_Shift_L, Gdk.KEY_Shift_R):
self._queue_spat = False
self.update_state()
class VolumeButtonControl(Gtk.VolumeButton, BaseControl):
"""
Button which allows for changing the volume
"""
name = 'volume'
title = _('Volume')
description = _('Change the volume')
__gsignals__ = {'value-changed': 'override'}
def __init__(self):
Gtk.VolumeButton.__init__(self)
BaseControl.__init__(self)
self.updating = False
adjustment = Gtk.Adjustment(upper=1, step_incr=0.1, page_incr=0.2)
self.set_adjustment(adjustment)
# Slightly beautify the control buttons
plus_button = self.get_plus_button()
plus_button.set_image(
Gtk.Image.new_from_icon_name('list-add', Gtk.IconSize.BUTTON)
)
plus_button.set_label('')
minus_button = self.get_minus_button()
minus_button.set_image(
Gtk.Image.new_from_icon_name('list-remove', Gtk.IconSize.BUTTON)
)
minus_button.set_label('')
event.add_ui_callback(self.on_option_set, 'player_option_set')
self.on_option_set('player_option_set', settings, 'player/volume')
def destroy(self):
"""
Cleanups
"""
event.remove_callback(self.on_option_set, 'player_option_set')
ButtonControl.destroy(self)
Gtk.VolumeButton.destroy(self)
def set_value(self, value):
"""
Override to take care of preventing
signal handling and endless loops
"""
self.updating = True
Gtk.VolumeButton.set_value(self, value)
self.updating = False
def do_value_changed(self, value):
"""
Changes the volume except if done internally
"""
if not self.updating:
settings.set_option('player/volume', value)
def on_option_set(self, event, settings, option):
"""
Reflects external volume changes
"""
if option == 'player/volume':
self.set_value(float(settings.get_option(option)))
class RestoreButtonControl(ButtonControl):
"""
Button which allows for restoring the main window
"""
name = 'restore'
title = _('Restore')
description = _('Restore the main window')
fixed = True
__gsignals__ = {'hierarchy-changed': 'override'}
def __init__(self):
ButtonControl.__init__(self)
self.set_image_from_icon_name('window-new')
self.set_tooltip_text(_('Restore main window'))
def do_clicked(self):
"""
Restores the main window
"""
self.get_toplevel().set_active(False)
def do_hierarchy_changed(self, previous_toplevel):
"""
Sets up accelerators
"""
accel_group = Gtk.AccelGroup()
try:
self.get_toplevel().add_accel_group(accel_group)
except AttributeError:
pass
else:
key, modifier = Gtk.accelerator_parse('<Primary><Alt>M')
self.add_accelerator(
'clicked', accel_group, key, modifier, Gtk.AccelFlags.VISIBLE
)
class RatingControl(RatingWidget, BaseControl):
"""
Control which allows for viewing and
changing the rating of the current track
"""
name = 'rating'
title = _('Rating')
description = _('Select rating of the current track')
def __init__(self):
RatingWidget.__init__(self, player=player.PLAYER)
BaseControl.__init__(self)
def do_rating_changed(self, rating):
"""
Updates the rating of the currently playing track
"""
if player.PLAYER.current is not None:
player.PLAYER.current.set_rating(rating)
maximum = settings.get_option('rating/maximum', 5)
event.log_event('rating_changed', self, 100 * rating / maximum)
class TrackSelectorControl(Gtk.ComboBox, BaseControl, QueueAdapter):
name = 'track_selector'
title = _('Track selector')
description = _('Simple track list selector')
__gsignals__ = {'changed': 'override'}
def __init__(self):
Gtk.ComboBox.__init__(self)
BaseControl.__init__(self)
QueueAdapter.__init__(self, player.QUEUE)
self.formatter = TrackFormatter('')
self.model = Gtk.ListStore(object)
self.set_model(self.model)
self.synchronize()
renderer = Gtk.CellRendererText()
self.pack_start(renderer, True)
self.set_cell_data_func(renderer, self.data_func)
self.set_size_request(200, 0)
event.add_ui_callback(self.on_option_set, 'plugin_minimode_option_set')
self.on_option_set(
'plugin_minimode_option_set', settings, 'plugin/minimode/track_title_format'
)
def destroy(self):
"""
Cleanups
"""
QueueAdapter.destroy(self)
Gtk.ComboBox.destroy(self)
def data_func(self, column, cell, model, iter, user_data):
"""
Updates track titles and highlights
the current track if the popup is shown
"""
track = model.get_value(iter, 0)
if track is None:
return
cell.props.text = self.formatter.format(track)
active_iter = self.get_active_iter()
if active_iter is not None:
active_track = model.get_value(active_iter, 0)
weight = Pango.Weight.NORMAL
if self.props.popup_shown and track == active_track:
weight = Pango.Weight.BOLD
cell.props.weight = weight
@suppress('changed')
def synchronize(self):
"""
Synchronizes the model data with
the current content of the queue
"""
self.set_model(None)
self.model.clear()
for i, track in enumerate(player.QUEUE.current_playlist):
self.model.append([track])
if track is player.QUEUE.current_playlist.current:
# Not using iter since model is detached
self.set_active(i)
self.set_model(self.model)
def do_changed(self):
"""
Starts playing the selected track. Should only be
triggered by user action to prevent race conditions
"""
active_index = self.get_active()
if active_index > -1:
player.QUEUE.current_playlist.current_position = active_index
player.QUEUE.play(player.QUEUE.current_playlist[active_index])
def add_tracks(self, tracks):
"""
Adds tracks to the internal storage
"""
if not tracks:
return
self.set_model(None)
for position, track in tracks:
self.model.insert(position, [track])
self.set_model(self.model)
def remove_tracks(self, tracks):
"""
Removes tracks from the internal storage
"""
if not tracks:
return
self.set_model(None)
tracks.reverse()
for position, track in tracks:
del self.model[position]
self.set_model(self.model)
def on_queue_current_playlist_changed(self, event, queue, playlist):
"""
Updates the list on queue changes
"""
self.synchronize()
@suppress('changed')
def on_queue_current_position_changed(self, event, playlist, positions):
"""
Updates the list on queue changes
"""
if positions[0] < 0:
return
GLib.idle_add(self.set_active, positions[0])
def on_queue_tracks_added(self, event, queue, tracks):
"""
Updates the list on queue changes
"""
GLib.idle_add(self.add_tracks, tracks)
def on_queue_tracks_removed(self, event, queue, tracks):
"""
Updates the list on queue changes
"""
GLib.idle_add(self.remove_tracks, tracks)
def on_option_set(self, event, settings, option):
"""
Updates control upon setting change
"""
if option == 'plugin/minimode/track_title_format':
self.formatter.set_property(
'format', settings.get_option(option, _('$tracknumber - $title'))
)
class PlaylistButtonControl(Gtk.ToggleButton, BaseControl, QueueAdapter):
name = 'playlist_button'
title = _('Playlist button')
description = _('Access the current playlist')
__gsignals__ = {'scroll-event': 'override'}
def __init__(self):
Gtk.ToggleButton.__init__(self)
BaseControl.__init__(self)
QueueAdapter.__init__(self, player.QUEUE)
self.set_focus_on_click(False)
self.set_size_request(200, -1)
box = Gtk.Box()
self.arrow = Gtk.Arrow(Gtk.ArrowType.RIGHT, Gtk.ShadowType.OUT)
box.pack_start(self.arrow, False, True, 0)
self.label = Gtk.Label(label='')
self.label.props.ellipsize = Pango.EllipsizeMode.END
box.pack_start(self.label, True, True, 0)
self.add(box)
self.formatter = TrackFormatter(
settings.get_option(
'plugin/minimode/track_title_format', '$tracknumber - $title'
)
)
self.view = PlaylistView(player.QUEUE.current_playlist, player.PLAYER)
self.popup = AttachedWindow(self)
self.popup.set_default_size(
settings.get_option('plugin/minimode/' 'playlist_button_popup_width', 350),
settings.get_option('plugin/minimode/' 'playlist_button_popup_height', 400),
)
scrollwindow = Gtk.ScrolledWindow()
scrollwindow.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC)
scrollwindow.set_shadow_type(Gtk.ShadowType.IN)
scrollwindow.add(self.view)
self.popup.add(scrollwindow)
self.popup.connect('show', self.on_popup_show)
self.popup.connect('hide', self.on_popup_hide)
self.popup.connect('configure-event', self.on_popup_configure_event)
accel_group = Gtk.AccelGroup()
key, modifier = Gtk.accelerator_parse('<Primary>J')
accel_group.connect(
key, modifier, Gtk.AccelFlags.VISIBLE, self.on_accelerator_activate
)
self.popup.add_accel_group(accel_group)
self.tooltip = TrackToolTip(self, player.PLAYER)
self.tooltip.set_auto_update(True)
if player.PLAYER.current is not None:
self.label.set_text(self.formatter.format(player.PLAYER.current))
self._drag_motion_timeout_id = None
self._drag_leave_timeout_id = None
self.drag_dest_set(
Gtk.DestDefaults.ALL,
self.view.targets,
Gdk.DragAction.COPY | Gdk.DragAction.DEFAULT | Gdk.DragAction.MOVE,
)
self.connect('drag-motion', self.on_drag_motion)
self.connect('drag-leave', self.on_drag_leave)
self.connect('drag-data-received', self.on_drag_data_received)
self.view.connect('drag-motion', self.on_drag_motion)
self.view.connect('drag-leave', self.on_drag_leave)
event.add_ui_callback(self.on_track_tags_changed, 'track_tags_changed')
event.add_ui_callback(self.on_option_set, 'plugin_minimode_option_set')
self.on_option_set(
'plugin_minimode_option_set', settings, 'plugin/minimode/track_title_format'
)
def destroy(self):
"""
Cleanups
"""
self.tooltip.destroy()
QueueAdapter.destroy(self)
Gtk.ToggleButton.destroy(self)
def update_playlist(self, playlist):
"""
Updates the internally stored playlist
"""
columns = self.view.model.column_names
model = PlaylistModel(playlist, columns, player.PLAYER, self.view)
self.view.set_model(model)
def do_scroll_event(self, event):
"""
Changes the current track
"""
if event.direction == Gdk.ScrollDirection.UP:
self.view.playlist.prev()
elif event.direction == Gdk.ScrollDirection.DOWN:
self.view.playlist.next()
else:
return
position = self.view.playlist.current_position
try:
track = self.view.playlist[position]
except IndexError:
pass
else:
player.QUEUE.play(track)
def do_toggled(self):
"""
Shows or hides the playlist
"""
if self.get_active():
self.arrow.props.arrow_type = Gtk.ArrowType.DOWN
self.popup.show_all()
else:
self.popup.hide()
self.arrow.props.arrow_type = Gtk.ArrowType.RIGHT
def on_accelerator_activate(self, accel_group, acceleratable, keyval, modifier):
"""
Shows the current track
"""
self.view.scroll_to_cell(self.view.playlist.current_position)
self.view.set_cursor(self.view.playlist.current_position)
def on_drag_motion(self, widget, context, x, y, time):
"""
Prepares to show the playlist
"""
# Defer display of the playlist
if self._drag_motion_timeout_id is None:
self._drag_motion_timeout_id = GLib.timeout_add(
500, lambda: self.set_active(True)
)
# Prevent hiding of the playlist
if self._drag_leave_timeout_id is not None:
GLib.source_remove(self._drag_leave_timeout_id)
self._drag_leave_timeout_id = None
def on_drag_leave(self, widget, context, time):
"""
Prepares to hide the playlist
"""
# Enable display of the playlist on re-enter
if self._drag_motion_timeout_id is not None:
GLib.source_remove(self._drag_motion_timeout_id)
self._drag_motion_timeout_id = None
if self._drag_leave_timeout_id is not None:
GLib.source_remove(self._drag_leave_timeout_id)
# Defer hiding of the playlist
self._drag_leave_timeout_id = GLib.timeout_add(
500, lambda: self.set_active(False)
)
def on_drag_data_received(self, widget, context, x, y, selection, info, time):
"""
Handles dropped data
"""
# Enable display of the playlist on re-enter
if self._drag_motion_timeout_id is not None:
GLib.source_remove(self._drag_motion_timeout_id)
self._drag_motion_timeout_id = None
# Enable hiding of the playlist on re-enter
if self._drag_leave_timeout_id is not None:
GLib.source_remove(self._drag_leave_timeout_id)
self._drag_leave_timeout_id = None
self.view.emit('drag-data-received', context, x, y, selection, info, time)
def on_popup_show(self, widget):
if not self.get_active():
self.set_active(True)
def on_popup_hide(self, widget):
if self.get_active():
self.set_active(False)
def on_popup_configure_event(self, widget, event):
"""
Saves the window size after resizing
"""
width = settings.get_option(
'plugin/minimode/' 'playlist_button_popup_width', 350
)
height = settings.get_option(
'plugin/minimode/' 'playlist_button_popup_height', 400
)
if event.width != width:
settings.set_option(
'plugin/minimode/' 'playlist_button_popup_width', event.width
)
if event.height != height:
settings.set_option(
'plugin/minimode/' 'playlist_button_popup_height', event.height
)
def on_queue_current_playlist_changed(self, event, queue, playlist):
"""
Updates the list on queue changes
"""
GLib.idle_add(self.update_playlist, playlist)
def on_queue_current_position_changed(self, event, playlist, positions):
"""
Updates the list on queue changes
"""
try:
track = playlist[positions[0]]
except IndexError:
text = ''
else:
text = self.formatter.format(track)
GLib.idle_add(self.label.set_text, text)
def on_track_tags_changed(self, event, track, tags):
"""
Updates the button on tag changes
"""
playlist = self.view.playlist
if track not in playlist:
return
track_position = playlist.index(track)
if track_position == playlist.current_position:
self.label.set_text(self.formatter.format(track))
def on_option_set(self, event, settings, option):
"""
Updates control upon setting change
"""
if option == 'plugin/minimode/track_title_format':
self.formatter.set_property(
'format', settings.get_option(option, _('$tracknumber - $title'))
)
class ProgressButtonFormatter(Formatter):
"""
Formatter which allows both for display of
tag data as well as progress information
"""
def __init__(self):
Formatter.__init__(self, self.get_option_value())
self.track_formatter = TrackFormatter('')
self.progress_formatter = ProgressTextFormatter(
self.props.format, player.PLAYER
)
event.add_ui_callback(self.on_option_set, 'plugin_minimode_option_set')
def format(self, current_time=None, total_time=None):
"""
Returns a string suitable for progress buttons
:param current_time: the current progress
:type current_time: float
:param total_time: the total length of a track
:type total_time: float
:returns: The formatted text
:rtype: string
"""
text = self.progress_formatter.format()
self.track_formatter.props.format = text
text = self.track_formatter.format(player.PLAYER.current)
return text
def get_option_value(self):
"""
Retrieves the current user format
"""
return settings.get_option(
'plugin/minimode/progress_button_title_format',
_('$title ($current_time / $total_time)'),
)
def on_option_set(self, event, settings, option):
"""
Updates the internal format on setting change
"""
if option == 'gui/progress_bar_text_format':
GLib.idle_add(self.set_property, 'format', self.get_option_value())
Gtk.rc_parse_string(
'''
style "progress-button" {
GtkToggleButton::default-border = {0, 0, 0, 0}
GtkToggleButton::default-outside-border = {0, 0, 0, 0}
GtkToggleButton::inner-border = {0, 0, 0, 0}
}
widget "*.progressbutton" style "progress-button"
'''
)
class ProgressButtonControl(PlaylistButtonControl):
name = 'progress_button'
title = _('Progress button')
description = _('Playback progress and access ' 'to the current playlist')
# Required to make overrides work
__gsignals__ = {}
def __init__(self):
PlaylistButtonControl.__init__(self)
self.set_name('progressbutton')
self.add_events(Gdk.EventMask.POINTER_MOTION_MASK)
self.progressbar = SeekProgressBar(player.PLAYER)
self.progressbar.set_size_request(-1, 1)
self.progressbar.formatter = ProgressButtonFormatter()
self.progressbar.set_text = lambda *a: None # Needed by PlaylistButtonControl
gtk_widget_replace(self.label, self.progressbar)
self.label = self.progressbar
if player.PLAYER.current is not None:
self.progressbar.on_playback_track_start(
'playback_track_start', player.PLAYER, player.PLAYER.current
)
self.tooltip = TrackToolTip(self, player.PLAYER)
self.tooltip.set_auto_update(True)
def destroy(self):
"""
Cleanups
"""
self.tooltip.destroy()
PlaylistButtonControl.destroy(self)
def do_button_press_event(self, event):
"""
Trigger normal toggle action or seek
"""
if event.button == Gdk.BUTTON_PRIMARY:
PlaylistButtonControl.do_button_press_event(self, event)
elif event.button == Gdk.BUTTON_MIDDLE:
event = event.copy()
event.button = Gdk.BUTTON_PRIMARY
x, y = self.translate_coordinates(
self.progressbar, int(event.x), int(event.y)
)
event.x, event.y = float(x), float(y)
self.progressbar.emit('button-press-event', event)
def do_button_release_event(self, event):
if event.button == Gdk.BUTTON_PRIMARY:
PlaylistButtonControl.do_button_release_event(self, event)
elif event.button == Gdk.BUTTON_MIDDLE:
event = event.copy()
event.button = Gdk.BUTTON_PRIMARY
x, y = self.translate_coordinates(
self.progressbar, int(event.x), int(event.y)
)
event.x, event.y = float(x), float(y)
self.progressbar.emit('button-release-event', event)
def do_motion_notify_event(self, event):
event = event.copy()
x, y = self.translate_coordinates(self.progressbar, int(event.x), int(event.y))
event.x, event.y = float(x), float(y)
self.progressbar.emit('motion-notify-event', event)
def do_leave_notify_event(self, event):
event = event.copy()
x, y = self.translate_coordinates(self.progressbar, int(event.x), int(event.y))
event.x, event.y = float(x), float(y)
self.progressbar.emit('leave-notify-event', event)
class ProgressBarControl(SeekProgressBar, BaseControl):
name = 'progress_bar'
title = _('Progress bar')
description = _('Playback progress and seeking')
def __init__(self):
SeekProgressBar.__init__(self, player.PLAYER)
BaseControl.__init__(self)
self.set_size_request(200, -1)
self.set_margin_top(3)
self.set_margin_bottom(3)
if player.PLAYER.current is not None:
self.on_playback_track_start(
'playback_track_start', player.PLAYER, player.PLAYER.current
)
if player.PLAYER.is_paused():
self.on_playback_toggle_pause(
'playback_toggle_pause', player.PLAYER, player.PLAYER.current
)
control_types = [
PreviousButtonControl,
NextButtonControl,
PlayPauseButtonControl,
StopButtonControl,
VolumeButtonControl,
RestoreButtonControl,
RatingControl,
TrackSelectorControl,
PlaylistButtonControl,
ProgressButtonControl,
ProgressBarControl,
]
def register():
"""
Registers all control providers
"""
for control_type in control_types:
providers.register('minimode-controls', control_type)
def unregister():
"""
Unregisters all control providers
"""
for control_type in control_types:
providers.unregister('minimode-controls', control_type)
|