8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free#!/usr/bin/env python
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free# Written by Tavmjong Bah
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-freeimport inkex
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-freeclass C(inkex.Effect):
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free def __init__(self):
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free inkex.Effect.__init__(self)
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free self.OptionParser.add_option("-s", "--size", action="store", type="int", dest="icon_size", default="16", help="Icon size")
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free def effect(self):
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free size = self.options.icon_size
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free root = self.document.getroot()
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free root.set("id", "SVGRoot")
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free root.set("width", str(size) + 'px')
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free root.set("height", str(size) + 'px')
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free root.set("viewBox", "0 0 " + str(size) + " " + str(size) )
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free namedview = root.find(inkex.addNS('namedview', 'sodipodi'))
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free if namedview is None:
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free namedview = inkex.etree.SubElement( root, inkex.addNS('namedview', 'sodipodi') );
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free namedview.set(inkex.addNS('document-units', 'inkscape'), 'px')
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free namedview.set(inkex.addNS('zoom', 'inkscape'), str(256.0/size) )
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free namedview.set(inkex.addNS('cx', 'inkscape'), str(size/2.0) )
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free namedview.set(inkex.addNS('cy', 'inkscape'), str(size/2.0) )
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free namedview.set(inkex.addNS('grid-bbox', 'inkscape'), "true" )
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-free
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-freec = C()
8ac705ee842a9087042c9ed7d126f39cadac9cectavmjong-freec.affect()