1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
<menudata>
<menubar>
<menu>
<label>&File</label>
<items>
<menuitem>
<label>Open</label>
<help>Load model from file</help>
<handler>OnOpen</handler>
<shortcut>Ctrl+O</shortcut>
</menuitem>
<menuitem>
<label>Save</label>
<help>Save model</help>
<handler>OnSave</handler>
<shortcut>Ctrl+S</shortcut>
</menuitem>
<menuitem>
<label>Quit editor</label>
<help>Close editor window</help>
<handler>OnClose</handler>
<shortcut>Ctrl+W</shortcut>
</menuitem>
</items>
</menu>
<menu>
<label>&Run</label>
<items>
<menuitem>
<label>Run</label>
<help>Run Python script</help>
<handler>OnRun</handler>
<shortcut>Ctrl+R</shortcut>
</menuitem>
<menuitem>
<label>Set parameters</label>
<help>Set command line parameters for the script</help>
<handler>OnSetParameters</handler>
</menuitem>
</items>
</menu>
<menu>
<label>&Templates</label>
<items>
<menuitem>
<label>Load script &template</label>
<help>Load simple script template</help>
<handler>OnSimpleScriptTemplate</handler>
</menuitem>
<menuitem>
<label>Load GRASS &tool template</label>
<help>Load full GRASS tool template</help>
<handler>OnGrassModuleTemplate</handler>
</menuitem>
</items>
</menu>
<menu>
<label>&Examples</label>
<items>
<menuitem>
<label>Load script &example</label>
<help>Load simple script example</help>
<handler>OnSimpleScriptExample</handler>
</menuitem>
<menuitem>
<label>Load GRASS &tool example</label>
<help>Load full GRASS tool example</help>
<handler>OnGrassModuleExample</handler>
</menuitem>
<menuitem>
<label>Load GRASS tool error &handling example</label>
<help>Load full GRASS tool with error handling example</help>
<handler>OnGrassModuleErrorHandlingExample</handler>
</menuitem>
</items>
</menu>
<menu>
<label>&Help</label>
<items>
<menuitem>
<label>GRASS Python Help</label>
<help>Display documentation for writing Python code in GRASS GIS</help>
<handler>OnHelp</handler>
</menuitem>
<menuitem>
<label>Python help</label>
<help>Display documentation for writing Python code in general</help>
<handler>OnPythonHelp</handler>
</menuitem>
<menuitem>
<label>GRASS Tools help</label>
<help>Display the HTML man page index for all GRASS tools</help>
<handler>OnModulesHelp</handler>
</menuitem>
<menuitem>
<label>GRASS Python code guidelines</label>
<help>Display guidelines for submitting Python code to GRASS GIS</help>
<handler>OnSubmittingHelp</handler>
</menuitem>
<menuitem>
<label>Getting your code to GRASS Addons</label>
<help>Display instructions for submitting you code to GRASS GIS Addons repository</help>
<handler>OnAddonsHelp</handler>
</menuitem>
<menuitem>
<label>Get support</label>
<help>Display information about getting support for writing Python code in GRASS GIS</help>
<handler>OnSupport</handler>
</menuitem>
</items>
</menu>
</menubar>
</menudata>
|