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

« back to all changes in this revision

Viewing changes to share/extensions/jessyInk_mouseHandler.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>Mouse handler</_name>
 
4
  <id>jessyink.mouseHandler</id>
 
5
  <dependency type="executable" location="extensions">inkex.py</dependency>
 
6
  <dependency type="executable" location="extensions">jessyInk_mouseHandler.py</dependency>
 
7
  <param name="tab" type="notebook">
 
8
    <page name="settings" _gui-text="Mouse handler">
 
9
                        <param name="mouseSetting" type="optiongroup" _gui-text="Mouse settings:">
 
10
        <_option value="default">Default</_option>
 
11
        <_option value="noclick">No-click</_option>
 
12
        <_option value="draggingZoom">Dragging/zoom</_option>
 
13
                        </param>
 
14
                </page>
 
15
    <page name="help" _gui-text="Help">
 
16
      <_param name="help_text" type="description">This extension allows you customise the mouse handler JessyInk uses. Please see code.google.com/p/jessyink for more details.</_param>
 
17
    </page>
 
18
  </param>
 
19
  <effect>
 
20
    <object-type>g</object-type>
 
21
      <effects-menu>
 
22
        <submenu _name="JessyInk"/>
 
23
      </effects-menu>
 
24
  </effect>
 
25
  <script>
 
26
    <command reldir="extensions" interpreter="python">jessyInk_mouseHandler.py</command>
 
27
  </script>
 
28
</inkscape-extension>
 
29