|
From: Robert E. <sky...@us...> - 2006-05-17 11:19:13
|
Update of /cvsroot/jcommander/plugins/org.jcommander.ui.app In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv32006 Modified Files: plugin.xml Log Message: Partial implementation for feature request [ 1490167 ] Selectable and editable panel location bar The location bar is now focusable and selectable by making use of a text field instead of a label Index: plugin.xml =================================================================== RCS file: /cvsroot/jcommander/plugins/org.jcommander.ui.app/plugin.xml,v retrieving revision 1.97 retrieving revision 1.98 diff -C2 -d -r1.97 -r1.98 *** plugin.xml 29 Apr 2006 20:26:48 -0000 1.97 --- plugin.xml 17 May 2006 11:19:09 -0000 1.98 *************** *** 416,419 **** --- 416,427 ---- toolbarPath="JCmdGroup/Panel" tooltip="Toggle the current selection"/> + + <action + class="org.jcommander.ui.filepanel.actions.FocusDirectoryInfoAction" + definitionId="org.jcommander.ui.app.FocusDirectoryInfoCommand" + icon="icons/invertCurrentSelection.png" + id="org.jcommander.ui.app.actions.FocusDirectoryInfo" + label="Focus Directory Info Panel"/> + <action label="Show Navigation History" class="org.jcommander.ui.filepanel.actions.ShowNavigationHistoryAction" *************** *** 851,854 **** --- 859,873 ---- keyConfigurationId="org.jcommander.ui.app.JCmdKeyConfiguration" keySequence="Tab" /> + + <command categoryId="org.jcommander.ui.app.categories.Tabs" + description="Focuses the directory info panel" + name="Focus Directory Info Panel" + id="org.jcommander.ui.app.FocusDirectoryInfoCommand" /> + <keyBinding contextId="org.eclipse.ui.contexts.dialogAndWindow" + commandId="org.jcommander.ui.app.FocusDirectoryInfoCommand" + keyConfigurationId="org.jcommander.ui.app.JCmdKeyConfiguration" + keySequence="ALT+D" /> + + <command description="Changes the current directory to the parent directory." |