Adapt to the new artwork stylesheets

master
Marco Pesenti Gritti 18 years ago
parent fd20af1431
commit 32a368bdbb

@ -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)

@ -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)

Loading…
Cancel
Save