Remove Frame, rename RoundBox to CanvasRoundBox
This commit is contained in:
parent
ef74f178be
commit
34a4876f93
@ -2,18 +2,17 @@ sugardir = $(pythondir)/sugar/graphics
|
|||||||
sugar_PYTHON = \
|
sugar_PYTHON = \
|
||||||
__init__.py \
|
__init__.py \
|
||||||
animator.py \
|
animator.py \
|
||||||
icon.py \
|
|
||||||
iconbutton.py \
|
|
||||||
canvasbutton.py \
|
canvasbutton.py \
|
||||||
canvasicon.py \
|
canvasicon.py \
|
||||||
canvasentry.py \
|
canvasentry.py \
|
||||||
|
canvasroundbox.py \
|
||||||
combobox.py \
|
combobox.py \
|
||||||
frame.py \
|
icon.py \
|
||||||
notebook.py \
|
iconbutton.py \
|
||||||
menuitem.py \
|
menuitem.py \
|
||||||
|
notebook.py \
|
||||||
objectchooser.py \
|
objectchooser.py \
|
||||||
radiotoolbutton.py \
|
radiotoolbutton.py \
|
||||||
roundbox.py \
|
|
||||||
palette.py \
|
palette.py \
|
||||||
palettegroup.py \
|
palettegroup.py \
|
||||||
panel.py \
|
panel.py \
|
||||||
|
@ -21,7 +21,7 @@ import hippo
|
|||||||
|
|
||||||
from sugar.graphics import style
|
from sugar.graphics import style
|
||||||
|
|
||||||
class RoundBox(hippo.CanvasBox, hippo.CanvasItem):
|
class CanvasRoundBox(hippo.CanvasBox, hippo.CanvasItem):
|
||||||
__gtype_name__ = 'SugarRoundBox'
|
__gtype_name__ = 'SugarRoundBox'
|
||||||
|
|
||||||
_BORDER_DEFAULT = style.LINE_WIDTH
|
_BORDER_DEFAULT = style.LINE_WIDTH
|
@ -1,26 +0,0 @@
|
|||||||
# Copyright (C) 2006-2007 Red Hat, Inc.
|
|
||||||
#
|
|
||||||
# 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.
|
|
||||||
|
|
||||||
from sugar.graphics import style
|
|
||||||
from sugar.graphics.roundbox import RoundBox
|
|
||||||
|
|
||||||
class Frame(RoundBox):
|
|
||||||
__gtype_name__ = 'SugarFrame'
|
|
||||||
|
|
||||||
def __init__(self, **kwargs):
|
|
||||||
RoundBox.__init__(self, **kwargs)
|
|
||||||
self.props.border_color = style.COLOR_BLACK.get_int()
|
|
Loading…
Reference in New Issue
Block a user