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-12-13 22:36:05 +01:00
|
|
|
import logging
|
2006-08-23 11:52:18 +02:00
|
|
|
import gtk
|
2006-08-29 00:30:19 +02:00
|
|
|
import gobject
|
2006-10-02 01:50:43 +02:00
|
|
|
import hippo
|
2006-08-23 11:52:18 +02:00
|
|
|
|
2007-01-25 12:22:37 +01:00
|
|
|
from view.frame.eventframe import EventFrame
|
2006-10-02 01:50:43 +02:00
|
|
|
from view.frame.ActivitiesBox import ActivitiesBox
|
|
|
|
from view.frame.ZoomBox import ZoomBox
|
2006-10-24 19:44:18 +02:00
|
|
|
from view.frame.overlaybox import OverlayBox
|
2006-10-05 17:09:38 +02:00
|
|
|
from view.frame.FriendsBox import FriendsBox
|
2006-09-15 13:23:21 +02:00
|
|
|
from view.frame.PanelWindow import PanelWindow
|
2006-12-13 22:36:05 +01:00
|
|
|
from view.frame.clipboardpanelwindow import ClipboardPanelWindow
|
2006-10-16 18:43:04 +02:00
|
|
|
from view.frame.notificationtray import NotificationTray
|
2007-01-11 11:43:34 +01:00
|
|
|
from model.ShellModel import ShellModel
|
2006-10-04 00:55:20 +02:00
|
|
|
from sugar.graphics.timeline import Timeline
|
2006-10-18 17:57:41 +02:00
|
|
|
from sugar.graphics.menushell import MenuShell
|
2007-02-20 16:23:49 +01:00
|
|
|
from sugar.graphics import units
|
2006-08-23 11:52:18 +02:00
|
|
|
|
2007-01-25 19:50:00 +01:00
|
|
|
_ANIMATION = False
|
2007-01-25 17:37:27 +01:00
|
|
|
|
2006-09-01 15:11:52 +02:00
|
|
|
class Frame:
|
2006-12-04 20:12:24 +01:00
|
|
|
INACTIVE = 0
|
|
|
|
TEMPORARY = 1
|
|
|
|
STICKY = 2
|
|
|
|
HIDE_ON_LEAVE = 3
|
|
|
|
AUTOMATIC = 4
|
2006-09-22 11:14:33 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def __init__(self, shell):
|
2007-01-25 12:39:44 +01:00
|
|
|
self._left_panel = None
|
|
|
|
self._right_panel = None
|
|
|
|
self._top_panel = None
|
|
|
|
self._bottom_panel = None
|
|
|
|
|
2007-01-09 20:15:18 +01:00
|
|
|
self._hover_frame = False
|
2006-12-04 20:12:24 +01:00
|
|
|
self._shell = shell
|
|
|
|
self._mode = Frame.INACTIVE
|
2006-09-21 14:08:10 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self._timeline = Timeline(self)
|
2007-01-15 11:28:30 +01:00
|
|
|
self._timeline.add_tag('slide_in', 18, 24)
|
|
|
|
self._timeline.add_tag('before_slide_out', 48, 48)
|
|
|
|
self._timeline.add_tag('slide_out', 49, 54)
|
2006-09-07 15:11:51 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self._event_frame = EventFrame()
|
|
|
|
self._event_frame.connect('enter-edge', self._enter_edge_cb)
|
|
|
|
self._event_frame.connect('enter-corner', self._enter_corner_cb)
|
|
|
|
self._event_frame.connect('leave', self._event_frame_leave_cb)
|
|
|
|
self._event_frame.show()
|
2006-10-02 01:50:43 +02:00
|
|
|
|
2007-02-20 16:23:49 +01:00
|
|
|
self._top_panel = self._create_top_panel()
|
|
|
|
self._bottom_panel = self._create_bottom_panel()
|
|
|
|
self._left_panel = self._create_left_panel()
|
|
|
|
self._right_panel = self._create_right_panel()
|
2006-09-07 15:11:51 +02:00
|
|
|
|
2007-01-25 12:39:44 +01:00
|
|
|
shell.get_model().connect('notify::state',
|
|
|
|
self._shell_state_changed_cb)
|
|
|
|
|
2007-02-20 16:38:25 +01:00
|
|
|
rollover_context = shell.get_rollover_context()
|
|
|
|
rollover_context.connect('activated',
|
|
|
|
self._rollover_context_activated_cb)
|
|
|
|
rollover_context.connect('deactivated',
|
|
|
|
self._rollover_context_deactivated_cb)
|
|
|
|
|
2007-01-25 12:39:44 +01:00
|
|
|
def _create_top_panel(self):
|
2007-02-20 16:35:07 +01:00
|
|
|
panel = self._create_panel(hippo.ORIENTATION_HORIZONTAL)
|
|
|
|
menu_shell = panel.get_menu_shell()
|
|
|
|
root = panel.get_root()
|
2006-12-13 22:36:05 +01:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
menu_shell.set_position(MenuShell.BOTTOM)
|
2006-08-23 11:52:18 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
box = ZoomBox(self._shell, menu_shell)
|
2007-02-20 16:23:49 +01:00
|
|
|
root.append(box)
|
2006-09-08 01:13:42 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
tray = NotificationTray()
|
2007-02-20 16:23:49 +01:00
|
|
|
tray_box = hippo.CanvasBox(box_width=units.grid_to_pixels(1),
|
|
|
|
box_height=units.grid_to_pixels(1),
|
2006-12-04 20:12:24 +01:00
|
|
|
xalign=hippo.ALIGNMENT_END)
|
2006-10-16 18:43:04 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
tray_widget = hippo.CanvasWidget()
|
|
|
|
tray_widget.props.widget = tray
|
|
|
|
tray_box.append(tray_widget, gtk.EXPAND)
|
2007-02-20 16:23:49 +01:00
|
|
|
root.append(tray_box)
|
2006-10-16 18:43:04 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
box = OverlayBox(self._shell)
|
|
|
|
root.append(box, hippo.PACK_FIXED)
|
2007-02-20 16:23:49 +01:00
|
|
|
|
2007-02-20 16:35:07 +01:00
|
|
|
return panel
|
2006-10-24 19:44:18 +02:00
|
|
|
|
2007-01-25 12:39:44 +01:00
|
|
|
def _create_bottom_panel(self):
|
2007-02-20 16:35:07 +01:00
|
|
|
panel = self._create_panel(hippo.ORIENTATION_HORIZONTAL)
|
|
|
|
menu_shell = panel.get_menu_shell()
|
|
|
|
root = panel.get_root()
|
2006-12-13 22:36:05 +01:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
menu_shell.set_position(MenuShell.TOP)
|
2006-09-08 01:13:42 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
box = ActivitiesBox(self._shell)
|
2007-02-20 16:23:49 +01:00
|
|
|
root.append(box)
|
2006-09-07 15:11:51 +02:00
|
|
|
|
2007-02-20 16:35:07 +01:00
|
|
|
return panel
|
2006-09-18 16:51:21 +02:00
|
|
|
|
2007-01-25 12:39:44 +01:00
|
|
|
def _create_right_panel(self):
|
2007-02-20 16:35:07 +01:00
|
|
|
panel = self._create_panel(hippo.ORIENTATION_VERTICAL)
|
|
|
|
menu_shell = panel.get_menu_shell()
|
|
|
|
root = panel.get_root()
|
2006-12-13 22:36:05 +01:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
menu_shell.set_position(MenuShell.LEFT)
|
2006-10-02 01:50:43 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
box = FriendsBox(self._shell, menu_shell)
|
|
|
|
root.append(box)
|
2006-10-05 17:09:38 +02:00
|
|
|
|
2007-02-20 16:35:07 +01:00
|
|
|
return panel
|
2007-02-20 16:23:49 +01:00
|
|
|
|
2007-01-25 12:39:44 +01:00
|
|
|
def _create_left_panel(self):
|
2007-02-20 16:35:07 +01:00
|
|
|
panel = ClipboardPanelWindow(self, hippo.ORIENTATION_VERTICAL)
|
2007-02-20 16:23:49 +01:00
|
|
|
|
2007-02-20 16:35:07 +01:00
|
|
|
self._connect_to_panel(panel)
|
|
|
|
panel.connect('drag-motion', self._drag_motion_cb)
|
|
|
|
panel.connect('drag-leave', self._drag_leave_cb)
|
2007-01-11 11:43:34 +01:00
|
|
|
|
2007-02-20 16:35:07 +01:00
|
|
|
return panel
|
2007-01-11 11:43:34 +01:00
|
|
|
|
|
|
|
def _shell_state_changed_cb(self, model, pspec):
|
|
|
|
if model.props.state == ShellModel.STATE_SHUTDOWN:
|
|
|
|
self._timeline.goto('slide_out', True)
|
2006-12-13 22:36:05 +01:00
|
|
|
|
2007-02-20 16:35:07 +01:00
|
|
|
def _create_panel(self, orientation):
|
|
|
|
panel = PanelWindow(orientation)
|
2006-12-13 22:36:05 +01:00
|
|
|
self._connect_to_panel(panel)
|
|
|
|
|
|
|
|
return panel
|
2006-10-02 01:50:43 +02:00
|
|
|
|
2007-02-20 16:23:49 +01:00
|
|
|
def _move_panel(self, panel, pos, x1, y1, x2, y2):
|
|
|
|
x = (x2 - x1) * pos + x1
|
|
|
|
y = (y2 - y1) * pos + y1
|
2007-01-25 17:37:27 +01:00
|
|
|
|
2007-02-20 16:23:49 +01:00
|
|
|
panel.move(x, y)
|
2007-01-25 17:37:27 +01:00
|
|
|
|
|
|
|
# FIXME we should hide and show as necessary to free memory
|
|
|
|
if not panel.props.visible:
|
|
|
|
panel.show()
|
|
|
|
|
2006-12-13 22:36:05 +01:00
|
|
|
def _connect_to_panel(self, panel):
|
2006-12-04 20:12:24 +01:00
|
|
|
panel.connect('enter-notify-event', self._enter_notify_cb)
|
|
|
|
panel.connect('leave-notify-event', self._leave_notify_cb)
|
2006-10-02 01:50:43 +02:00
|
|
|
|
2007-01-16 20:32:29 +01:00
|
|
|
menu_shell = panel.get_menu_shell()
|
|
|
|
menu_shell.connect('activated',
|
|
|
|
self._menu_shell_activated_cb)
|
|
|
|
menu_shell.connect('deactivated',
|
|
|
|
self._menu_shell_deactivated_cb)
|
2006-10-18 16:23:06 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _menu_shell_activated_cb(self, menu_shell):
|
|
|
|
self._timeline.goto('slide_in', True)
|
2006-09-19 14:43:42 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _menu_shell_deactivated_cb(self, menu_shell):
|
2007-01-09 20:15:18 +01:00
|
|
|
if self._mode != Frame.STICKY and not self._hover_frame:
|
2006-12-04 20:12:24 +01:00
|
|
|
self._timeline.play('before_slide_out', 'slide_out')
|
2006-09-19 14:43:42 +02:00
|
|
|
|
2007-02-20 16:38:25 +01:00
|
|
|
def _rollover_context_activated_cb(self, rollover_context):
|
|
|
|
self._timeline.goto('slide_in', True)
|
|
|
|
|
|
|
|
def _rollover_context_deactivated_cb(self, rollover_context):
|
|
|
|
if self._mode != Frame.STICKY and not self._hover_frame:
|
|
|
|
self._timeline.play('before_slide_out', 'slide_out')
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _enter_notify_cb(self, window, event):
|
2007-01-09 20:15:18 +01:00
|
|
|
self._enter_notify()
|
2006-12-16 23:55:22 +01:00
|
|
|
logging.debug('Frame._enter_notify_cb ' + str(self._mode))
|
|
|
|
|
|
|
|
def _drag_motion_cb(self, window, context, x, y, time):
|
2007-01-09 20:15:18 +01:00
|
|
|
self._enter_notify()
|
2006-12-16 23:55:22 +01:00
|
|
|
logging.debug('Frame._drag_motion_cb ' + str(self._mode))
|
|
|
|
return True
|
|
|
|
|
|
|
|
def _drag_leave_cb(self, window, drag_context, timestamp):
|
2007-01-16 20:32:29 +01:00
|
|
|
self._leave_notify(window)
|
2006-12-16 23:55:22 +01:00
|
|
|
logging.debug('Frame._drag_leave_cb ' + str(self._mode))
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _leave_notify_cb(self, window, event):
|
|
|
|
# FIXME for some reason every click cause also a leave-notify
|
|
|
|
if event.state == gtk.gdk.BUTTON1_MASK:
|
|
|
|
return
|
2006-09-22 11:14:33 +02:00
|
|
|
|
2007-01-16 20:32:29 +01:00
|
|
|
self._leave_notify(window)
|
2006-12-16 23:55:22 +01:00
|
|
|
logging.debug('Frame._leave_notify_cb ' + str(self._mode))
|
2007-01-09 20:15:18 +01:00
|
|
|
|
|
|
|
def _enter_notify(self):
|
|
|
|
self._hover_frame = True
|
|
|
|
self._timeline.goto('slide_in', True)
|
|
|
|
|
2007-01-16 20:32:29 +01:00
|
|
|
def _leave_notify(self, panel):
|
2007-01-09 20:15:18 +01:00
|
|
|
self._hover_frame = False
|
2007-01-16 20:32:29 +01:00
|
|
|
if not panel.get_menu_shell().is_active() and \
|
2007-02-20 16:38:25 +01:00
|
|
|
not self._shell.get_rollover_context().is_active() and \
|
2006-12-04 20:12:24 +01:00
|
|
|
(self._mode == Frame.HIDE_ON_LEAVE or \
|
|
|
|
self._mode == Frame.AUTOMATIC):
|
|
|
|
self._timeline.play('before_slide_out', 'slide_out')
|
2006-09-21 14:45:36 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _enter_edge_cb(self, event_frame):
|
|
|
|
self._mode = Frame.HIDE_ON_LEAVE
|
|
|
|
self._timeline.play(None, 'slide_in')
|
2006-12-16 23:55:22 +01:00
|
|
|
logging.debug('Frame._enter_edge_cb ' + str(self._mode))
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _enter_corner_cb(self, event_frame):
|
|
|
|
self._mode = Frame.HIDE_ON_LEAVE
|
|
|
|
self._timeline.play('slide_in', 'slide_in')
|
2006-12-16 23:55:22 +01:00
|
|
|
logging.debug('Frame._enter_corner_cb ' + str(self._mode))
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _event_frame_leave_cb(self, event_frame):
|
|
|
|
if self._mode != Frame.STICKY:
|
|
|
|
self._timeline.goto('slide_out', True)
|
2006-12-16 23:55:22 +01:00
|
|
|
logging.debug('Frame._event_frame_leave_cb ' + str(self._mode))
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def show_and_hide(self, seconds):
|
|
|
|
self._mode = Frame.AUTOMATIC
|
|
|
|
self._timeline.play()
|
2006-08-23 11:52:18 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def notify_key_press(self):
|
|
|
|
if self._timeline.on_tag('slide_in'):
|
|
|
|
self._timeline.play('before_slide_out', 'slide_out')
|
|
|
|
elif self._timeline.on_tag('before_slide_out'):
|
|
|
|
self._mode = Frame.TEMPORARY
|
|
|
|
else:
|
|
|
|
self._mode = Frame.STICKY
|
|
|
|
self._timeline.play('slide_in', 'slide_in')
|
2006-09-21 14:08:10 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def notify_key_release(self):
|
|
|
|
if self._mode == Frame.TEMPORARY:
|
|
|
|
self._timeline.play('before_slide_out', 'slide_out')
|
2006-09-21 14:08:10 +02:00
|
|
|
|
2007-01-25 17:37:27 +01:00
|
|
|
def _move(self, pos):
|
2007-02-20 16:23:49 +01:00
|
|
|
screen_h = gtk.gdk.screen_height()
|
|
|
|
screen_w = gtk.gdk.screen_width()
|
|
|
|
|
|
|
|
self._move_panel(self._top_panel, pos,
|
|
|
|
0, units.grid_to_pixels(-1),
|
|
|
|
0, 0)
|
|
|
|
|
|
|
|
self._move_panel(self._bottom_panel, pos,
|
|
|
|
0, screen_h,
|
|
|
|
0, screen_h - units.grid_to_pixels(1))
|
|
|
|
|
|
|
|
self._move_panel(self._left_panel, pos,
|
|
|
|
units.grid_to_pixels(-1), 0,
|
|
|
|
0, 0)
|
|
|
|
|
|
|
|
self._move_panel(self._right_panel, pos,
|
|
|
|
screen_w, 0,
|
2007-02-20 16:35:07 +01:00
|
|
|
screen_w - units.grid_to_pixels(1), 0)
|
2007-01-25 12:39:44 +01:00
|
|
|
|
2007-01-25 17:37:27 +01:00
|
|
|
def do_slide_in(self, current=0, n_frames=0):
|
|
|
|
if _ANIMATION:
|
|
|
|
self._move(float(current + 1) / float(n_frames))
|
|
|
|
elif current == 0:
|
|
|
|
self._move(1)
|
|
|
|
if self._event_frame.is_visible():
|
2006-12-04 20:12:24 +01:00
|
|
|
self._event_frame.hide()
|
2006-09-21 14:08:10 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def do_slide_out(self, current=0, n_frames=0):
|
2007-01-25 17:37:27 +01:00
|
|
|
if _ANIMATION:
|
|
|
|
self._move(1 - (float(current + 1) / float(n_frames)))
|
|
|
|
elif current == 0:
|
|
|
|
self._move(0)
|
|
|
|
if not self._event_frame.is_visible():
|
2006-12-04 20:12:24 +01:00
|
|
|
self._event_frame.show()
|
2006-09-28 22:11:29 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def is_visible(self):
|
2007-01-25 17:37:27 +01:00
|
|
|
return self._top_panel.props.visible
|