home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Inkscape / Inkscape-0.48.2-1-win32.exe / share / keys / acd-canvas.xml next >
Extensible Markup Language  |  2011-07-08  |  14KB  |  399 lines

  1. <?xml version="1.0"?>
  2. <keys name="ACD Systems Canvas 11">
  3.  
  4. <!--  
  5. This file contains ACD Systems Canvas 11 keyboard shortcuts. In each "bind" element:
  6.  
  7. - The "key" attribute contains the key name. The names are the same as those in the
  8. <gdk/gdkkeysyms.h> header file but without the leading "GDK_". If you don't have GDK
  9. source locally, you can view that file at:
  10.  
  11.   http://git.gnome.org/browse/gtk+/plain/gdk/gdkkeysyms.h
  12.  
  13. - The "modifiers" attribute contains a comma-separated list of modifiers, which can be
  14. one or more of: "Ctrl", "Shift", "Alt".
  15.  
  16. - The "action" attribute contains the name of the action. The complete list of actions
  17. (called "verbs") is in the file src/verbs.cpp in Inkscape source; there you can see
  18. brief descriptions of what each action does. The same action may have multiple key
  19. bindings.
  20.  
  21. - The "display" attribute controls whether this binding will be displayed in the menu
  22. and tooltips. Only one binding for each action may have this attribute.
  23.  
  24. In case of conflict, those bindings that come later override those before them. This
  25. file resides in the share/keys directory of your Inkscape installation, but you may also
  26. have a default.xml in your personal Inkscape profile directory (e.g. ~/.inkscape
  27. on Unix). The bindings in that personal file are added to (or, if there's a conflict,
  28. override) the bindings in the main default.xml.
  29. -->
  30.  
  31. <!-- TOOLS -->
  32.  
  33. <!--
  34.  
  35. Canvas has somewhat weird system of tools shortcuts. It has 12 groups of tools, 
  36. and a tool from one group can have same shortcut another tool from other group 
  37. has. E.g. both Airbrush, Speaker Notes and Multigon tools have A as shortcut. 
  38. This is so weird for Inkscape that we cannot even emulate that properly :-)
  39.  
  40. Following tools exist in Canvas and have a shortcut, but are not used in this 
  41. scheme due to reasons explained above and absense of such tools in Inkscape:
  42.  
  43. Linear Dimensioning Tool - somewhat close to Dimensions+Measure Path
  44. Knife tool - K
  45. Hand tool - Spacebar works in Inkscape anyway, so not using it
  46.  
  47. Wand tool - W
  48. Lasso tool - L
  49. Remote Move tool - V - actually. Ctrl+Selector do this one-direction-shift-only
  50. Eraser tool - E
  51. Marker tool - H
  52. Airbrush tool - A
  53. Neon tool - T
  54. Bucket tool - K
  55.  
  56. Blur tool - F
  57. Sharpen tool - Q
  58. Rubber Stamp tool - S
  59. Smudge tool - U
  60. Dodge - O
  61. Burn - N
  62. Sponge - D
  63. Red Eye Reduction - R
  64. Polygon tool - P
  65. Reshape - E (you select an object and draw freehand lines to add/subtract from this path)
  66. Speaker Notes - A
  67. Scissor tool - C
  68. -->
  69.  
  70.   <bind key="S" action="ToolSelector" display="true"/>
  71.   <bind key="s" action="ToolSelector" />
  72.  
  73.   <bind action="SelectPrefs" />
  74. <!--
  75.   <bind key="F2" action="ToolNode" display="true"/>
  76.   <bind key="n" action="ToolNode" />
  77.   <bind key="N" action="ToolNode" />
  78.  
  79.  
  80.   <bind key="F2" modifiers="Shift" action="ToolTweak" display="true"/>
  81.   <bind key="w" action="ToolTweak" />
  82.   <bind key="W" action="ToolTweak" />
  83.  
  84. -->
  85.  
  86. <!--
  87.   This is actually a trick since in Canvas 11 Ctrl+Spacebar is for zooming in 
  88.   and Ctrl+Shift+Spacebar is for zooming out
  89. -->
  90.   <bind key="Spacebar" modifiers="Ctrl" action="ToolZoom" display="true"/>
  91.   <bind key="Spacebar" modifiers="Ctrl,Shift" action="ToolZoom" />
  92.  
  93.   <bind key="R" action="ToolRect" display="true"/>
  94.   <bind key="r" action="ToolRect" />
  95.  
  96. <!-- 3Dbox tool called Cube tool exists in Canvas, but has no shortcut
  97.   <bind key="F4" modifiers="Shift" action="Tool3DBox" display="true"/>
  98.   <bind key="x" action="Tool3DBox" />
  99.   <bind key="X" action="Tool3DBox" />
  100. -->
  101.  
  102. <!-- This is called Oval tool -->
  103.   <bind key="O" action="ToolArc" display="true"/>
  104.   <bind key="o" action="ToolArc" />
  105.  
  106.   <bind key="A" action="ToolStar" display="true"/>
  107.   <bind key="a" action="ToolStar" />      
  108.  
  109.   <bind action="StarPrefs" />
  110. <!-- Spiral tools exists in Canvas, but has no shortcut
  111.   <bind key="F9" action="ToolSpiral" display="true"/>
  112.   <bind key="i" action="ToolSpiral" />
  113.   <bind key="I" action="ToolSpiral" />
  114. -->
  115.  
  116.   <bind key="P" action="ToolPencil" display="true"/>
  117.   <bind key="p" action="ToolPencil" />
  118.   <bind key="F" action="ToolPencil" display="true"/>
  119.   <bind key="f" action="ToolPencil" />
  120.  
  121.   <bind key="B" action="ToolPen" display="true"/>
  122.   <bind key="b" action="ToolPen" />
  123.  
  124. <!-- It's Paintbrush, but... read the explanation above
  125.   <bind key="B" modifiers="Ctrl" action="ToolCalligraphic" display="true"/>
  126.   <bind key="b" action="ToolCalligraphic" />
  127. -->
  128.  
  129. <!-- K is also used for Knife tool, but we don't have it, so using K for bucket fill -->
  130.   <bind key="K" modifiers="Shift" action="ToolPaintBucket" display="true"/>
  131.   <bind key="k" action="ToolPaintBucket" />
  132.  
  133.   <bind key="T" action="ToolText" display="true"/>
  134.   <bind key="t" action="ToolText" />
  135.  
  136.   <bind key="G" modifiers="Ctrl" action="ToolGradient" display="true"/>
  137.   <bind key="g" action="ToolGradient" />
  138.  
  139. <!-- Canvas has various smart connection lines. Shortcut seems to be missing
  140.   <bind key="F2" modifiers="Ctrl" action="ToolConnector" display="true"/>
  141.   <bind key="o" action="ToolConnector" />
  142.   <bind key="O" action="ToolConnector" />
  143. -->
  144.  
  145.   <bind key="I" action="ToolDropper" display="true"/>
  146.   <bind key="i" action="ToolDropper" />
  147.  
  148. <!-- FILE MENU -->
  149.  
  150.   <bind key="n" modifiers="Ctrl" action="FileNew" display="true"/>
  151.   <bind key="N" modifiers="Ctrl" action="FileNew" />
  152.  
  153.   <bind key="o" modifiers="Ctrl" action="FileOpen" display="true"/>
  154.   <bind key="O" modifiers="Ctrl" action="FileOpen" />
  155.  
  156.   <bind key="F4" modifiers="Ctrl" action="FileClose" display="true"/>
  157.  
  158.   <bind key="s" modifiers="Ctrl" action="FileSave" display="true"/>
  159.   <bind key="S" modifiers="Ctrl" action="FileSave" />
  160.  
  161.   <bind key="s" modifiers="Ctrl,Shift" action="FileSaveAs" display="true"/>
  162.   <bind key="S" modifiers="Ctrl,Shift" action="FileSaveAs" />
  163.  
  164.   <bind key="p" modifiers="Ctrl" action="FilePrint" display="true"/>
  165.   <bind key="P" modifiers="Ctrl" action="FilePrint" />
  166.  
  167.   <bind key="x" modifiers="Alt" action="FileQuit" display="true"/>
  168.   <bind key="X" modifiers="Alt" action="FileQuit" display="true"/>
  169.  
  170. <!-- EDIT MENU -->
  171.  
  172.   <bind key="z" modifiers="Ctrl" action="EditUndo" display="true"/>
  173.   <bind key="Z" modifiers="Ctrl" action="EditUndo" />
  174.  
  175.   <bind key="z" modifiers="Ctrl,Shift" action="EditRedo" display="true"/>
  176.   <bind key="Z" modifiers="Ctrl,Shift" action="EditRedo" />
  177.  
  178. <!-- Repeat - Alt+Enter - Inkscape doesn't have it yet -->
  179.  
  180.   <bind key="x" modifiers="Ctrl" action="EditCut" display="true"/>
  181.   <bind key="X" modifiers="Ctrl" action="EditCut" />
  182.  
  183.   <bind key="c" modifiers="Ctrl" action="EditCopy" display="true"/>
  184.   <bind key="C" modifiers="Ctrl" action="EditCopy" />
  185.  
  186.   <bind key="v" modifiers="Ctrl" action="EditPaste" display="true"/>
  187.   <bind key="V" modifiers="Ctrl" action="EditPaste" />
  188.  
  189. <!-- Paste Into - Ctrl+Shift+V - needs clarification -->
  190.  
  191.   <bind key="Delete" action="EditDelete" display="true"/>
  192.   <bind key="KP_Delete" action="EditDelete" />
  193.  
  194. <!-- is finding 100% analog to Inkscape's? -->
  195.  
  196.   <bind key="a" modifiers="Ctrl,Shift" action="DialogFind" display="true"/>
  197.   <bind key="A" modifiers="Ctrl,Shift" action="DialogFind" />
  198.  
  199.   <bind key="a" modifiers="Ctrl" action="EditSelectAll" display="true"/>
  200.   <bind key="A" modifiers="Ctrl" action="EditSelectAll" />
  201.  
  202.   <bind key="d" modifiers="Ctrl" action="EditDuplicate" display="true"/>
  203.   <bind key="D" modifiers="Ctrl" action="EditDuplicate" />
  204.  
  205. <!-- Duplicate With Transform - Ctrl+Shift+D - Inkscape doesn't seem to have straight analog -->
  206. <!-- Replicate - Ctrl+Alt+D - Inkscape doesn't seem to have straight analog -->
  207.  
  208.  
  209. <!-- TEXT MENU -->
  210.  
  211. <!-- we don't seem to have verbs for them: 
  212. Reduce Font Size - Ctrl+Shift+,
  213. Increase Font Size - Ctrl+Shift+.
  214. Plain Style - Ctrl+Shift+P
  215. Bold Style - Ctrl+Shift+B
  216. Italic Style - Ctrl+Shift+I
  217. Underline Style - Ctrl+Shift+U
  218. Strikethrough - Ctrl+Shift+K
  219. Outline - Ctrl+Shift+O
  220. Shadow - Ctrl+Shift+W
  221. Small Caps - Ctrl+Shift+\
  222. Superscript - Ctrl+Shift+=
  223. Subscript - Ctrl+Shift+- -->
  224.  
  225.   <bind key="]" modifiers="Ctrl,Shift" action="org.inkscape.text.uppercase" display="true"/>
  226.  
  227.   <bind key="[" modifiers="Ctrl,Shift" action="org.inkscape.text.lowercase" display="true"/>
  228.  
  229.   <bind key=";" modifiers="Ctrl,Shift" action="org.inkscape.text.titlecase" display="true"/>
  230.  
  231. <!-- we don't seem to have verbs for them: 
  232. Right Justification - Ctrl+Shift+R
  233. Left - Ctrl+Shift+L
  234. Center - Ctrl+Shift+C
  235. Full - Ctrl+Shift+F
  236. Leading -> Tighten - Alt+Shift+Up arrow
  237. Leading -> Loosen - Alt+Shift+Down arrow
  238. Kerning -> Tighten - Alt+Shift+Left arrow
  239. Kerning -> Loosen - Alt+Shift+Right arrow
  240. Kerning -> Tighten Fine Kerning 0,25 - Ctrl+Alt+Shift+Left arrow
  241. Kerning -> Loosen Fine Kerning 0,25 - Ctrl+Alt+Shift+Right arrow
  242. -->
  243.  
  244.   <bind key="T" modifiers="Ctrl" action="DialogText" display="true"/>
  245.   <bind key="t" modifiers="Ctrl" action="DialogText" />  
  246.  
  247. <!-- OBJECT MENU -->
  248.  
  249. <!-- Edit Object... - Ctrl+E (╤Ç╨╡╨┤╨░╨║╤é╨╕╤Ç╨╛╨▓╨░╨╜╨╕╨╡ ╨╛╨▒╤è╨╡╨║╤é╨░ ╨┐╨╛ ╨║╨╛╨╜╤é╤Ç╨╛╨╗╤î╨╜╤ï╨╝ ╤é╨╛╤ç╨║╨░╨╝) -->
  250.  
  251. <!-- "Object Specs...": -->
  252.  
  253.   <bind key="I" modifiers="Ctrl" action="DialogObjectProperties" display="true"/>
  254.   <bind key="i" modifiers="Ctrl" action="DialogObjectProperties" />
  255.  
  256.   <bind key="F" modifiers="Ctrl" action="SelectionToFront" display="true"/>
  257.   <bind key="f" modifiers="Ctrl" action="SelectionToFront" />
  258.  
  259.   <bind key="B" modifiers="Ctrl" action="SelectionToBack" display="true"/>
  260.   <bind key="b" modifiers="Ctrl" action="SelectionToBack" />
  261.  
  262.   <bind key="[" modifiers="Ctrl" action="SelectionRaise" display="true"/>
  263.  
  264.   <bind key="]" modifiers="Ctrl" action="SelectionLower" display="true"/>
  265.  
  266.   <bind key="F6" action="DialogAlignDistribute" display="true"/>
  267.  
  268. <!-- Move... -->
  269.   <bind key="m" modifiers="Ctrl" action="DialogTransform" display="true"/>
  270.   <bind key="M" modifiers="Ctrl" action="DialogTransform" />
  271.  
  272. <!-- Scale... -->
  273.   <bind key="F8" action="DialogTransform" display="true"/>
  274.  
  275.   <bind key="g" modifiers="Ctrl" action="SelectionGroup" display="true"/>
  276.   <bind key="G" modifiers="Ctrl" action="SelectionGroup" />
  277.  
  278.   <bind key="u" modifiers="Ctrl" action="SelectionUnGroup" display="true"/>
  279.   <bind key="U" modifiers="Ctrl" action="SelectionUnGroup" />
  280.  
  281. <!-- we don't have individual verbs for locking and unlocking
  282. Lock - Ctrl+L
  283. Unlock - Ctrl+K
  284. -->
  285.  
  286. <!-- Join? Huh? 
  287. Path -> Join - Ctrl+Alt+J
  288. -->
  289.  
  290.   <bind key="s" modifiers="Ctrl,Alt" action="SelectionSimplify" display="true"/>
  291.   <bind key="S" modifiers="Ctrl,Alt" action="SelectionSimplify" />
  292.  
  293. <!-- Right now simplification of Bezier curves in Inkscape is destructive:
  294. Path -> Unsmooth - Ctrl+Alt+U
  295. -->
  296.  
  297. <!-- Live Curve Editing is conceptually close to wireframe mode, thus using the verb -->
  298.   <bind key="l" modifiers="Ctrl,Alt" action="ViewModeToggle" display="true" />
  299.   <bind key="L" modifiers="Ctrl,Alt" action="ViewModeToggle" />
  300.  
  301. <!-- LAYOUT MENU -->
  302.  
  303. <!-- Needs checking
  304. Display -> Size - Shift+F8
  305. -->
  306.  
  307.   <bind key="F9" modifiers="Shift" action="ToggleGrid" />
  308.  
  309.   <bind key="F11" modifiers="Shift" action="ToggleRulers" />
  310.  
  311.   <bind key="F6" modifiers="Shift" action="ToggleGuides" />
  312.   
  313. <!-- EEK! Inkscape has no pages! 
  314. Display -> Page Breaks - F10
  315.  
  316. But then we don;t need this too :)
  317.  
  318. Display -> Refresh - F5
  319. -->
  320.  
  321. <!-- No named views at this time
  322. Views -> New... - Ctrl+Alt+N
  323. -->
  324.  
  325.   <bind key="KP_Add" modifiers="Shift,Alt" action="ZoomIn" display="true"/>
  326.  
  327.   <bind key="KP_Subtract" modifiers="Shift,Alt" action="ZoomOut" display="true"/>
  328.  
  329. <!-- This is "Home View" in Canvas's terminology -->
  330.   <bind key="F3" action="Zoom1:0" display="true"/>
  331.  
  332. <!-- Views -> Fit to Window - Shift+F3
  333.   <bind key="4" action="ZoomDrawing" display="true"/>
  334.   <bind key="5" action="ZoomPage" display="true"/>
  335.   <bind key="KP_5" action="ZoomPage" />
  336. -->
  337.  
  338. <!-- Not implemented
  339. Views -> Zoom... - Ctrl+/ (╨┐╨╡╤Ç╨╡╤à╨╛╨┤ ╨▓ ╤ü╤é╨░╤é╤â╤ü╨╜╤â╤Ä ╤ü╤é╤Ç╨╛╨║╤â ╤ü ╨║╨╗╨░╨▓╨╕╨░╤é╤â╤Ç╤ï ╨┤╨╗╤Å ╨▓╨▓╨╛╨┤╨░ ╨╖╤â╨╝╨░ ╤Ç╤â╤ç╨║╨░╨╝╨╕)
  340. -->
  341.  
  342. <!-- Sending users to Document Properties for defining measure unit used in rulers -->
  343.   <bind key="F11" action="DialogDocumentProperties" />
  344.  
  345. <!-- Not available in Inkscape at all
  346. Slide Show - F12 -->
  347.  
  348. <!--
  349.   This is a trick again, since Smart Mouse analog (snapping to objects/nodes/etc.) 
  350.   and snapping to grids/guides are setup in Document Properties in Inkscape
  351. -->
  352.   <bind key="[" modifiers="Ctrl,Alt" action="DialogDocumentProperties" />
  353.  
  354.   <bind key="F9" modifiers="Ctrl,Shift" action="DialogDocumentProperties" />
  355.  
  356.   <bind key="F7" modifiers="Ctrl,Shift" action="DialogDocumentProperties" />
  357.  
  358.  
  359. <!-- EFFECTS MENU -->
  360.  
  361. <!--Rotate tab in Transformation dialog is the answer -->
  362.   <bind key="r" modifiers="Ctrl" action="DialogTransform" display="true"/>
  363.   <bind key="R" modifiers="Ctrl" action="DialogTransform" />
  364.  
  365. <!-- 
  366.   Not sure what to do with this one.
  367.   Basically it's skew mode of our Selector tool
  368.   
  369.   Freeform - Ctrl+Alt+F (skew)
  370. -->
  371.  
  372. <!-- This is not interactive Blend tool, but something close. Yay for LPE :) -->
  373.   <bind key="b" modifiers="Ctrl,Alt" action="org.ekips.filter.interp" display="true"/>
  374.   <bind key="B" modifiers="Ctrl,Alt" action="org.ekips.filter.interp" />
  375.  
  376. <!-- 
  377.   "Combine..." dialog (Ctrl+Alt+C) provides boolean ops.
  378.   There are no shortcuts for them in Canvas
  379. -->
  380.  
  381. <!-- This is not interactive Envelope tool, but something close. Yay for LPE :) -->
  382.   <bind key="v" modifiers="Ctrl,Alt" action="org.ekips.filter.perspective" display="true"/>
  383.   <bind key="V" modifiers="Ctrl,Alt" action="org.ekips.filter.perspective" />
  384.  
  385. <!-- This is not interactive Extrusion tool, but something close. Yay for LPE :) -->
  386.  
  387.   <bind key="e" modifiers="Ctrl,Alt" action="org.ekips.filter.motion" display="true"/>
  388.   <bind key="E" modifiers="Ctrl,Alt" action="org.ekips.filter.motion" />
  389.  
  390. <!-- IMAGE MENU -->
  391.  
  392. <!-- Not implemented in Inkscape:
  393. Select -> Hide Edges - Ctrl+Shift+E -->
  394.  
  395.   <bind key="i" modifiers="Ctrl,Alt" action="FileImport" display="true"/>
  396.   <bind key="I" modifiers="Ctrl,Alt" action="FileImport" />
  397.  
  398. </keys>
  399.