From cb0d75eb59da59ff505794d6a1bddb484b4b2e88 Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Fri, 23 Feb 2007 12:09:33 +0000 Subject: Rename IconColor to XoColor. --- (limited to 'shell/view/home') 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: -- cgit v0.9.1