Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/FirstTimeDialog.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/view/FirstTimeDialog.py')
-rw-r--r--shell/view/FirstTimeDialog.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/shell/view/FirstTimeDialog.py b/shell/view/FirstTimeDialog.py
new file mode 100644
index 0000000..abf6bd8
--- /dev/null
+++ b/shell/view/FirstTimeDialog.py
@@ -0,0 +1,36 @@
+import gtk
+
+from gettext import gettext as _
+
+import conf
+
+class FirstTimeDialog(gtk.Dialog):
+ def __init__(self):
+ gtk.Dialog.__init__(self)
+
+ label = gtk.Label(_('Nick Name:'))
+ label.set_alignment(0.0, 0.5)
+ self.vbox.pack_start(label)
+ label.show()
+
+ self._entry = gtk.Entry()
+ self.vbox.pack_start(self._entry)
+ self._entry.show()
+
+ button = gtk.Button(None, gtk.STOCK_OK)
+ self.vbox.pack_start(button)
+ button.connect('clicked', self.__ok_button_clicked_cb)
+ button.show()
+
+ def __ok_button_clicked_cb(self, button):
+ profile = conf.get_profile()
+ profile.set_nick_name(self._entry.get_text())
+ self.destroy()
+
+def get_profile():
+ profile = conf.get_profile()
+ if profile.get_nick_name() == None:
+ dialog = FirstTimeDialog()
+ dialog.connect('destroy', self.__first_time_dialog_destroy_cb)
+ dialog.show()
+ return profile