2006-10-15 01:24:45 +02:00
|
|
|
# Copyright (C) 2006, Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# 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 of the License, 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.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
2006-08-22 16:15:52 +02:00
|
|
|
import gtk
|
|
|
|
|
|
|
|
from gettext import gettext as _
|
|
|
|
|
2006-09-04 21:34:54 +02:00
|
|
|
import conf
|
2006-08-22 16:15:52 +02:00
|
|
|
|
2006-09-04 21:34:54 +02:00
|
|
|
class FirstTimeDialog(gtk.Dialog):
|
2006-08-22 16:15:52 +02:00
|
|
|
def __init__(self):
|
2006-09-04 21:34:54 +02:00
|
|
|
gtk.Dialog.__init__(self)
|
2006-08-22 16:15:52 +02:00
|
|
|
|
|
|
|
label = gtk.Label(_('Nick Name:'))
|
|
|
|
label.set_alignment(0.0, 0.5)
|
2006-09-04 21:34:54 +02:00
|
|
|
self.vbox.pack_start(label)
|
2006-08-22 16:15:52 +02:00
|
|
|
label.show()
|
|
|
|
|
|
|
|
self._entry = gtk.Entry()
|
2006-09-26 22:52:45 +02:00
|
|
|
self._entry.connect('changed', self._entry_changed_cb)
|
2006-09-04 21:34:54 +02:00
|
|
|
self.vbox.pack_start(self._entry)
|
2006-08-22 16:15:52 +02:00
|
|
|
self._entry.show()
|
|
|
|
|
2006-09-26 22:52:45 +02:00
|
|
|
self._ok = gtk.Button(None, gtk.STOCK_OK)
|
|
|
|
self._ok.set_sensitive(False)
|
|
|
|
self.vbox.pack_start(self._ok)
|
|
|
|
self._ok.connect('clicked', self.__ok_button_clicked_cb)
|
|
|
|
self._ok.show()
|
|
|
|
|
|
|
|
def _entry_changed_cb(self, entry):
|
|
|
|
valid = (len(entry.get_text()) > 0)
|
|
|
|
self._ok.set_sensitive(valid)
|
2006-08-22 16:15:52 +02:00
|
|
|
|
|
|
|
def __ok_button_clicked_cb(self, button):
|
|
|
|
profile = conf.get_profile()
|
|
|
|
profile.set_nick_name(self._entry.get_text())
|
|
|
|
self.destroy()
|
2006-09-04 21:34:54 +02:00
|
|
|
|
|
|
|
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
|