/usr/lib/python3/dist-packages/gnomemusic/searchbar.py is in gnome-music 3.18.2-1ubuntu1.
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 | # Copyright (c) 2013 Seif Lotfy <seif@lotfy.com>
# Copyright (c) 2013 Vadim Rutkovsky <vrutkovs@redhat.com>
# Copyright (c) 2014 Arnel A. Borja <kyoushuu@yahoo.com>
#
# GNOME Music 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.
#
# GNOME Music 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 GNOME Music; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# The GNOME Music authors hereby grant permission for non-GPL compatible
# GStreamer plugins to be used and distributed together with GStreamer
# and GNOME Music. This permission is above and beyond the permissions
# granted by the GPL license by which GNOME Music is covered. If you
# modify this code, you may extend this exception to your version of the
# code, but you are not obligated to do so. If you do not wish to do so,
# delete this exception statement from your version.
from gi.repository import Gtk, Gd, GObject, Pango, GLib
from gettext import gettext as _
from gnomemusic.grilo import grilo
from gnomemusic import log
import logging
logger = logging.getLogger(__name__)
class BaseModelColumns():
ID = 0
NAME = 1
HEADING_TEXT = 2
class BaseManager:
def __repr__(self):
return '<BaseManager>'
@log
def __init__(self, id, label, entry):
self.id = id
self.label = label
self.entry = entry
self.tag = Gd.TaggedEntryTag()
self.tag.set_style('music-entry-tag')
self.tag.manager = self
self.values = []
@log
def fill_in_values(self, model):
if self.id == "search":
self.values = [
['', '', self.label],
['search_all', _("All"), ''],
['search_artist', _("Artist"), ''],
['search_album', _("Album"), ''],
['search_track', _("Track Title"), ''],
]
for value in self.values:
_iter = model.append()
model.set(_iter, [0, 1, 2], value)
self.selected_id = self.values[1][BaseModelColumns.ID]
@log
def get_active(self):
return self.selected_id
@log
def set_active(self, selected_id):
if selected_id == "":
return
selected_value = [x for x in self.values if x[BaseModelColumns.ID] == selected_id]
if selected_value != []:
selected_value = selected_value[0]
self.selected_id = selected_value[BaseModelColumns.ID]
# If selected values has first entry then it is a default value
# No need to set the tag there
if (selected_value[BaseModelColumns.ID] != 'search_all' and
selected_value[BaseModelColumns.ID] != 'grl-tracker-source'):
self.entry.add_tag(self.tag)
self.tag.set_label(selected_value[BaseModelColumns.NAME])
else:
self.entry.remove_tag(self.tag)
@log
def reset_to_default(self):
self.set_active(self.values[0][BaseModelColumns.ID])
class SourceManager(BaseManager):
def __repr__(self):
return '<SourceManager>'
@log
def __init__(self, id, label, entry):
super(SourceManager, self).__init__(id, label, entry)
self.values.append(['', '', self.label])
self.values.append(['all', _("All"), ""])
self.values.append(['grl-tracker-source', _("Local"), ''])
@log
def fill_in_values(self, model):
self.model = model
super(SourceManager, self).fill_in_values(model)
super(SourceManager, self).set_active('grl-tracker-source')
@log
def add_new_source(self, klass, source):
value = [source.get_id(), source.get_name(), '']
_iter = self.model.append()
self.model.set(_iter, [0, 1, 2], value)
self.values.append(value)
@log
def set_active(self, selected_id):
if selected_id == "":
return
super(SourceManager, self).set_active(selected_id)
src = grilo.sources[selected_id] if selected_id != 'all' else None
grilo.search_source = src
class FilterView():
def __repr__(self):
return '<FilterView>'
@log
def __init__(self, manager, dropdown):
self.manager = manager
self.dropdown = dropdown
self.model = Gtk.ListStore.new([
GObject.TYPE_STRING, # ID
GObject.TYPE_STRING, # NAME
GObject.TYPE_STRING, # TEXT
])
self.manager.fill_in_values(self.model)
self.view = Gtk.TreeView()
self.view.set_activate_on_single_click(True)
self.view.set_headers_visible(False)
self.view.set_enable_search(False)
self.view.set_model(self.model)
self.view.get_selection().set_mode(Gtk.SelectionMode.NONE)
self.view.connect("row-activated", self._row_activated)
col = Gtk.TreeViewColumn()
self.view.append_column(col)
self._rendererHeading = Gtk.CellRendererText(weight=Pango.Weight.BOLD, weight_set=True)
col.pack_start(self._rendererHeading, False)
col.add_attribute(self._rendererHeading, 'text', BaseModelColumns.HEADING_TEXT)
col.set_cell_data_func(self._rendererHeading, self._visibilityForHeading, True)
self._rendererRadio = Gtk.CellRendererToggle(radio=True, mode=Gtk.CellRendererMode.INERT)
col.pack_start(self._rendererRadio, False)
col.set_cell_data_func(self._rendererRadio, self._visibilityForHeading, [False, self._render_radio])
self._rendererText = Gtk.CellRendererText()
col.pack_start(self._rendererText, True)
col.add_attribute(self._rendererText, 'text', BaseModelColumns.NAME)
col.set_cell_data_func(self._rendererText, self._visibilityForHeading, False)
self.view.show()
@log
def _row_activated(self, view, path, col):
id = self.model.get_value(self.model.get_iter(path), BaseModelColumns.ID)
self.dropdown.do_select(self.manager, id)
self.manager.entry.emit('changed')
@log
def _render_radio(self, col, cell, model, _iter):
id = model.get_value(_iter, BaseModelColumns.ID)
cell.set_active(self.manager.get_active() == id)
@log
def _visibilityForHeading(self, col, cell, model, _iter, additional_arguments):
additionalFunc = None
visible = additional_arguments
if isinstance(additional_arguments, list):
visible = additional_arguments[0]
additionalFunc = additional_arguments[1]
cell.set_visible(visible == (model[_iter][BaseModelColumns.HEADING_TEXT] != ""))
if additionalFunc:
additionalFunc(col, cell, model, _iter)
class DropDown(Gtk.Revealer):
def __repr__(self):
return '<DropDown>'
@log
def __init__(self):
Gtk.Revealer.__init__(self, halign=Gtk.Align.CENTER, valign=Gtk.Align.START)
self._grid = Gtk.Grid(orientation=Gtk.Orientation.HORIZONTAL)
frame = Gtk.Frame(shadow_type=Gtk.ShadowType.IN, opacity=0.9)
frame.get_style_context().add_class('documents-dropdown')
frame.add(self._grid)
frame.show_all()
self.add(frame)
@log
def initialize_filters(self, searchbar):
self.sourcesManager = SourceManager('source', _("Sources"), searchbar._search_entry)
self.sourcesFilter = FilterView(self.sourcesManager, self)
self._grid.add(self.sourcesFilter.view)
grilo.connect('new-source-added', self.sourcesManager.add_new_source)
grilo._find_sources()
self.searchFieldsManager = BaseManager('search', _("Match"), searchbar._search_entry)
self.searchFieldsFilter = FilterView(self.searchFieldsManager, self)
self._grid.add(self.searchFieldsFilter.view)
self._grid.show_all()
self.searchFieldsFilter.view.set_sensitive(
self.sourcesManager.get_active() == 'grl-tracker-source'
)
@log
def do_select(self, manager, id):
manager.set_active(id)
if manager == self.sourcesManager:
self.searchFieldsFilter.view.set_sensitive(id == 'grl-tracker-source')
class Searchbar(Gtk.Revealer):
def __repr__(self):
return '<Searchbar>'
@log
def __init__(self, stack_switcher, search_button, dropdown):
Gtk.Revealer.__init__(self)
self.timeout = None
self.stack_switcher = stack_switcher
self._search_button = search_button
self.dropdown = dropdown
self._searchContainer = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, halign=Gtk.Align.CENTER)
self._searchContainer.get_style_context().add_class('linked')
self._search_entry = Gd.TaggedEntry(width_request=500, halign=Gtk.Align.CENTER)
self._search_entry.connect("changed", self.search_entry_timeout)
self._search_entry.show()
self._searchContainer.add(self._search_entry)
self._dropDownButtonArrow = Gtk.Arrow(arrow_type=Gtk.ArrowType.DOWN, shadow_type=Gtk.ShadowType.NONE)
self._dropDownButton = Gtk.ToggleButton()
self._dropDownButton.add(self._dropDownButtonArrow)
self._dropDownButton.get_style_context().add_class('raised')
self._dropDownButton.get_style_context().add_class('image-button')
self._dropDownButton.connect("toggled", self._drop_down_button_toggled)
self._dropDownButton.show_all()
self._searchContainer.add(self._dropDownButton)
self._search_entry.connect("tag-button-clicked", self._search_entry_tag_button_clicked)
self._searchContainer.show_all()
toolbar = Gtk.Toolbar()
toolbar.get_style_context().add_class("search-bar")
toolbar.show()
self.add(toolbar)
item = Gtk.ToolItem()
item.set_expand(True)
item.show()
toolbar.insert(item, 0)
item.add(self._searchContainer)
@log
def _drop_down_button_toggled(self, *args):
self.dropdown.set_reveal_child(self._dropDownButton.get_active())
@log
def _search_entry_tag_button_clicked(self, entry, tag):
tag.manager.set_active(tag.manager.values[1][BaseModelColumns.ID])
@log
def search_entry_timeout(self, widget):
if self.timeout:
GLib.source_remove(self.timeout)
self.timeout = GLib.timeout_add(500, self.search_entry_changed, widget)
@log
def search_entry_changed(self, widget):
self.timeout = None
search_term = self._search_entry.get_text()
if grilo.search_source:
fields_filter = self.dropdown.searchFieldsManager.get_active()
else:
fields_filter = 'search_all'
stack = self.stack_switcher.get_stack()
if search_term != "":
stack.set_visible_child_name('search')
view = stack.get_visible_child()
view.set_search_text(search_term, fields_filter)
self._dropDownButton.set_active(False)
self.dropdown.set_reveal_child(False)
return False
@log
def show_bar(self, show, clear=True):
self.set_reveal_child(show)
self._search_button.set_active(show)
if show:
if clear:
self._search_entry.set_text('')
self._search_entry.grab_focus()
else:
self._dropDownButton.set_active(False)
@log
def toggle_bar(self):
self.show_bar(not self.get_child_revealed())
|