Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/home
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-02-23 12:09:33 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-02-23 12:09:33 (GMT)
commitcb0d75eb59da59ff505794d6a1bddb484b4b2e88 (patch)
treef811cc494c80532e37616d58e158bfecdfb5f04b /shell/view/home
parentb8792c5c32561ca4d617e4e359d031f0f6128af0 (diff)
Rename IconColor to XoColor.
Diffstat (limited to 'shell/view/home')
-rw-r--r--shell/view/home/HomeBox.py4
-rw-r--r--shell/view/home/activitiesdonut.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/shell/view/home/HomeBox.py b/shell/view/home/HomeBox.py
index c6c0f88..0d5f999 100644
--- a/shell/view/home/HomeBox.py
+++ b/shell/view/home/HomeBox.py
@@ -19,7 +19,7 @@ import math
import hippo
from sugar.graphics import units
-from sugar.graphics.iconcolor import IconColor
+from sugar.graphics.xocolor import XoColor
from view.home.activitiesdonut import ActivitiesDonut
from view.devices import deviceview
@@ -59,7 +59,7 @@ class HomeBox(hippo.CanvasBox, hippo.CanvasItem):
if self._donut:
self.remove(self._donut)
self._donut = None
- self._my_icon.props.color = IconColor('insensitive')
+ self._my_icon.props.color = XoColor('insensitive')
def do_allocate(self, width, height, origin_changed):
hippo.CanvasBox.do_allocate(self, width, height, origin_changed)
diff --git a/shell/view/home/activitiesdonut.py b/shell/view/home/activitiesdonut.py
index b1ec62d..6c411ae 100644
--- a/shell/view/home/activitiesdonut.py
+++ b/shell/view/home/activitiesdonut.py
@@ -21,7 +21,7 @@ import colorsys
from sugar.graphics.canvasicon import CanvasIcon
from sugar.graphics import units
-from sugar.graphics import iconcolor
+from sugar.graphics import xocolor
from sugar import profile
# TODO: rgb_to_html and html_to_rgb are useful elsewhere
@@ -89,7 +89,7 @@ class ActivityIcon(CanvasIcon):
new_fill = rgb_to_html(*colorsys.hsv_to_rgb(h, s * factor, v))
h, s, v = colorsys.rgb_to_hsv(*html_to_rgb(self._orig_color.get_stroke_color()))
new_stroke = rgb_to_html(*colorsys.hsv_to_rgb(h, s * factor, v))
- return iconcolor.IconColor("%s,%s" % (new_stroke, new_fill))
+ return xocolor.XoColor("%s,%s" % (new_stroke, new_fill))
def _pulse_cb(self):
if self._direction == 1: