Author: andar
Revision: 6016
Log:
Add an error dialog when trying to add a duplicate host
Center the add host dialog over the connection manager
Diff:
Modified: branches/1.2_RC/deluge/ui/gtkui/connectionmanager.py
===================================================================
--- branches/1.2_RC/deluge/ui/gtkui/connectionmanager.py 2009-12-13
20:49:23 UTC (rev 6015)
+++ branches/1.2_RC/deluge/ui/gtkui/connectionmanager.py 2009-12-13
21:25:22 UTC (rev 6016)
@@ -459,7 +459,8 @@
def on_button_addhost_clicked(self, widget):
log.debug("on_button_addhost_clicked")
dialog = self.glade.get_widget("addhost_dialog")
- dialog.set_icon(common.get_logo(16))
+ dialog.set_transient_for(self.connection_manager)
+ dialog.set_position(gtk.WIN_POS_CENTER_ON_PARENT)
hostname_entry = self.glade.get_widget("entry_hostname")
port_spinbutton = self.glade.get_widget("spinbutton_port")
username_entry = self.glade.get_widget("entry_username")
@@ -471,8 +472,16 @@
hostname = hostname_entry.get_text()
# We add the host
- self.add_host(hostname, port_spinbutton.get_value_as_int(),
username, password)
+ try:
+ self.add_host(hostname, port_spinbutton.get_value_as_int(),
username, password)
+ except Exception, e:
+ from deluge.ui.gtkui.dialogs import ErrorDialog
+ ErrorDialog(_("Error Adding Host"), e).run()
+ username_entry.set_text("")
+ password_entry.set_text("")
+ hostname_entry.set_text("")
+ port_spinbutton.set_value(58846)
dialog.hide()
def on_button_removehost_clicked(self, widget):
Modified: trunk/deluge/ui/gtkui/connectionmanager.py
===================================================================
--- trunk/deluge/ui/gtkui/connectionmanager.py 2009-12-13 20:49:23 UTC (rev
6015)
+++ trunk/deluge/ui/gtkui/connectionmanager.py 2009-12-13 21:25:22 UTC (rev
6016)
@@ -459,7 +459,8 @@
def on_button_addhost_clicked(self, widget):
log.debug("on_button_addhost_clicked")
dialog = self.glade.get_widget("addhost_dialog")
- dialog.set_icon(common.get_logo(16))
+ dialog.set_transient_for(self.connection_manager)
+ dialog.set_position(gtk.WIN_POS_CENTER_ON_PARENT)
hostname_entry = self.glade.get_widget("entry_hostname")
port_spinbutton = self.glade.get_widget("spinbutton_port")
username_entry = self.glade.get_widget("entry_username")
@@ -471,8 +472,16 @@
hostname = hostname_entry.get_text()
# We add the host
- self.add_host(hostname, port_spinbutton.get_value_as_int(),
username, password)
+ try:
+ self.add_host(hostname, port_spinbutton.get_value_as_int(),
username, password)
+ except Exception, e:
+ from deluge.ui.gtkui.dialogs import ErrorDialog
+ ErrorDialog(_("Error Adding Host"), e).run()
+ username_entry.set_text("")
+ password_entry.set_text("")
+ hostname_entry.set_text("")
+ port_spinbutton.set_value(58846)
dialog.hide()
def on_button_removehost_clicked(self, widget):
--
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en.