2007-06-24 14:43:48 +02:00
|
|
|
# Copyright (C) 2006-2007 Red Hat, Inc.
|
2007-02-12 20:37:20 +01: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.
|
|
|
|
#
|
|
|
|
# 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 math
|
|
|
|
|
|
|
|
import hippo
|
|
|
|
|
2007-07-31 14:05:14 +02:00
|
|
|
from sugar.graphics import style
|
2007-02-12 20:37:20 +01:00
|
|
|
|
2007-07-31 17:08:44 +02:00
|
|
|
class CanvasRoundBox(hippo.CanvasBox, hippo.CanvasItem):
|
2007-02-12 20:37:20 +01:00
|
|
|
__gtype_name__ = 'SugarRoundBox'
|
|
|
|
|
2007-07-31 15:02:50 +02:00
|
|
|
_BORDER_DEFAULT = style.LINE_WIDTH
|
2007-02-12 20:37:20 +01:00
|
|
|
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
hippo.CanvasBox.__init__(self, **kwargs)
|
|
|
|
|
|
|
|
# TODO: we should calculate this value depending on the height of the box.
|
2007-07-31 15:02:50 +02:00
|
|
|
self._radius = style.zoom(10)
|
2007-02-12 20:37:20 +01:00
|
|
|
|
|
|
|
self.props.orientation = hippo.ORIENTATION_HORIZONTAL
|
2007-02-26 17:35:58 +01:00
|
|
|
self.props.border = self._BORDER_DEFAULT
|
2007-02-12 20:37:20 +01:00
|
|
|
self.props.border_left = self._radius
|
|
|
|
self.props.border_right = self._radius
|
2007-07-31 14:05:14 +02:00
|
|
|
self.props.border_color = style.COLOR_BLACK.get_int()
|
2007-02-12 20:37:20 +01:00
|
|
|
|
|
|
|
def do_paint_background(self, cr, damaged_box):
|
|
|
|
[width, height] = self.get_allocation()
|
|
|
|
|
|
|
|
x = self._BORDER_DEFAULT / 2
|
|
|
|
y = self._BORDER_DEFAULT / 2
|
|
|
|
width -= self._BORDER_DEFAULT
|
|
|
|
height -= self._BORDER_DEFAULT
|
|
|
|
|
|
|
|
cr.move_to(x + self._radius, y);
|
|
|
|
cr.arc(x + width - self._radius, y + self._radius,
|
|
|
|
self._radius, math.pi * 1.5, math.pi * 2);
|
|
|
|
cr.arc(x + width - self._radius, x + height - self._radius,
|
|
|
|
self._radius, 0, math.pi * 0.5);
|
|
|
|
cr.arc(x + self._radius, y + height - self._radius,
|
|
|
|
self._radius, math.pi * 0.5, math.pi);
|
|
|
|
cr.arc(x + self._radius, y + self._radius, self._radius,
|
|
|
|
math.pi, math.pi * 1.5);
|
|
|
|
|
|
|
|
hippo.cairo_set_source_rgba32(cr, self.props.background_color)
|
|
|
|
cr.fill_preserve();
|
|
|
|
|
2007-02-26 17:35:58 +01:00
|
|
|
# TODO: we should be more consistent here with the border properties.
|
|
|
|
if self.props.border_color:
|
|
|
|
hippo.cairo_set_source_rgba32(cr, self.props.border_color)
|
|
|
|
cr.set_line_width(self.props.border_top)
|
|
|
|
cr.stroke()
|