sugar-toolkit-gtk3/shell/PeopleWindow.py
Marco Pesenti Gritti 0947581a11 A bunch of fixes...
2006-07-26 12:57:54 +02:00

30 lines
682 B
Python

import gtk
from sugar.chat.ActivityChat import ActivityChat
from PresenceView import PresenceView
class PeopleWindow(gtk.Window):
def __init__(self, shell, activity):
gtk.Window.__init__(self)
self.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DIALOG)
self.set_default_size(620, 440)
self.connect("delete_event", lambda w, e: w.hide_on_delete())
hbox = gtk.HBox(False, 12)
hbox.set_border_width(12)
presence_view = PresenceView(shell, activity)
hbox.pack_start(presence_view, False)
presence_view.show()
self._chat = ActivityChat(activity)
hbox.pack_start(self._chat)
self._chat.show()
self.add(hbox)
hbox.show()
def share(self):
self._chat.share()