~ubuntu-branches/ubuntu/precise/inkscape/precise-updates

« back to all changes in this revision

Viewing changes to share/extensions/jessyInk_effects.inx

  • Committer: Bazaar Package Importer
  • Author(s): Alex Valavanis
  • Date: 2010-09-12 19:44:58 UTC
  • mfrom: (1.1.12 upstream) (45.1.3 maverick)
  • Revision ID: james.westby@ubuntu.com-20100912194458-4sjwmbl7dlsrk5dc
Tags: 0.48.0-1ubuntu1
* Merge with Debian unstable (LP: #628048, LP: #401567, LP: #456248, 
  LP: #463602, LP: #591986)
* debian/control: 
  - Ubuntu maintainers
  - Promote python-lxml, python-numpy, python-uniconvertor to Recommends.
  - Demote pstoedit to Suggests (universe package).
  - Suggests ttf-dejavu instead of ttf-bitstream-vera (LP: #513319)
* debian/rules:
  - Run intltool-update on build (Ubuntu-specific).
  - Add translation domain to .desktop files (Ubuntu-specific).
* debian/dirs:
  - Add usr/share/pixmaps.  Allow inkscape.xpm installation
* drop 50-poppler-API.dpatch (now upstream)
* drop 51-paste-in-unwritable-directory.dpatch (now upstream) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
 
3
  <_name>Effects</_name>
 
4
  <id>jessyink.effects</id>
 
5
  <dependency type="executable" location="extensions">inkex.py</dependency>
 
6
  <dependency type="executable" location="extensions">jessyInk_effects.py</dependency>
 
7
  <param name="tab" type="notebook">
 
8
    <page name="settings" _gui-text="Settings">
 
9
                        <_param name="effectInLabel" type="description">Build-in effect</_param>
 
10
                        <param name="effectInOrder" type="int" min="1" max="100" _gui-text="Order:">1</param>
 
11
                        <param name="effectInDuration" precision="1" type="float" min="0.1" max="10.0" _gui-text="Duration in seconds:">0.8</param>
 
12
                        <param name="effectIn" type="optiongroup" _gui-text="Type:">
 
13
        <_option value="none">None (default)</_option>
 
14
        <_option value="appear">Appear</_option>
 
15
        <_option value="fade">Fade</_option>
 
16
        <_option value="pop">Pop</_option>
 
17
                        </param>
 
18
                        <_param name="effectOutLabel" type="description">Build-out effect</_param>
 
19
                        <param name="effectOutOrder" type="int" min="1" max="100" _gui-text="Order:">1</param>
 
20
                        <param name="effectOutDuration" precision="1" type="float" min="0.1" max="10.0" _gui-text="Duration in seconds:">0.8</param>
 
21
                        <param name="effectOut" type="optiongroup" _gui-text="Type:">
 
22
        <_option value="none">None (default)</_option>
 
23
        <_option value="appear">Appear</_option>
 
24
        <_option value="fade">Fade</_option>
 
25
        <_option value="pop">Pop</_option>
 
26
                        </param>
 
27
                </page>
 
28
    <page name="help" _gui-text="Help">
 
29
      <_param name="help_text" type="description">This extension allows you to install, update and remove object effects for a JessyInk presentation. Please see code.google.com/p/jessyink for more details.</_param>
 
30
    </page>
 
31
  </param>
 
32
  <effect>
 
33
    <object-type>all</object-type>
 
34
      <effects-menu>
 
35
        <submenu _name="JessyInk"/>
 
36
      </effects-menu>
 
37
  </effect>
 
38
  <script>
 
39
    <command reldir="extensions" interpreter="python">jessyInk_effects.py</command>
 
40
  </script>
 
41
</inkscape-extension>
 
42