/usr/share/pyshared/quodlibet/qltk/sliderbutton.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 | # Copyright 2005 Joe Wreschnig, Michael Urman
# 2013 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
from gi.repository import Gtk, Gdk
from quodlibet.qltk import get_top_parent, gtk_version
class PrimaryWarpsRange(Gtk.Range):
"""A GtkRange which behaves as if gtk-primary-button-warps-slider
was always True.
Adjusts key events depending on the current settings value.
"""
def __init__(self, *args, **kwargs):
super(PrimaryWarpsRange, self).__init__(*args, **kwargs)
self.connect("button-press-event", self.__button_event)
self.connect("button-release-event", self.__button_event)
@property
def _warps(self):
settings = Gtk.Settings.get_default()
if settings:
try:
return settings.get_property("gtk-primary-button-warps-slider")
except TypeError:
pass
return False
def __button_event(self, widget, event):
if not self._warps:
event.button = event.button % 3 + 1
return False
class PrimaryWarpsScale(Gtk.Scale, PrimaryWarpsRange):
pass
class _PopupSlider(Gtk.EventBox):
# Based on the Rhythmbox volume control button; thanks to Colin Walters,
# Richard Hult, Michael Fulbright, Miguel de Icaza, and Federico Mena.
def __init__(self, child=None, adj=None, req=None):
super(_PopupSlider, self).__init__()
button = Gtk.Button()
if child:
button.add(child)
self.add(button)
button.connect('clicked', self.__clicked)
self.show_all()
window = self.__window = Gtk.Window(Gtk.WindowType.POPUP)
self.__adj = adj or self._adj
frame = Gtk.Frame()
frame.set_border_width(0)
frame.set_shadow_type(Gtk.ShadowType.OUT)
self.add_events(Gdk.EventMask.SCROLL_MASK)
hscale = PrimaryWarpsScale(adjustment=self.__adj)
hscale.set_orientation(self.ORIENTATION)
hscale.set_size_request(*(req or self._req))
window.connect('button-press-event', self.__button)
window.connect('key-press-event', self.__key)
hscale.set_draw_value(False)
self.scale = hscale
window.add(frame)
frame.add(hscale)
self.connect('scroll-event', self.__scroll, hscale)
# forward scroll event to the button
def foward_scroll(scale, event):
self.emit('scroll-event', event.copy())
window.connect('scroll-event', foward_scroll)
# ignore scroll events on the scale, the window handles it instead
self.scale.connect('scroll-event', lambda *x: True)
# handle all unhandled button events on the scale
# so only events not on the scale hide the window
def handle_all(scale, event):
return True
self.scale.connect_after('button-press-event', handle_all)
self.scale.connect_after('button-release-event', handle_all)
def _move_to(self, x, y, w, h, ww, wh, pad=3):
raise NotImplementedError
def __clicked(self, button):
if self.__window.get_property('visible'):
return
window = self.__window
button = self.get_child()
frame = window.get_child()
frame.show_all()
window.size_request()
dummy, x, y = self.get_window().get_origin()
button_alloc = button.get_allocation()
w, h = button_alloc.width, button_alloc.height
ww, wh = window.get_size()
sx, sy = self._move_to(x, y, w, h, ww, wh, pad=3)
window.set_transient_for(get_top_parent(self))
window.move(sx, sy)
window.show()
window.grab_focus()
window.grab_add()
event_time = Gtk.get_current_event_time()
pointer = Gdk.pointer_grab(
window.get_window(), True,
Gdk.EventMask.BUTTON_PRESS_MASK |
Gdk.EventMask.BUTTON_RELEASE_MASK |
Gdk.EventMask.BUTTON_MOTION_MASK |
Gdk.EventMask.POINTER_MOTION_MASK |
Gdk.EventMask.SCROLL_MASK, None, None, event_time)
keyboard = Gdk.keyboard_grab(window.get_window(), True, event_time)
grab_sucess = Gdk.GrabStatus.SUCCESS
if pointer != grab_sucess or keyboard != grab_sucess:
window.grab_remove()
window.hide()
if pointer == Gdk.GrabStatus.SUCCESS:
Gdk.pointer_ungrab(event_time)
if keyboard == Gdk.GrabStatus.SUCCESS:
Gdk.keyboard_ungrab(event_time)
def __scroll(self, widget, ev, hscale):
adj = self.__adj
v = hscale.get_value()
if ev.direction in self.UP:
v += adj.props.step_increment
elif ev.direction in self.DOWN:
v -= adj.props.step_increment
else:
# newer Gdk.ScrollDirection.SMOOTH
return
v = min(adj.props.upper, max(adj.props.lower, v))
hscale.set_value(v)
def __button(self, widget, ev):
self.__popup_hide()
def __key(self, hscale, ev):
if ev.string in ["\n", "\r", " ", "\x1b"]: # enter, space, escape
self.__popup_hide()
def __popup_hide(self):
window = self.__window
event_time = Gtk.get_current_event_time()
window.grab_remove()
Gdk.pointer_ungrab(event_time)
Gdk.keyboard_ungrab(event_time)
window.hide()
#gtk3.8 bug: https://bugzilla.gnome.org/show_bug.cgi?id=700185
window.unrealize()
class HSlider(_PopupSlider):
ORIENTATION = Gtk.Orientation.HORIZONTAL
_req = (200, -1)
_adj = Gtk.Adjustment(0, 0, 0, 3, 15, 0)
UP = [Gdk.ScrollDirection.DOWN, Gdk.ScrollDirection.RIGHT]
DOWN = [Gdk.ScrollDirection.UP, Gdk.ScrollDirection.LEFT]
def _move_to(self, x, y, w, h, ww, wh, pad=3):
if Gtk.Widget.get_default_direction() == Gtk.TextDirection.LTR:
return ((x + w + pad), (y + (h - wh) // 2))
else:
return ((x - (ww + pad)), (y + (h - wh) // 2))
class VSlider(_PopupSlider):
ORIENTATION = Gtk.Orientation.VERTICAL
_req = (-1, 170)
_adj = Gtk.Adjustment(0, 0, 1, 0.05, 0.1, 0)
UP = [Gdk.ScrollDirection.UP, Gdk.ScrollDirection.LEFT]
DOWN = [Gdk.ScrollDirection.DOWN, Gdk.ScrollDirection.RIGHT]
def _move_to(self, x, y, w, h, ww, wh, pad=3):
return ((x + (w - ww) // 2), y + h + pad)
|