/usr/lib/exaile/xlgui/collection.py is in exaile 0.3.2.2-2.
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 | # Copyright (C) 2008-2010 Adam Olsen
#
# 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., 675 Mass Ave, Cambridge, MA 02139, USA.
#
#
# The developers of the Exaile media player hereby grant permission
# for non-GPL compatible GStreamer and Exaile plugins to be used and
# distributed together with GStreamer and Exaile. This permission is
# above and beyond the permissions granted by the GPL license by which
# Exaile 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.
import logging
import os
import gio
import gobject
import gtk
from xl.nls import gettext as _
from xl import event, xdg, collection
from xlgui.widgets import dialogs
logger = logging.getLogger(__name__)
class CollectionManagerDialog(object):
"""
Allows you to choose which directories are in your library
"""
def __init__(self, parent, main, collection):
"""
Initializes the dialog
"""
self.parent = parent
self.main = main
self.collection = collection
self.builder = gtk.Builder()
self.builder.add_from_file(xdg.get_data_path('ui/collection_manager.ui'))
self.dialog = self.builder.get_object('CollectionManager')
self.list = dialogs.ListBox(self.builder.get_object('lm_list_box'))
self.add_list = []
self.remove_list = []
self.dialog.set_transient_for(self.parent)
self.message = dialogs.MessageBar(
parent=self.builder.get_object('content_area'),
buttons=gtk.BUTTONS_CLOSE
)
self.builder.connect_signals(self)
items = collection.libraries.keys()
self.list.set_rows(items)
def run(self):
"""
Runs the dialog, waiting for a response before any other gui
events occur
"""
return self.dialog.run()
def get_response(self):
"""
Gets the response id
"""
return self.dialog.get_response()
def destroy(self):
"""
Destroys the dialog
"""
self.dialog.destroy()
def get_items(self):
"""
Returns the items in the dialog
"""
return self.list.rows
def on_add_button_clicked(self, widget):
"""
Adds a path to the list
"""
dialog = gtk.FileChooserDialog(_("Add a Directory"),
self.parent, gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER,
(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
gtk.STOCK_ADD, gtk.RESPONSE_OK))
dialog.set_current_folder(xdg.get_last_dir())
dialog.set_local_only(False) # enable gio
response = dialog.run()
dialog.hide()
if response == gtk.RESPONSE_OK:
gloc = gio.File(dialog.get_uri())
items = [ (gio.File(i), i) for i in self.get_items() ]
removes = []
for gitem, item in items:
if gloc.has_prefix(gitem):
self.message.show_warning(
_('Directory not added.'),
_('The directory is already in your collection '
'or is a subdirectory of another directory in '
'your collection.')
)
break
elif gitem.has_prefix(gloc):
removes.append(item)
else:
self.list.append(gloc.get_uri())
for item in removes:
try:
self.list.remove(item)
except:
pass
dialog.destroy()
def on_remove_button_clicked(self, widget):
"""
removes a path from the list
"""
item = self.list.get_selection()
if item is None:
return
index = self.list.rows.index(item)
self.list.remove(item)
selection = self.list.list.get_selection()
if index > len(self.list.rows):
selection.select_path(index - 1)
else:
selection.select_path(index)
|