2006-09-21 16:09:23 +02:00
|
|
|
import gobject
|
2006-06-01 00:01:24 +02:00
|
|
|
import gtk
|
|
|
|
|
2006-09-21 16:09:23 +02:00
|
|
|
class AddressItem(gtk.ToolItem):
|
|
|
|
__gsignals__ = {
|
|
|
|
'open-address': (gobject.SIGNAL_RUN_FIRST,
|
|
|
|
gobject.TYPE_NONE, ([str])),
|
|
|
|
}
|
2006-06-01 00:01:24 +02:00
|
|
|
|
2006-09-21 16:09:23 +02:00
|
|
|
def __init__(self):
|
|
|
|
gtk.ToolItem.__init__(self)
|
2006-06-01 00:01:24 +02:00
|
|
|
|
2006-09-21 16:09:23 +02:00
|
|
|
entry = gtk.Entry()
|
|
|
|
width = int(gtk.gdk.screen_width() / 2)
|
|
|
|
entry.set_size_request(width, -1)
|
|
|
|
entry.connect("activate", self.__activate_cb)
|
|
|
|
self.add(entry)
|
|
|
|
entry.show()
|
2006-06-01 00:01:24 +02:00
|
|
|
|
|
|
|
def __activate_cb(self, entry):
|
2006-09-21 16:09:23 +02:00
|
|
|
self.emit('open-address', entry.get_text())
|