Code

Extensions. Text support improvement in XAML and FXG export.
[inkscape.git] / share / extensions / jessyInk_effects.py
1 #!/usr/bin/env python
2 # Copyright 2008, 2009 Hannes Hochreiner
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation, either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see http://www.gnu.org/licenses/.
16 # These lines are only needed if you don't put the script directly into
17 # the installation directory
18 import sys
19 # Unix
20 sys.path.append('/usr/share/inkscape/extensions')
21 # OS X
22 sys.path.append('/Applications/Inkscape.app/Contents/Resources/extensions')
23 # Windows
24 sys.path.append('C:\Program Files\Inkscape\share\extensions')
26 # We will use the inkex module with the predefined Effect base class.
27 import inkex
28 import gettext
29 _ = gettext.gettext
31 class JessyInk_Effects(inkex.Effect):
32         def __init__(self):
33                 # Call the base class constructor.
34                 inkex.Effect.__init__(self)
36                 self.OptionParser.add_option('--tab', action = 'store', type = 'string', dest = 'what')
37                 self.OptionParser.add_option('--effectInOrder', action = 'store', type = 'string', dest = 'effectInOrder', default = 1)
38                 self.OptionParser.add_option('--effectInDuration', action = 'store', type = 'float', dest = 'effectInDuration', default = 0.8)
39                 self.OptionParser.add_option('--effectIn', action = 'store', type = 'string', dest = 'effectIn', default = 'none')
40                 self.OptionParser.add_option('--effectOutOrder', action = 'store', type = 'string', dest = 'effectOutOrder', default = 2)
41                 self.OptionParser.add_option('--effectOutDuration', action = 'store', type = 'float', dest = 'effectOutDuration', default = 0.8)
42                 self.OptionParser.add_option('--effectOut', action = 'store', type = 'string', dest = 'effectOut', default = 'none')
44                 inkex.NSS[u"jessyink"] = u"https://launchpad.net/jessyink"
46         def effect(self):
47                 # Check version.
48                 scriptNodes = self.document.xpath("//svg:script[@jessyink:version='1.5.5']", namespaces=inkex.NSS)
50                 if len(scriptNodes) != 1:
51                         inkex.errormsg(_("The JessyInk script is not installed in this SVG file or has a different version than the JessyInk extensions. Please select \"install/update...\" from the \"JessyInk\" sub-menu of the \"Extensions\" menu to install or update the JessyInk script.\n\n"))
53                 if len(self.selected) == 0:
54                         inkex.errormsg(_("No object selected. Please select the object you want to assign an effect to and then press apply.\n"))
56                 for id, node in self.selected.items():
57                         if (self.options.effectIn == "appear") or (self.options.effectIn == "fade") or (self.options.effectIn == "pop"):
58                                 node.set("{" + inkex.NSS["jessyink"] + "}effectIn","name:" + self.options.effectIn  + ";order:" + self.options.effectInOrder + ";length:" + str(int(self.options.effectInDuration * 1000)))
59                                 # Remove possible view argument.
60                                 if node.attrib.has_key("{" + inkex.NSS["jessyink"] + "}view"):
61                                         del node.attrib["{" + inkex.NSS["jessyink"] + "}view"]
62                         else:
63                                 if node.attrib.has_key("{" + inkex.NSS["jessyink"] + "}effectIn"):
64                                         del node.attrib["{" + inkex.NSS["jessyink"] + "}effectIn"]
65                 
66                         if (self.options.effectOut == "appear") or (self.options.effectOut == "fade") or (self.options.effectOut == "pop"):
67                                 node.set("{" + inkex.NSS["jessyink"] + "}effectOut","name:" + self.options.effectOut  + ";order:" + self.options.effectOutOrder + ";length:" + str(int(self.options.effectOutDuration * 1000)))
68                                 # Remove possible view argument.
69                                 if node.attrib.has_key("{" + inkex.NSS["jessyink"] + "}view"):
70                                         del node.attrib["{" + inkex.NSS["jessyink"] + "}view"]
71                         else:
72                                 if node.attrib.has_key("{" + inkex.NSS["jessyink"] + "}effectOut"):
73                                         del node.attrib["{" + inkex.NSS["jessyink"] + "}effectOut"]
75 # Create effect instance
76 effect = JessyInk_Effects()
77 effect.affect()