2007-06-24 14:45:05 +02:00
|
|
|
# Copyright (C) 2006-2007 Red Hat, Inc.
|
2006-10-15 01:24:45 +02:00
|
|
|
#
|
|
|
|
# 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-09-07 15:11:51 +02:00
|
|
|
import gtk
|
2006-10-02 01:50:43 +02:00
|
|
|
import hippo
|
2006-09-07 15:11:51 +02:00
|
|
|
|
2007-07-31 15:21:09 +02:00
|
|
|
from sugar.graphics import style
|
2006-10-18 16:23:06 +02:00
|
|
|
|
2007-05-01 18:26:26 +02:00
|
|
|
class FrameWindow(gtk.Window):
|
|
|
|
__gtype_name__ = 'SugarFrameWindow'
|
2007-08-16 16:46:21 +02:00
|
|
|
|
|
|
|
def __init__(self, position):
|
2007-04-26 11:31:41 +02:00
|
|
|
gtk.Window.__init__(self)
|
2007-03-12 16:09:41 +01:00
|
|
|
self.hover = False
|
2007-08-17 16:18:57 +02:00
|
|
|
self.size = style.GRID_CELL_SIZE + style.LINE_WIDTH
|
2007-03-12 16:09:41 +01:00
|
|
|
|
2007-08-16 16:46:21 +02:00
|
|
|
self._position = position
|
2006-09-13 13:50:00 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self.set_decorated(False)
|
|
|
|
self.connect('realize', self._realize_cb)
|
2007-03-12 16:09:41 +01:00
|
|
|
self.connect('enter-notify-event', self._enter_notify_cb)
|
|
|
|
self.connect('leave-notify-event', self._leave_notify_cb)
|
2006-09-07 15:11:51 +02:00
|
|
|
|
2007-04-26 11:31:41 +02:00
|
|
|
self._canvas = hippo.Canvas()
|
|
|
|
self.add(self._canvas)
|
|
|
|
self._canvas.show()
|
|
|
|
|
2007-08-16 16:46:21 +02:00
|
|
|
box = hippo.CanvasBox()
|
|
|
|
self._canvas.set_root(box)
|
|
|
|
|
|
|
|
padding = style.GRID_CELL_SIZE
|
|
|
|
if self._position == gtk.POS_TOP or self._position == gtk.POS_BOTTOM:
|
|
|
|
box.props.orientation = hippo.ORIENTATION_HORIZONTAL
|
|
|
|
box.props.padding_left = padding
|
|
|
|
box.props.padding_right = padding
|
|
|
|
box.props.padding_top = 0
|
|
|
|
box.props.padding_bottom = 0
|
|
|
|
else:
|
|
|
|
box.props.orientation = hippo.ORIENTATION_VERTICAL
|
|
|
|
box.props.padding_left = 0
|
|
|
|
box.props.padding_right = 0
|
|
|
|
box.props.padding_top = padding
|
|
|
|
box.props.padding_bottom = padding
|
|
|
|
|
|
|
|
self._bg = hippo.CanvasBox(
|
|
|
|
border_color=style.COLOR_BUTTON_GREY.get_int())
|
|
|
|
|
|
|
|
border = style.LINE_WIDTH
|
|
|
|
if position == gtk.POS_TOP:
|
|
|
|
self._bg.props.orientation = hippo.ORIENTATION_HORIZONTAL
|
|
|
|
self._bg.props.border_bottom = border
|
|
|
|
elif position == gtk.POS_BOTTOM:
|
|
|
|
self._bg.props.orientation = hippo.ORIENTATION_HORIZONTAL
|
|
|
|
self._bg.props.border_top = border
|
|
|
|
elif position == gtk.POS_LEFT:
|
|
|
|
self._bg.props.orientation = hippo.ORIENTATION_VERTICAL
|
|
|
|
self._bg.props.border_right = border
|
|
|
|
elif position == gtk.POS_RIGHT:
|
|
|
|
self._bg.props.orientation = hippo.ORIENTATION_VERTICAL
|
|
|
|
self._bg.props.border_left = border
|
|
|
|
|
|
|
|
box.append(self._bg, hippo.PACK_EXPAND)
|
2007-02-20 16:23:49 +01:00
|
|
|
|
2007-02-24 19:28:04 +01:00
|
|
|
self._update_size()
|
2007-02-27 13:41:51 +01:00
|
|
|
|
2007-02-24 19:28:04 +01:00
|
|
|
screen = gtk.gdk.screen_get_default()
|
|
|
|
screen.connect('size-changed', self._size_changed_cb)
|
|
|
|
|
2007-08-16 16:46:21 +02:00
|
|
|
def append(self, child, flags=0):
|
|
|
|
self._bg.append(child, flags)
|
2007-08-17 16:18:57 +02:00
|
|
|
|
2007-02-24 19:28:04 +01:00
|
|
|
def _update_size(self):
|
2007-08-16 16:46:21 +02:00
|
|
|
if self._position == gtk.POS_TOP or self._position == gtk.POS_BOTTOM:
|
2007-08-17 16:18:57 +02:00
|
|
|
self.resize(gtk.gdk.screen_width(), self.size)
|
2007-02-20 16:23:49 +01:00
|
|
|
else:
|
2007-08-17 16:18:57 +02:00
|
|
|
self.resize(self.size, gtk.gdk.screen_height())
|
2006-12-13 22:36:05 +01:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _realize_cb(self, widget):
|
|
|
|
self.window.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DIALOG)
|
|
|
|
self.window.set_accept_focus(False)
|
2007-03-12 16:09:41 +01:00
|
|
|
|
|
|
|
def _enter_notify_cb(self, window, event):
|
2007-09-24 23:37:26 +02:00
|
|
|
if event.detail != gtk.gdk.NOTIFY_INFERIOR:
|
|
|
|
self.hover = True
|
2007-03-12 16:09:41 +01:00
|
|
|
|
|
|
|
def _leave_notify_cb(self, window, event):
|
2007-09-24 23:37:26 +02:00
|
|
|
if event.detail != gtk.gdk.NOTIFY_INFERIOR:
|
|
|
|
self.hover = False
|
2007-02-24 19:28:04 +01:00
|
|
|
|
|
|
|
def _size_changed_cb(self, screen):
|
|
|
|
self._update_size()
|