Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/PeopleWindow.py
blob: 76e0addefd64b28b354ef9ec021941850b029a14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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, 460)

		hbox = gtk.HBox(False, 12)
		hbox.set_border_width(12)

		presence_view = PresenceView(shell)
		presence_view.set_activity(activity)
		hbox.pack_start(presence_view, False)
		presence_view.show()

		chat = ActivityChat(activity)
		hbox.pack_start(chat)
		chat.show()

		self.add(hbox)
		hbox.show()