Rename IconColor to XoColor.

This commit is contained in:
Tomeu Vizoso
2007-02-23 13:09:33 +01:00
parent b8792c5c32
commit cb0d75eb59
22 changed files with 36 additions and 41 deletions
+2 -2
View File
@@ -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)
+2 -2
View File
@@ -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: