Author: kilo Date: 2007-02-23 06:57:16 -0600 (Fri, 23 Feb 2007) New Revision: 9405
Modified: trunk/gnue-forms/defaults/default.gfd Log: Added usual shortcut keys Modified: trunk/gnue-forms/defaults/default.gfd =================================================================== --- trunk/gnue-forms/defaults/default.gfd 2007-02-23 01:29:03 UTC (rev 9404) +++ trunk/gnue-forms/defaults/default.gfd 2007-02-23 12:57:16 UTC (rev 9405) @@ -1,76 +1,75 @@ <?xml version="1.0"?> <form> - <!-- Clipboard and selection --> - <action name="act__cut__" label="Cut" + <action name="act__cut__" label="C&ut" description="Cut the selected text"> form.cut() </action> - <action name="act__copy__" label="Copy" + <action name="act__copy__" label="&Copy" description="Copy the selected text to the clipboard"> form.copy() </action> - <action name="act__paste__" label="Paste" + <action name="act__paste__" label="&Paste" description="Paste the content of the clipboard to the current position"> form.paste() </action> - <action name="act__select_all__" label="Select All" + <action name="act__select_all__" label="Select &All" description="Select the whole field"> form.select_all() </action> <!-- Focus management --> - <action name="act__next_block__" label="Next Block" + <action name="act__next_block__" label="Next &Block" description="Jump to the next block"> form.next_block() </action> - <action name="act__previous_block__" label="Previous Block" + <action name="act__previous_block__" label="Previous Bl&ock" description="Jump to the previous block"> form.previous_block() </action> - <action name="act__next_page__" label="Next Page" + <action name="act__next_page__" label="Next P&age" description="Jump to the next page"> form.next_page() </action> - <action name="act__previous_page__" label="Previous Page" + <action name="act__previous_page__" label="Pre&vious Page" description="Jump to the previous page"> form.previous_page() </action> <!-- Record navigation --> - <action name="act__first_record__" icon="firstrecord" label="First Record" + <action name="act__first_record__" icon="firstrecord" label="&First Record" description="Navigate the current block to the first record"> form.first_record() </action> - <action name="act__prev_record__" icon="prevrecord" label="Previous Record" + <action name="act__prev_record__" icon="prevrecord" label="Previous R&ecord" description="Navigate the current block to the previous record"> form.prev_record() </action> - <action name="act__next_record__" icon="nextrecord" label="Next Record" + <action name="act__next_record__" icon="nextrecord" label="Next &Record" description="Navigate the current block to the next record"> form.next_record() </action> - <action name="act__last_record__" icon="lastrecord" label="Last Record" + <action name="act__last_record__" icon="lastrecord" label="&Last Record" description="Navigate the current block to the last record"> form.last_record() </action> - <action name="act__ask_record__" icon="jumpprompt" label="Jump to Record" + <action name="act__ask_record__" icon="jumpprompt" label="&Jump to Record" description="Ask for a record number and then navigate to that record"> form.ask_record() </action> <!-- Record insertion and deletion --> - <action name="act__new_record__" icon="newrecord" label="New Record" + <action name="act__new_record__" icon="newrecord" label="&New Record" description="Insert a new record in the current block"> form.new_record() </action> <action name="act__delete_record__" icon="markfordelete" - label="Delete Record" + label="&Delete Record" description="Mark the current record for deletion"> form.delete_record() </action> - <action name="act__undelete_record__" label="Undelete Record" + <action name="act__undelete_record__" label="&Undelete Record" description="Unmark the current record for deletion"> form.undelete_record() </action> @@ -94,11 +93,11 @@ </action> <!-- Transactions --> - <action name="act__commit__" icon="commit" label="Save changes" + <action name="act__commit__" icon="commit" label="&Save changes" description="Save all changes to the database"> form.commit() </action> - <action name="act__rollback__" icon="rollback" label="Discard changes" + <action name="act__rollback__" icon="rollback" label="Disca&rd changes" description="Discard all changes and clear the form"> form.rollback() </action> @@ -108,11 +107,11 @@ description="Show info about this form"> form.show_about() </action> - <action name="act__printout__" icon="printout" label="Print Form" + <action name="act__printout__" icon="printout" label="&Print Form" description="Print the contents of this form"> form.printout() </action> - <action name="act__close__" icon="exit" label="Close Window" + <action name="act__close__" icon="exit" label="&Close Window" description="Close this window"> form.close() </action> @@ -155,7 +154,7 @@ <menu name="__main_menu__" label="Main Menu"> - <menu name="__file__" label="File"> + <menu name="__file__" label="&File"> <menuitem name="__commit__" action="act__commit__" hotkey="F6"/> <menuitem name="__rollback__" action="act__rollback__" hotkey="F11"/> <menuitem name="__sep0__"/> @@ -164,7 +163,7 @@ <menuitem name="__sep1__"/> <menuitem name="__close__" action="act__close__" hotkey="CTRL+Q"/> </menu> - <menu name="__edit__" label="Edit"> + <menu name="__edit__" label="&Edit"> <menuitem name="__cut__" action="act__cut__" hotkey="CTRL+X"/> <menuitem name="__copy__" action="act__copy__" hotkey="CTRL+C"/> <menuitem name="__paste__" action="act__paste__" hotkey="CTRL+V"/> @@ -177,7 +176,7 @@ <menuitem name="__delete_record__" action="act__delete_record__" action_off="act__undelete_record__" hotkey="F5"/> </menu> - <menu name="__navigation__" label="Navigation"> + <menu name="__navigation__" label="&Navigation"> <menuitem name="__previous_block__" action="act__previous_block__" hotkey="PGUP"/> <menuitem name="__next_block__" action="act__next_block__" @@ -198,7 +197,7 @@ <menuitem name="__ask_record__" action="act__ask_record__" hotkey="F3"/> </menu> - <menu name="__filter__" label="Filter"> + <menu name="__filter__" label="F&ilter"> <menuitem name="__init_query__" action="act__init_query__" hotkey="F8"/> <menuitem name="__cancel_query__" action="act__cancel_query__" @@ -210,7 +209,7 @@ </menu> </menu> <menu name="__help_menu__"> - <menu name="__help__" label="Help"> + <menu name="__help__" label="&Help"> <menuitem name="__show_about__" action="act__show_about__"/> </menu> </menu> _______________________________________________ commit-gnue mailing list commit-gnue@gnu.org http://lists.gnu.org/mailman/listinfo/commit-gnue