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-19 01:29:42 +02:00
|
|
|
import gtk
|
2006-10-03 16:31:32 +02:00
|
|
|
import hippo
|
2006-08-29 11:48:20 +02:00
|
|
|
import cairo
|
2006-08-19 01:29:42 +02:00
|
|
|
|
2006-10-04 00:55:20 +02:00
|
|
|
from sugar.graphics.menushell import MenuShell
|
2006-10-18 16:23:06 +02:00
|
|
|
import sugar
|
2006-10-03 16:31:32 +02:00
|
|
|
from view.home.MeshBox import MeshBox
|
2006-10-04 14:23:15 +02:00
|
|
|
from view.home.HomeBox import HomeBox
|
2006-10-03 16:31:32 +02:00
|
|
|
from view.home.FriendsBox import FriendsBox
|
2006-08-19 01:29:42 +02:00
|
|
|
|
|
|
|
class HomeWindow(gtk.Window):
|
2006-12-04 20:12:24 +01:00
|
|
|
def __init__(self, shell):
|
|
|
|
gtk.Window.__init__(self)
|
|
|
|
self._shell = shell
|
2006-08-29 17:12:39 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self.set_default_size(gtk.gdk.screen_width(),
|
|
|
|
gtk.gdk.screen_height())
|
2006-10-07 14:33:08 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self.realize()
|
|
|
|
self.window.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DESKTOP)
|
2006-12-24 12:19:24 +01:00
|
|
|
self.connect("key-release-event", self._key_release_cb)
|
2006-08-29 11:48:20 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self._nb = gtk.Notebook()
|
|
|
|
self._nb.set_show_border(False)
|
|
|
|
self._nb.set_show_tabs(False)
|
2006-09-10 01:33:34 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self.add(self._nb)
|
|
|
|
self._nb.show()
|
2006-09-10 01:33:34 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
canvas = hippo.Canvas()
|
2006-12-24 12:19:24 +01:00
|
|
|
self._home_box = HomeBox(shell)
|
|
|
|
canvas.set_root(self._home_box)
|
2006-12-04 20:12:24 +01:00
|
|
|
self._nb.append_page(canvas)
|
|
|
|
canvas.show()
|
2006-10-03 16:31:32 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
canvas = hippo.Canvas()
|
|
|
|
box = FriendsBox(shell, MenuShell(canvas))
|
|
|
|
canvas.set_root(box)
|
|
|
|
self._nb.append_page(canvas)
|
|
|
|
canvas.show()
|
2006-10-03 16:31:32 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
canvas = hippo.Canvas()
|
|
|
|
box = MeshBox(shell, MenuShell(canvas))
|
|
|
|
canvas.set_root(box)
|
|
|
|
self._nb.append_page(canvas)
|
|
|
|
canvas.show()
|
2006-09-15 12:40:22 +02:00
|
|
|
|
2006-12-24 12:19:24 +01:00
|
|
|
def _key_release_cb(self, widget, event):
|
|
|
|
keyname = gtk.gdk.keyval_name(event.keyval)
|
|
|
|
if keyname == "Alt_L":
|
|
|
|
self._home_box.release()
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def set_zoom_level(self, level):
|
|
|
|
if level == sugar.ZOOM_HOME:
|
|
|
|
self._nb.set_current_page(0)
|
|
|
|
elif level == sugar.ZOOM_FRIENDS:
|
|
|
|
self._nb.set_current_page(1)
|
|
|
|
elif level == sugar.ZOOM_MESH:
|
|
|
|
self._nb.set_current_page(2)
|
2006-12-24 12:19:24 +01:00
|
|
|
|
|
|
|
def get_home_box(self):
|
|
|
|
return self._home_box
|