From 32a368bdbb5dc9ce0de9adb5a1b120b39044dd77 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sat, 19 Aug 2006 11:39:13 +0000 Subject: Adapt to the new artwork stylesheets --- diff --git a/shell/home/HomeView.py b/shell/home/HomeView.py index 09627b6..6424e6e 100644 --- a/shell/home/HomeView.py +++ b/shell/home/HomeView.py @@ -100,6 +100,11 @@ class Model(goocanvas.CanvasModelSimple): tasks.translate(600, 450) root.add_child(tasks) + me = IconItem('stock-buddy', 'green', 150) + me.translate(600 - (me.get_property('width') / 2), + 450 - (me.get_property('height') / 2)) + root.add_child(me) + class HomeView(goocanvas.CanvasView): def __init__(self, shell): goocanvas.CanvasView.__init__(self) diff --git a/sugar/canvas/IconItem.py b/sugar/canvas/IconItem.py index 73098b7..b4ac205 100644 --- a/sugar/canvas/IconItem.py +++ b/sugar/canvas/IconItem.py @@ -21,11 +21,14 @@ class IconCache(gobject.GObject): icon_file.close() if color != None: - style = '.fill-color {fill: %s;}' % (color) - data = re.sub('\.fill-color \{.*\}', style, data) + style = '.fill {fill:%s;stroke:%s;}' % (color, color) + data = re.sub('\.fill \{.*\}', style, data) - style = '.fill-and-stroke-color {fill: %s; stroke: %s;}' % (color, color) - data = re.sub('\.fill-and-stroke-color \{.*\}', style, data) + style = '.shape {stroke:%s;fill:%s;}' % ('black', 'black') + data = re.sub('\.shape \{.*\}', style, data) + + style = '.shape-and-fill {fill:%s; stroke:%s;}' % (color, 'black') + data = re.sub('\.shape-and-fill \{.*\}', style, data) loader = gtk.gdk.pixbuf_loader_new_with_mime_type('image/svg-xml') loader.set_size(size, size) -- cgit v0.9.1