2007-11-22 00:02:06 +00:00
|
|
|
# Copyright (C) Marcos Pinto 2007 <markybob@gmail.com>
|
2007-08-05 04:07:17 +00:00
|
|
|
#
|
|
|
|
# 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.
|
2007-11-22 00:02:06 +00:00
|
|
|
#
|
2007-08-05 04:07:17 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-11-22 00:02:06 +00:00
|
|
|
# along with this program. If not, write to:
|
|
|
|
# The Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor
|
|
|
|
# Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
# In addition, as a special exception, the copyright holders give
|
|
|
|
# permission to link the code of portions of this program with the OpenSSL
|
|
|
|
# library.
|
|
|
|
# You must obey the GNU General Public License in all respects for all of
|
|
|
|
# the code used other than OpenSSL. If you modify file(s) with this
|
|
|
|
# exception, you may extend this exception to your version of the file(s),
|
|
|
|
# but you are not obligated to do so. If you do not wish to do so, delete
|
|
|
|
# this exception statement from your version. If you delete this exception
|
|
|
|
# statement from all source files in the program, then also delete it here.
|
2007-08-05 04:07:17 +00:00
|
|
|
|
|
|
|
### Initialization ###
|
|
|
|
|
2007-11-22 00:02:06 +00:00
|
|
|
plugin_name = "Torrent Files"
|
2007-08-05 04:07:17 +00:00
|
|
|
plugin_author = "Deluge"
|
|
|
|
plugin_version = "0.2"
|
|
|
|
plugin_description = _("""
|
2007-08-27 06:03:16 +00:00
|
|
|
This plugin shows you the files inside a torrent and allows you to set \
|
|
|
|
priorities for them and choose which ones you want or don't want to download.
|
2007-08-05 04:07:17 +00:00
|
|
|
""")
|
|
|
|
|
|
|
|
def deluge_init(deluge_path):
|
|
|
|
global path
|
|
|
|
path = deluge_path
|
|
|
|
|
|
|
|
def enable(core, interface):
|
|
|
|
global path
|
|
|
|
return TorrentFiles(path, core, interface)
|
|
|
|
|
|
|
|
### The Plugin ###
|
|
|
|
import gtk
|
2007-08-06 03:23:32 +00:00
|
|
|
|
|
|
|
import deluge
|
2007-08-05 04:07:17 +00:00
|
|
|
from TorrentFiles.tab_files import FilesTabManager
|
2007-12-14 01:19:39 +00:00
|
|
|
import os.path
|
2007-08-05 04:07:17 +00:00
|
|
|
|
|
|
|
class TorrentFiles:
|
|
|
|
def __init__(self, path, core, interface):
|
|
|
|
print "Loading TorrentFiles plugin..."
|
|
|
|
self.parent = interface
|
2007-08-06 04:02:42 +00:00
|
|
|
self.manager = core
|
2007-12-14 01:19:39 +00:00
|
|
|
config_file = os.path.join(deluge.common.CONFIG_DIR, "files.conf")
|
2007-08-09 18:16:28 +00:00
|
|
|
self.config = deluge.pref.Preferences(config_file, False,
|
|
|
|
defaults={'file_viewer': 'xdg-open'})
|
|
|
|
try:
|
|
|
|
self.config.load()
|
|
|
|
except IOError:
|
|
|
|
# File does not exist
|
|
|
|
pass
|
|
|
|
|
2007-12-14 01:19:39 +00:00
|
|
|
self.glade = gtk.glade.XML(os.path.join(path, "files_preferences.glade"))
|
2007-08-09 18:16:28 +00:00
|
|
|
self.dialog = self.glade.get_widget("dialog")
|
|
|
|
self.glade.signal_autoconnect({
|
|
|
|
'on_button_cancel_clicked': self.on_button_cancel_clicked,
|
|
|
|
'on_button_ok_clicked': self.on_button_ok_clicked
|
|
|
|
})
|
2007-08-06 04:02:42 +00:00
|
|
|
|
2007-08-06 03:23:32 +00:00
|
|
|
tree_view = gtk.TreeView()
|
2007-10-14 03:55:53 +00:00
|
|
|
tree_view.set_rules_hint(True)
|
2007-08-06 03:23:32 +00:00
|
|
|
scrolled_window = gtk.ScrolledWindow()
|
|
|
|
scrolled_window.add(tree_view)
|
|
|
|
scrolled_window.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
|
|
|
|
self.top_widget = scrolled_window
|
2007-08-05 04:07:17 +00:00
|
|
|
|
2007-08-06 03:23:32 +00:00
|
|
|
self.parent_notebook = self.parent.notebook
|
|
|
|
self.parent_notebook.append_page(scrolled_window,
|
|
|
|
gtk.Label(_("Files")))
|
|
|
|
|
|
|
|
tree_view.show()
|
|
|
|
scrolled_window.show()
|
|
|
|
|
|
|
|
self.tab_files = FilesTabManager(tree_view, core)
|
2007-08-05 04:07:17 +00:00
|
|
|
self.tab_files.build_file_view()
|
2007-08-09 18:16:28 +00:00
|
|
|
self.tab_files.set_file_viewer(self.config.get("file_viewer"))
|
2007-08-05 04:07:17 +00:00
|
|
|
|
|
|
|
def unload(self):
|
|
|
|
self.tab_files.clear_file_store()
|
2007-08-06 03:23:32 +00:00
|
|
|
tab_page = self.parent_notebook.page_num(self.top_widget)
|
|
|
|
self.parent_notebook.remove_page(tab_page)
|
2007-08-09 18:16:28 +00:00
|
|
|
self.config.save()
|
2007-08-05 04:07:17 +00:00
|
|
|
|
|
|
|
def update(self):
|
|
|
|
if not self.parent.update_interface:
|
|
|
|
return
|
2007-08-06 03:23:32 +00:00
|
|
|
|
|
|
|
tab_page = self.parent_notebook.page_num(self.top_widget)
|
|
|
|
current_page = self.parent_notebook.get_current_page()
|
|
|
|
|
|
|
|
if tab_page == current_page:
|
|
|
|
unique_id = self.parent.get_selected_torrent()
|
|
|
|
|
2007-08-06 04:02:42 +00:00
|
|
|
if unique_id is None or \
|
|
|
|
unique_id in self.manager.removed_unique_ids:
|
2007-08-06 03:23:32 +00:00
|
|
|
# If no torrents added or more than one torrent selected
|
|
|
|
self.tab_files.clear_file_store()
|
|
|
|
self.tab_files.set_unique_id(None)
|
|
|
|
return
|
|
|
|
|
|
|
|
if self.tab_files.file_unique_id != unique_id:
|
|
|
|
self.tab_files.clear_file_store()
|
|
|
|
self.tab_files.set_unique_id(unique_id)
|
|
|
|
self.tab_files.prepare_file_store()
|
|
|
|
else:
|
|
|
|
self.tab_files.update_file_store()
|
2007-08-09 18:16:28 +00:00
|
|
|
|
|
|
|
def configure(self, window):
|
|
|
|
self.glade.get_widget("file_viewer").\
|
|
|
|
set_text(self.config.get("file_viewer"))
|
2007-10-17 03:12:26 +00:00
|
|
|
if deluge.common.windows_check():
|
|
|
|
self.glade.get_widget("file_viewer").set_sensitive(False)
|
2007-08-09 18:16:28 +00:00
|
|
|
self.dialog.set_transient_for(window)
|
|
|
|
self.dialog.show()
|
|
|
|
|
|
|
|
def on_button_ok_clicked(self, button):
|
|
|
|
self.dialog.hide()
|
|
|
|
|
|
|
|
self.config.set("file_viewer",
|
|
|
|
self.glade.get_widget("file_viewer").get_text())
|
|
|
|
self.config.save()
|
|
|
|
|
|
|
|
self.tab_files.set_file_viewer(self.config.get("file_viewer"))
|
|
|
|
|
|
|
|
def on_button_cancel_clicked(self, button):
|
|
|
|
self.dialog.hide()
|