@@ -32,7 +32,7 @@ def __init__(self):
32
32
self .downloads_timeout_timer = QTimer ()
33
33
self .selected_item = None
34
34
self .dialog = None
35
- self .downloads_request_mgr = None
35
+ self .downloads_request_mgr = TriblerRequestManager ()
36
36
self .request_mgr = None
37
37
38
38
def initialize_downloads_page (self ):
@@ -90,7 +90,7 @@ def load_downloads(self):
90
90
if self .window ().download_details_widget .currentIndex () == 3 :
91
91
url = "downloads?get_peers=1&get_pieces=1"
92
92
93
- self .downloads_request_mgr = TriblerRequestManager ()
93
+ self .downloads_request_mgr . generate_request_id ()
94
94
self .downloads_request_mgr .perform_request (url , self .on_received_downloads )
95
95
96
96
def on_received_downloads (self , downloads ):
@@ -289,9 +289,27 @@ def on_export_download(self):
289
289
QFileDialog .ShowDirsOnly )
290
290
291
291
if len (self .export_dir ) > 0 :
292
+ # Show confirmation dialog where we specify the name of the file
293
+ infohash = self .selected_item .download_info ['infohash' ]
294
+ self .dialog = ConfirmationDialog (self , "Export torrent file" ,
295
+ "Please enter the name of the torrent file:" ,
296
+ [('SAVE' , BUTTON_TYPE_NORMAL ), ('CANCEL' , BUTTON_TYPE_CONFIRM )],
297
+ show_input = True )
298
+ self .dialog .dialog_widget .dialog_input .setPlaceholderText ('Torrent file name' )
299
+ self .dialog .dialog_widget .dialog_input .setText ("%s.torrent" % infohash )
300
+ self .dialog .dialog_widget .dialog_input .setFocus ()
301
+ self .dialog .button_clicked .connect (self .on_export_download_dialog_done )
302
+ self .dialog .show ()
303
+
304
+ def on_export_download_dialog_done (self , action ):
305
+ if action == 0 :
306
+ filename = self .dialog .dialog_widget .dialog_input .text ()
292
307
self .request_mgr = TriblerRequestManager ()
293
308
self .request_mgr .download_file ("downloads/%s/torrent" % self .selected_item .download_info ['infohash' ],
294
- self .on_export_download_request_done )
309
+ lambda data : self .on_export_download_request_done (filename , data ))
310
+
311
+ self .dialog .setParent (None )
312
+ self .dialog = None
295
313
296
314
def on_export_download_request_done (self , filename , data ):
297
315
dest_path = os .path .join (self .export_dir , filename )
@@ -304,7 +322,8 @@ def on_export_download_request_done(self, filename, data):
304
322
"Error when exporting file" ,
305
323
"An error occurred when exporting the torrent file: %s" % str (exc ))
306
324
else :
307
- self .window ().tray_icon .showMessage ("Torrent file exported" , "Torrent file exported to %s" % dest_path )
325
+ if QSystemTrayIcon .isSystemTrayAvailable ():
326
+ self .window ().tray_icon .showMessage ("Torrent file exported" , "Torrent file exported to %s" % dest_path )
308
327
309
328
def on_right_click_item (self , pos ):
310
329
item_clicked = self .window ().downloads_list .itemAt (pos )
0 commit comments