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

134 lines
4.5 KiB
Python
Raw Normal View History

2007-02-15 18:23:52 +01:00
# Copyright (C) 2007, One Laptop Per Child
#
# 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.
#
# This library 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
# Lesser General Public License for more details.
#
# 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.
import sys
import logging
from gettext import gettext as _
import gobject
import gtk
import hippo
2007-02-20 14:28:49 +01:00
from sugar.graphics import units
2007-02-15 18:23:52 +01:00
from sugar.graphics.roundbox import RoundBox
from sugar.graphics.menu import Menu, MenuItem
2007-02-21 13:01:20 +01:00
from sugar.graphics import iconbutton
from sugar.graphics import color
from sugar.graphics import font
2007-02-15 18:23:52 +01:00
from sugar.graphics.canvasicon import CanvasIcon
class _Menu(Menu):
2007-02-15 18:23:52 +01:00
def __init__(self):
Menu.__init__(self)
self._is_visible = False
2007-02-15 18:23:52 +01:00
def is_visible(self):
return self._is_visible
def popup(self, x, y):
Menu.popup(self, x, y)
self._is_visible = True
def popdown(self):
Menu.popdown(self)
self._is_visible = False
2007-02-15 18:23:52 +01:00
class OptionMenu(hippo.CanvasBox, hippo.CanvasItem):
__gtype_name__ = 'SugarOptionMenu'
__gproperties__ = {
'value' : (object, None, None,
gobject.PARAM_READWRITE)
2007-02-15 18:23:52 +01:00
}
__gsignals__ = {
'changed': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE, ([]))
}
def __init__(self):
hippo.CanvasBox.__init__(self, orientation=hippo.ORIENTATION_HORIZONTAL)
self.props.yalign = hippo.ALIGNMENT_CENTER
self._value = None
self._round_box = RoundBox()
self._round_box.props.border_color = color.FRAME_BORDER.get_int()
self._round_box.props.spacing = units.points_to_pixels(3)
2007-03-05 12:43:32 +01:00
self._round_box.props.padding = units.points_to_pixels(3)
2007-02-15 18:23:52 +01:00
self.append(self._round_box, hippo.PACK_EXPAND)
self._canvas_text = hippo.CanvasText(text=_('No options'),
color=color.LABEL_TEXT.get_int(),
font_desc=font.DEFAULT.get_pango_desc(),
xalign=hippo.ALIGNMENT_START)
2007-02-15 18:23:52 +01:00
self._round_box.append(self._canvas_text, hippo.PACK_EXPAND)
arrow = iconbutton.IconButton(icon_name='theme:control-popup-arrow')
2007-02-21 13:01:20 +01:00
arrow.props.size = iconbutton.SMALL_SIZE
arrow.props.scale = units.STANDARD_ICON_SCALE
arrow.props.yalign = hippo.ALIGNMENT_CENTER
arrow.props.xalign = hippo.ALIGNMENT_START
self._round_box.append(arrow)
2007-02-15 18:23:52 +01:00
self._menu = _Menu()
2007-02-15 18:23:52 +01:00
self._menu.connect('action', self._menu_action_cb)
self._menu.connect('action-completed', self._menu_action_completed_cb)
2007-02-15 18:23:52 +01:00
2007-02-15 19:18:15 +01:00
self.connect('button-press-event', self._button_press_event_cb)
2007-02-15 18:23:52 +01:00
def do_set_property(self, pspec, value):
if pspec.name == 'value':
self._value = value
def do_get_property(self, pspec):
if pspec.name == 'value':
return self._value
def add_item(self, menu_item):
if self._value == None:
logging.debug('Setting default value to: ' + menu_item.props.label)
self._value = menu_item.props.action_id
self._canvas_text.props.text = menu_item.props.label
2007-02-15 19:18:15 +01:00
self._menu.add_item(menu_item)
2007-02-15 18:23:52 +01:00
def add_separator(self):
self._menu.add_separator()
2007-02-15 19:18:15 +01:00
def _button_press_event_cb(self, box, event):
2007-02-15 18:23:52 +01:00
if self._menu.is_visible():
self._menu.popdown()
2007-02-15 18:23:52 +01:00
else:
context = self._round_box.get_context()
[x, y] = context.translate_to_screen(self._round_box)
2007-02-20 16:38:25 +01:00
[width, height] = self._round_box.get_allocation()
self._menu.popup(x, y + height)
# Grab the pointer so the menu will popdown on mouse click.
self._menu.grab_pointer()
2007-02-15 18:23:52 +01:00
def _menu_action_cb(self, menu, menu_item):
action_id = menu_item.props.action_id
label = menu_item.props.label
2007-02-15 19:18:15 +01:00
if action_id != self._value:
self._value = action_id
self._canvas_text.props.text = label
2007-02-15 18:23:52 +01:00
self.emit('changed')
def _menu_action_completed_cb(self, menu):
self._menu.popdown()