"""
Copyright (C) 2007-2011 Rob Antonishen; rob.antonishen@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
try:
except:
help="direction to restack")
help="arbitrary angle")
help="horizontal point to compare")
help="vertical point to compare")
help="Restack mode based on Z-Order")
dest="tab",
help="The selected UI-tab when OK was pressed")
dest="nb_direction",
help="The selected UI-tab when OK was pressed")
pass
else:
objects = {}
objlist = []
# process selection to get list of objects to be arranged
else:
#get all bounding boxes in file by calling inkscape again with the --query-all command line option
#it returns a comma separated list structured id,x,y,w,h
if bsubprocess:
f = p.communicate()[0]
try:
reader=csv.CSVParser().parse_string(f) #there was a module cvs.py in earlier inkscape that behaved differently
except:
else:
#build a dictionary with id as the key
if not bsubprocess: #close file if opened using os.popen3
f.close
#find the center of all selected objects **Not the average!
minx = x
miny = y
maxx = x + w
maxy = y + h
# get the bounding box
if x < minx:
minx = x
if (x + w) > maxx:
maxx = x + w
if y < miny:
miny = y
if (y + h) > maxy:
maxy = y + h
#calculate distances for each selected object
# get the bounding box
# calc the comparison coords
cx = x
cx = x + w
else: # middle
cx = x + w / 2
cy = y
cy = y + h
else: # middle
cy = y + h / 2
#direction chosen
if self.options.direction == "tb" or (self.options.direction == "aa" and self.options.angle == 270):
elif self.options.direction == "bt" or (self.options.direction == "aa" and self.options.angle == 90):
elif self.options.direction == "lr" or (self.options.direction == "aa" and (self.options.angle == 0 or self.options.angle == 360)):
elif self.options.direction == "rl" or (self.options.direction == "aa" and self.options.angle == 180):
#move them to the top of the object stack in this order.
parentnode = None
objects = []
else:
if parentnode is not None:
if __name__ == '__main__':
e = Restack()
e.affect()
# vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 fileencoding=utf-8 textwidth=99