On 08/14/2018 04:29 PM, Mark Burton wrote:

I'm just starting to add some commands to the context menu and I would
like to have items that do the same as the alt-left and alt-right
keys (Select / Navigation / Go Back | Go Forward) but I can't find the
names of the commands to use. I've searched the documentation but
failed.


Unfortunately "Go Back" and "Go Forward" are NOT commands, like all those documented here:

Chapter 6. Commands written in the Java™ programming language
http://www.xmlmind.com/xmleditor/_distrib/doc/commands/commandref.html

"Go Back" and "Go Forward" are *actions*, which are objects somewhat different from plain commands.

These 2 actions are declared as follows:
---
  <action name="goBackAction" label="Go _Back"
          toolTip="Go back (Ctrl-click to show history)"
          icon="icons/goBackAction.png"
          accelerator="alt LEFT">
    <class>com.xmlmind.xmleditapp.kit.part.NavigateAction</class>
    <property name="command" type="String" value="back" />
  </action>

  <action name="goForwardAction" label="Go _Forward"
          toolTip="Go forward (Ctrl-click to show history)"
          icon="icons/goForwardAction.png"
          accelerator="alt RIGHT">
    <class>com.xmlmind.xmleditapp.kit.part.NavigateAction</class>
    <property name="command" type="String" value="forward" />
  </action>
---

in DesktopApp.xxe_gui (copy here: http://www.xmlmind.com/xmleditor/_distrib/doc/gui/gui/DesktopApp.xxe_gui)

More info about actions here:

XMLmind XML Editor - Customizing the User Interface
http://www.xmlmind.com/xmleditor/_distrib/doc/gui/index.html

and here:

1. action
http://www.xmlmind.com/xmleditor/_distrib/doc/gui/action.html




--
XMLmind XML Editor Support List
xmleditor-support@xmlmind.com
http://www.xmlmind.com/mailman/listinfo/xmleditor-support

Reply via email to