Adapt to the new artwork stylesheets

This commit is contained in:
Marco Pesenti Gritti 2006-08-19 13:39:13 +02:00
parent fd20af1431
commit 32a368bdbb
2 changed files with 12 additions and 4 deletions

View File

@ -100,6 +100,11 @@ class Model(goocanvas.CanvasModelSimple):
tasks.translate(600, 450) tasks.translate(600, 450)
root.add_child(tasks) 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): class HomeView(goocanvas.CanvasView):
def __init__(self, shell): def __init__(self, shell):
goocanvas.CanvasView.__init__(self) goocanvas.CanvasView.__init__(self)

View File

@ -21,11 +21,14 @@ class IconCache(gobject.GObject):
icon_file.close() icon_file.close()
if color != None: if color != None:
style = '.fill-color {fill: %s;}' % (color) style = '.fill {fill:%s;stroke:%s;}' % (color, color)
data = re.sub('\.fill-color \{.*\}', style, data) data = re.sub('\.fill \{.*\}', style, data)
style = '.fill-and-stroke-color {fill: %s; stroke: %s;}' % (color, color) style = '.shape {stroke:%s;fill:%s;}' % ('black', 'black')
data = re.sub('\.fill-and-stroke-color \{.*\}', style, data) 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 = gtk.gdk.pixbuf_loader_new_with_mime_type('image/svg-xml')
loader.set_size(size, size) loader.set_size(size, size)