Commit ca9c52ed authored by sumpfralle's avatar sumpfralle

re-organized the help menu

added a link to the new User Manual wiki page


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@895 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 52917436
...@@ -28,7 +28,9 @@ ...@@ -28,7 +28,9 @@
<menuitem action="ToggleProcessPoolWindow"/> <menuitem action="ToggleProcessPoolWindow"/>
</menu> </menu>
<menu action="HelpMenu"> <menu action="HelpMenu">
<menuitem action="HelpUserManual"/>
<menuitem action="HelpIntroduction"/> <menuitem action="HelpIntroduction"/>
<menu action="HelpMenuMisc">
<menuitem action="HelpSupportedFormats"/> <menuitem action="HelpSupportedFormats"/>
<menuitem action="HelpModelTransformations"/> <menuitem action="HelpModelTransformations"/>
<menuitem action="HelpGCodeExport"/> <menuitem action="HelpGCodeExport"/>
...@@ -37,11 +39,13 @@ ...@@ -37,11 +39,13 @@
<menuitem action="HelpServerMode"/> <menuitem action="HelpServerMode"/>
<menuitem action="HelpCommandLine"/> <menuitem action="HelpCommandLine"/>
<menuitem action="HelpHotkeys"/> <menuitem action="HelpHotkeys"/>
<separator /> </menu>
<menu action="HelpMenuGUI">
<menuitem action="HelpToolTypes"/> <menuitem action="HelpToolTypes"/>
<menuitem action="HelpProcessSettings"/> <menuitem action="HelpProcessSettings"/>
<menuitem action="HelpBoundsSettings"/> <menuitem action="HelpBoundsSettings"/>
<menuitem action="HelpTaskSetup"/> <menuitem action="HelpTaskSetup"/>
</menu>
<separator /> <separator />
<menuitem action="ProjectWebsite"/> <menuitem action="ProjectWebsite"/>
<menuitem action="Forum"/> <menuitem action="Forum"/>
......
...@@ -6749,6 +6749,15 @@ Any selected group of dimensions will be scaled accordingly.</property> ...@@ -6749,6 +6749,15 @@ Any selected group of dimensions will be scaled accordingly.</property>
<object class="GtkAction" id="HelpMenu"> <object class="GtkAction" id="HelpMenu">
<property name="label">_Help</property> <property name="label">_Help</property>
</object> </object>
<object class="GtkAction" id="HelpMenuMisc">
<property name="label">Miscellaneous</property>
</object>
<object class="GtkAction" id="HelpMenuGUI">
<property name="label">_GUI description</property>
</object>
<object class="GtkAction" id="HelpUserManual">
<property name="label">User _Manual: Overview</property>
</object>
<object class="GtkAction" id="HelpIntroduction"> <object class="GtkAction" id="HelpIntroduction">
<property name="label">_Introduction</property> <property name="label">_Introduction</property>
</object> </object>
......
...@@ -303,7 +303,8 @@ class ProjectGui: ...@@ -303,7 +303,8 @@ class ProjectGui:
("ToggleLogWindow", self.toggle_log_window, None, "<Control>l"), ("ToggleLogWindow", self.toggle_log_window, None, "<Control>l"),
("ToggleProcessPoolWindow", self.toggle_process_pool_window, None, None), ("ToggleProcessPoolWindow", self.toggle_process_pool_window, None, None),
("ShowFontDialog", self.toggle_font_dialog_window, None, "<Control><Shift>t"), ("ShowFontDialog", self.toggle_font_dialog_window, None, "<Control><Shift>t"),
("HelpIntroduction", self.show_help, "Introduction", "F1"), ("HelpUserManual", self.show_help, "User_Manual", "F1"),
("HelpIntroduction", self.show_help, "Introduction", None),
("HelpSupportedFormats", self.show_help, "SupportedFormats", None), ("HelpSupportedFormats", self.show_help, "SupportedFormats", None),
("HelpModelTransformations", self.show_help, "ModelTransformations", None), ("HelpModelTransformations", self.show_help, "ModelTransformations", None),
("HelpToolTypes", self.show_help, "ToolTypes", None), ("HelpToolTypes", self.show_help, "ToolTypes", None),
...@@ -314,7 +315,6 @@ class ProjectGui: ...@@ -314,7 +315,6 @@ class ProjectGui:
("HelpSimulation", self.show_help, "Simulation", None), ("HelpSimulation", self.show_help, "Simulation", None),
("Help3DView", self.show_help, "3D_View", None), ("Help3DView", self.show_help, "3D_View", None),
("HelpServerMode", self.show_help, "ServerMode", None), ("HelpServerMode", self.show_help, "ServerMode", None),
# TODO: write a general wiki page about the commandline usage (not just examples)
("HelpCommandLine", self.show_help, "CommandlineExamples", None), ("HelpCommandLine", self.show_help, "CommandlineExamples", None),
("HelpHotkeys", self.show_help, "KeyboardShortcuts", None), ("HelpHotkeys", self.show_help, "KeyboardShortcuts", None),
("ProjectWebsite", self.show_help, "http://pycam.sourceforge.net", None), ("ProjectWebsite", self.show_help, "http://pycam.sourceforge.net", None),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment