sugar-toolkit-gtk3/sugar/graphics/palette.py

311 lines
10 KiB
Python
Raw Normal View History

2007-05-24 19:37:48 +02:00
# Copyright (C) 2007, Eduardo Silva (edsiper@gmail.com)
#
2007-06-14 22:04:25 +02:00
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
2007-05-24 19:37:48 +02:00
#
2007-06-14 22:04:25 +02:00
# This library is distributed in the hope that it will be useful,
2007-05-24 19:37:48 +02:00
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2007-06-14 22:04:25 +02:00
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
2007-05-24 19:37:48 +02:00
#
2007-06-14 22:04:25 +02:00
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
2007-05-24 19:37:48 +02:00
import gtk
import gobject
2007-06-06 23:21:33 +02:00
import time
import hippo
2007-05-24 19:37:48 +02:00
from sugar.graphics import animator
2007-06-01 06:08:24 +02:00
ALIGNMENT_AUTOMATIC = 0
ALIGNMENT_BOTTOM_LEFT = 1
ALIGNMENT_BOTTOM_RIGHT = 2
ALIGNMENT_LEFT_BOTTOM = 3
ALIGNMENT_LEFT_TOP = 4
ALIGNMENT_RIGHT_BOTTOM = 5
ALIGNMENT_RIGHT_TOP = 6
ALIGNMENT_TOP_LEFT = 7
ALIGNMENT_TOP_RIGHT = 8
2007-05-24 19:37:48 +02:00
class Palette(gtk.Window):
__gtype_name__ = 'SugarPalette'
__gproperties__ = {
2007-06-25 11:39:51 +02:00
'invoker' : (object, None, None,
gobject.PARAM_READWRITE),
'alignment' : (gobject.TYPE_INT, None, None, 0, 8,
ALIGNMENT_AUTOMATIC,
gobject.PARAM_READWRITE)
2007-05-24 19:37:48 +02:00
}
_PADDING = 1
_WIN_BORDER = 5
2007-06-02 06:33:41 +02:00
def __init__(self, **kwargs):
gobject.GObject.__init__(self, type=gtk.WINDOW_POPUP, **kwargs)
2007-05-28 07:05:31 +02:00
gtk.Window.__init__(self)
2007-05-24 19:37:48 +02:00
2007-06-01 06:08:24 +02:00
self._alignment = ALIGNMENT_AUTOMATIC
self._popup_anim = animator.Animator(0.6, 10)
self._popup_anim.add(_PopupAnimation(self))
self._popup_anim.start()
self._popdown_anim = animator.Animator(0.6, 10)
self._popdown_anim.add(_PopdownAnimation(self))
self._popdown_anim.start()
2007-05-24 19:37:48 +02:00
self._palette_label = gtk.Label()
2007-05-29 18:27:54 +02:00
self._palette_label.show()
2007-05-24 19:37:48 +02:00
vbox = gtk.VBox(False, 0)
2007-06-02 06:33:41 +02:00
vbox.pack_start(self._palette_label, True, True, self._PADDING)
2007-06-25 11:39:51 +02:00
self._separator = gtk.HSeparator()
2007-06-06 06:51:01 +02:00
2007-06-25 11:39:51 +02:00
self._menu_bar = gtk.MenuBar()
self._menu_bar.set_pack_direction(gtk.PACK_DIRECTION_TTB)
self._content = gtk.HBox()
self._button_bar = gtk.HButtonBox()
2007-06-02 06:33:41 +02:00
2007-06-25 11:39:51 +02:00
# Set main container
vbox.pack_start(self._separator, True, True, self._PADDING)
vbox.pack_start(self._menu_bar, True, True, self._PADDING)
vbox.pack_start(self._content, True, True, self._PADDING)
vbox.pack_start(self._button_bar, True, True, self._PADDING)
2007-06-06 04:43:42 +02:00
2007-05-24 19:37:48 +02:00
vbox.show()
2007-06-02 06:33:41 +02:00
self.add(vbox)
2007-05-24 19:37:48 +02:00
2007-05-29 18:27:54 +02:00
# Widget events
self.connect('enter-notify-event', self._enter_notify_event_cb)
self.connect('leave-notify-event', self._leave_notify_event_cb)
self.connect('button-press-event', self._button_press_event_cb)
2007-05-24 19:37:48 +02:00
self.set_border_width(self._WIN_BORDER)
2007-06-06 06:51:01 +02:00
2007-06-01 06:08:24 +02:00
def do_set_property(self, pspec, value):
if pspec.name == 'invoker':
self._invoker = value
self._invoker.add_listener(self)
2007-05-24 19:37:48 +02:00
elif pspec.name == 'alignment':
self._alignment = value
else:
raise AssertionError
2007-06-25 11:55:36 +02:00
def place(self):
2007-06-01 06:08:24 +02:00
# Automatic Alignment
if self._alignment == ALIGNMENT_AUTOMATIC:
# Trying Different types of ALIGNMENTS,
# and return the choosen one
if self._try_position(ALIGNMENT_BOTTOM_LEFT):
return ALIGNMENT_BOTTOM_LEFT
elif self._try_position(ALIGNMENT_BOTTOM_RIGHT):
return ALIGNMENT_BOTTOM_RIGHT
elif self._try_position(ALIGNMENT_LEFT_BOTTOM):
return ALIGNMENT_LEFT_BOTTOM
elif self._try_position(ALIGNMENT_LEFT_TOP):
return ALIGNMENT_LEFT_TOP
elif self._try_position(ALIGNMENT_RIGHT_BOTTOM):
return ALIGNMENT_RIGHT_BOTTOM
elif self._try_position(ALIGNMENT_RIGHT_TOP):
return ALIGNMENT_RIGHT_TOP
elif self._try_position(ALIGNMENT_TOP_LEFT):
return ALIGNMENT_TOP_LEFT
elif self._try_position(ALIGNMENT_TOP_RIGHT):
return ALIGNMENT_TOP_RIGHT
else:
# Manual Alignment
move_x, move_y = self._calc_position(self._alignment)
self.move(move_x, move_y)
2007-05-24 19:37:48 +02:00
2007-06-01 06:08:24 +02:00
def _try_position(self, alignment):
2007-06-25 11:55:36 +02:00
screen_width = gtk.gdk.screen_width()
screen_height = gtk.gdk.screen_height()
x, y = self._calc_position(alignment)
2007-06-06 23:21:33 +02:00
self._width, self._height = self.size_request()
if (x + self._width > screen_width) or \
(y + self._height > screen_height):
2007-06-01 06:08:24 +02:00
return False
else:
self.move(x, y)
2007-06-06 23:21:33 +02:00
self.show()
2007-06-01 06:08:24 +02:00
return True
def _calc_position(self, alignment):
# Invoker: x, y, width and height
inv_rect = self._invoker.get_rect()
2007-06-01 06:08:24 +02:00
palette_rectangle = self.get_allocation()
2007-05-24 19:37:48 +02:00
2007-06-01 06:08:24 +02:00
if alignment == ALIGNMENT_BOTTOM_LEFT:
move_x = inv_rect.x
move_y = inv_rect.y + inv_rect.height
2007-05-24 19:37:48 +02:00
2007-06-01 06:08:24 +02:00
elif alignment == ALIGNMENT_BOTTOM_RIGHT:
move_x = (inv_rect.x + inv_rect.width) - self._width
move_y = inv_rect.y + inv_rect.height
2007-05-29 18:27:54 +02:00
2007-06-01 06:08:24 +02:00
elif alignment == ALIGNMENT_LEFT_BOTTOM:
move_x = inv_rect.x - self._width
move_y = inv_rect.y
2007-05-24 19:37:48 +02:00
2007-06-01 06:08:24 +02:00
elif alignment == ALIGNMENT_LEFT_TOP:
move_x = inv_rect.x - self._width
move_y = (inv_rect.y + inv_rect.height) - palette_rectangle.height
2007-05-24 19:37:48 +02:00
2007-06-01 06:08:24 +02:00
elif alignment == ALIGNMENT_RIGHT_BOTTOM:
move_x = inv_rect.x + inv_rect.width
move_y = inv_rect.y
2007-05-24 19:37:48 +02:00
2007-06-01 06:08:24 +02:00
elif alignment == ALIGNMENT_RIGHT_TOP:
move_x = inv_rect.x + inv_rect.width
move_y = (inv_rect.y + inv_rect.height) - palette_rectangle.height
2007-05-24 19:37:48 +02:00
2007-06-01 06:08:24 +02:00
elif alignment == ALIGNMENT_TOP_LEFT:
move_x = inv_rect.x
move_y = inv_rect.y - palette_rectangle.height
2007-05-24 19:37:48 +02:00
2007-06-01 06:08:24 +02:00
elif alignment == ALIGNMENT_TOP_RIGHT:
move_x = (inv_rect.x + inv_rect.width) - self._width
move_y = inv_rect.y - palette_rectangle.height
2007-05-24 19:37:48 +02:00
2007-06-01 06:08:24 +02:00
return move_x, move_y
2007-05-24 19:37:48 +02:00
def set_primary_state(self, label, accel_path=None):
if accel_path != None:
item = gtk.MenuItem(label)
item.set_accel_path(accel_path)
self.append_menu_item(item)
self._separator.hide()
else:
self._palette_label.set_text(label)
def append_menu_item(self, item):
2007-06-25 11:39:51 +02:00
self._separator.show()
self._menu_bar.show()
2007-06-25 11:55:36 +02:00
self._menu_bar.append(item)
item.show()
2007-05-24 19:37:48 +02:00
def set_content(self, widget):
2007-06-25 11:39:51 +02:00
self._separator.show()
2007-05-24 19:37:48 +02:00
self._content.pack_start(widget, True, True, self._PADDING)
2007-06-25 11:55:36 +02:00
widget.show()
2007-05-24 19:37:48 +02:00
def append_button(self, button):
2007-05-30 19:29:29 +02:00
button.connect('released', self._close_palette_cb)
2007-05-24 19:37:48 +02:00
self._button_bar.pack_start(button, True, True, self._PADDING)
2007-06-25 11:55:36 +02:00
button.show()
2007-05-24 19:37:48 +02:00
2007-05-30 19:29:29 +02:00
def popup(self):
self._popdown_anim.stop()
self._popup_anim.start()
def popdown(self):
self._popup_anim.stop()
self._popdown_anim.start()
2007-05-29 18:27:54 +02:00
def invoker_mouse_enter(self):
self.popup()
2007-05-30 19:29:29 +02:00
def invoker_mouse_leave(self):
self.popdown()
2007-05-30 19:29:29 +02:00
def _enter_notify_event_cb(self, widget, event):
if event.detail == gtk.gdk.NOTIFY_NONLINEAR:
self._popdown_anim.stop()
2007-05-30 19:29:29 +02:00
def _leave_notify_event_cb(self, widget, event):
if event.detail == gtk.gdk.NOTIFY_NONLINEAR:
self.popdown()
2007-05-30 19:29:29 +02:00
def _button_press_event_cb(self, widget, event):
pass
class _PopupAnimation(animator.Animation):
def __init__(self, palette):
animator.Animation.__init__(self, 0.0, 1.0)
self._palette = palette
def next_frame(self, current):
if current == 1.0:
self._palette.place()
2007-05-30 19:29:29 +02:00
class _PopdownAnimation(animator.Animation):
def __init__(self, palette):
animator.Animation.__init__(self, 0.0, 1.0)
self._palette = palette
def next_frame(self, current):
if current == 1.0:
self._palette.hide()
2007-05-29 18:27:54 +02:00
class Invoker(object):
def __init__(self):
self._listeners = []
2007-05-29 18:27:54 +02:00
def add_listener(self, listener):
self._listeners.append(listener)
2007-06-06 04:43:42 +02:00
def notify_mouse_enter(self):
for listener in self._listeners:
listener.invoker_mouse_enter()
def notify_mouse_leave(self):
for listener in self._listeners:
listener.invoker_mouse_leave()
class WidgetInvoker(Invoker):
def __init__(self, widget):
Invoker.__init__(self)
self._widget = widget
widget.connect('enter-notify-event', self._enter_notify_event_cb)
widget.connect('leave-notify-event', self._leave_notify_event_cb)
def get_rect(self):
win_x, win_y = self._widget.window.get_origin()
rectangle = self._widget.get_allocation()
x = win_x + rectangle.x
y = win_y + rectangle.y
width = rectangle.width
height = rectangle.height
return gtk.gdk.Rectangle(x, y, width, height)
def _enter_notify_event_cb(self, widget, event):
self.notify_mouse_enter()
def _leave_notify_event_cb(self, widget, event):
self.notify_mouse_leave()
class CanvasInvoker(Invoker):
def __init__(self, item):
Invoker.__init__(self)
self._item = item
item.connect('motion-notify-event',
self._motion_notify_event_cb)
def get_rect(self):
context = self._item.get_context()
x, y = context.translate_to_screen(self._item)
width, height = self._item.get_allocation()
return gtk.gdk.Rectangle(x, y, width, height)
def _motion_notify_event_cb(self, button, event):
if event.detail == hippo.MOTION_DETAIL_ENTER:
self.notify_mouse_enter()
elif event.detail == hippo.MOTION_DETAIL_LEAVE:
self.notify_mouse_leave()
return False