Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-07-31 15:08:44 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-07-31 15:08:44 (GMT)
commit34a4876f93894309f77b00281b5cb1bb72b3a1e4 (patch)
tree2e9f96d1281a1b666719012a606f71cadfc0cc92 /sugar
parentef74f178be64592c786ea3e1c642002a72daf100 (diff)
Remove Frame, rename RoundBox to CanvasRoundBox
Diffstat (limited to 'sugar')
-rw-r--r--sugar/graphics/Makefile.am9
-rw-r--r--sugar/graphics/canvasroundbox.py (renamed from sugar/graphics/roundbox.py)2
-rw-r--r--sugar/graphics/frame.py26
3 files changed, 5 insertions, 32 deletions
diff --git a/sugar/graphics/Makefile.am b/sugar/graphics/Makefile.am
index 41e8ce1..af66cfb 100644
--- a/sugar/graphics/Makefile.am
+++ b/sugar/graphics/Makefile.am
@@ -2,18 +2,17 @@ sugardir = $(pythondir)/sugar/graphics
sugar_PYTHON = \
__init__.py \
animator.py \
- icon.py \
- iconbutton.py \
canvasbutton.py \
canvasicon.py \
canvasentry.py \
+ canvasroundbox.py \
combobox.py \
- frame.py \
- notebook.py \
+ icon.py \
+ iconbutton.py \
menuitem.py \
+ notebook.py \
objectchooser.py \
radiotoolbutton.py \
- roundbox.py \
palette.py \
palettegroup.py \
panel.py \
diff --git a/sugar/graphics/roundbox.py b/sugar/graphics/canvasroundbox.py
index 96a40d7..51b9e7d 100644
--- a/sugar/graphics/roundbox.py
+++ b/sugar/graphics/canvasroundbox.py
@@ -21,7 +21,7 @@ import hippo
from sugar.graphics import style
-class RoundBox(hippo.CanvasBox, hippo.CanvasItem):
+class CanvasRoundBox(hippo.CanvasBox, hippo.CanvasItem):
__gtype_name__ = 'SugarRoundBox'
_BORDER_DEFAULT = style.LINE_WIDTH
diff --git a/sugar/graphics/frame.py b/sugar/graphics/frame.py
deleted file mode 100644
index e7bf6fd..0000000
--- a/sugar/graphics/frame.py
+++ /dev/null
@@ -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()