Code

Extensions. New Gcode tools extension (Bug #654528).
[inkscape.git] / share / extensions / gcodetools_dxf_points.inx
1 <?xml version="1.0" encoding="UTF-8"?>
2 <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
3     <_name>DXF Points</_name>
4     <id>ru.cnc-club.filter.gcodetools_dxfpoints_no_options</id>
5         <dependency type="executable" location="extensions">gcodetools.py</dependency>
6         <dependency type="executable" location="extensions">inkex.py</dependency>
7         <param name='active-tab' type="notebook">
9                 <page name='dxfpoints' _gui-text='DXF points'>
10                         <_param name="help" type="description">
12 Convert selected objects to drill points (as dxf_import plugin does). Also you can save original shape. Only the start point of each curve will be used.
14 Also you can manually select object, open XML editor (Shift+Ctrl+X) and add or remove XML tag 'dxfpoint' with any value.
15                   </_param>
16                         <param type='optiongroup' name='dxfpoints-action' _gui-text="Convert selection:">
17 <_option value='save'>set as dxfpoint and save shape</_option>
18 <_option value='replace'>set as dxfpoint and draw arrow</_option>
19 <_option value='clear'>clear dxfpoint sign</_option>
20                         </param>
22                 </page>
24                 <page name='preferences' _gui-text='Preferences'>
25                         <param name="filename" type="string" _gui-text="File:">output.ngc</param>
26                         <param name="add-numeric-suffix-to-filename" type="boolean" _gui-text="Add numeric suffix to filename">true</param>
27                         
28                         <param name="directory" type="string" _gui-text="Directory:">/home</param>
30                         <param name="Zsafe" type="float" precision="5" min="-1000" max="1000" _gui-text="Z safe height for G00 move over blank:">5</param>
31                         <param name="unit" type="enum" _gui-text="Units (mm or in):">
32                                 <item value="G21 (All units in mm)">mm</item>
33                                 <item value="G20 (All units in inches)">in</item>
34                         </param>
35                         <param name="postprocessor" type="enum" _gui-text="Post-processor:">
36                                 <item value=" ">None</item>
37                                 <item value="parameterize();">Parameterize Gcode</item>
38                                 <item value="flip(y);parameterize();">Flip y axis and parameterize Gcode</item>
39                                 <item value="round(4);">Round all values to 4 digits</item>
40                         </param>
41                         <param name="postprocessor-custom" type="string" _gui-text="Additional post-processor:"></param>                        
42                         
44                         <param name="create-log" type="boolean" _gui-text="Generate log file">false</param>                     
45                         <param name="log-filename" type="string" _gui-text="Full path to log file:"></param>                    
46                         
47                 </page>
49                 <page name='help' _gui-text='Help'>
50                         <_param name="fullhelp" type="description">
51 Gcodetools plug-in: converts paths to Gcode (using circular interpolation), makes offset paths and engraves sharp corners using cone cutters. 
52 This plug-in calculates Gcode for paths using circular interpolation or linear motion when needed.
54 Tutorials, manuals and support can be found at
55 English support forum:
56         http://www.cnc-club.ru/gcodetools
57         
58 and Russian support forum:
59         http://www.cnc-club.ru/gcodetoolsru
61 Credits: Nick Drobchenko, Vladimir Kalyaev, John Brooker, Henry Nicolas.
63 Gcodetools ver. 1.6.01
64 </_param>       
66                 </page>
68         </param>        
69     <effect>
70                 <effects-menu>
71                         <submenu _name="Gcodetools"/>
72                 </effects-menu>
73                 <object-type>path</object-type>
74     </effect>
75     <script>
76         <command reldir="extensions" interpreter="python">gcodetools.py</command>
77     </script>
78     
79 </inkscape-extension>