Add an error dialog when trying to add a duplicate host

Center the add host dialog over the connection manager
This commit is contained in:
Andrew Resch 2009-12-13 21:25:22 +00:00
parent cd7b5082a0
commit 773f65d708
1 changed files with 11 additions and 2 deletions

View File

@ -459,7 +459,8 @@ class ConnectionManager(component.Component):
def on_button_addhost_clicked(self, widget): def on_button_addhost_clicked(self, widget):
log.debug("on_button_addhost_clicked") log.debug("on_button_addhost_clicked")
dialog = self.glade.get_widget("addhost_dialog") 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") hostname_entry = self.glade.get_widget("entry_hostname")
port_spinbutton = self.glade.get_widget("spinbutton_port") port_spinbutton = self.glade.get_widget("spinbutton_port")
username_entry = self.glade.get_widget("entry_username") username_entry = self.glade.get_widget("entry_username")
@ -471,8 +472,16 @@ class ConnectionManager(component.Component):
hostname = hostname_entry.get_text() hostname = hostname_entry.get_text()
# We add the host # 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() dialog.hide()
def on_button_removehost_clicked(self, widget): def on_button_removehost_clicked(self, widget):