X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLyXAction.cpp;h=3deb55bb892c9f92afd74f5fdbbd614479e24aae;hb=63e712c8a41608cff7e5a0c3fef713bea9e1c4fd;hp=02a5193032c0f7a209c3c75aa8328a3fd8567666;hpb=9f95b02a00653b1b17c84344cf8fb2fd1ea8f071;p=lyx.git diff --git a/src/LyXAction.cpp b/src/LyXAction.cpp index 02a5193032..3deb55bb89 100644 --- a/src/LyXAction.cpp +++ b/src/LyXAction.cpp @@ -1,4 +1,4 @@ -/** +/*! * \file LyXAction.cpp * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. @@ -15,24 +15,18 @@ #include "LyXAction.h" -#include "debug.h" #include "FuncRequest.h" +#include "support/debug.h" #include "support/lstrings.h" #include +using namespace std; +using namespace lyx::support; namespace lyx { -using support::split; -using support::trim; - -using std::endl; -using std::string; -using std::ostream; - - /* NAMING RULES FOR USER-COMMANDS Here's the set of rules to apply when a new command name is introduced: @@ -50,20 +44,46 @@ using std::ostream; (May 19 1996, 12:04, RvdK) */ +/* LFUN documentation (a start at least, Chr 2007-08-12) + * + * The documentation below is primarily notes about restrictions and + * oddities relating to the different LFUNs. + * + * Try to find an appropriate (thematical) place when adding the new LFUN. + * + * Doxygen template below. Some notes: Parameters should be set in uppercase + * and put in , as so. + */ + +/*! + * \var lyx::kb_action lyx::LFUN_ + * \li Action: + * \li Notion: + * \li Syntax: + * \li Params: + * \li Sample: + * \li Origin: + * \endvar + */ + LyXAction lyxaction; void LyXAction::newFunc(kb_action action, string const & name, - unsigned int attrib) + unsigned int attrib, LyXAction::func_type type) { lyx_func_map[name] = action; func_info tmpinfo; tmpinfo.name = name; tmpinfo.attrib = attrib; + tmpinfo.type = type; lyx_info_map[action] = tmpinfo; } +// Needed for LFUNs documentation to be accepted, since doxygen won't take +// \var inside functions. +#ifndef DOXYGEN_SHOULD_SKIP_THIS void LyXAction::init() { // This function was changed to use the array below in initalization @@ -79,308 +99,1499 @@ void LyXAction::init() kb_action action; char const * name; unsigned int attrib; + func_type type; }; ev_item const items[] = { - { LFUN_ACCENT_ACUTE, "accent-acute", Noop }, - { LFUN_ACCENT_BREVE, "accent-breve", Noop }, - { LFUN_ACCENT_CARON, "accent-caron", Noop }, - { LFUN_ACCENT_CEDILLA, "accent-cedilla", Noop }, - { LFUN_ACCENT_CIRCLE, "accent-circle", Noop }, - { LFUN_ACCENT_CIRCUMFLEX, "accent-circumflex", Noop }, - { LFUN_ACCENT_DOT, "accent-dot", Noop }, - { LFUN_ACCENT_GRAVE, "accent-grave", Noop }, - { LFUN_ACCENT_HUNGARIAN_UMLAUT, "accent-hungarian-umlaut", Noop }, - { LFUN_ACCENT_MACRON, "accent-macron", Noop }, - { LFUN_ACCENT_OGONEK, "accent-ogonek", Noop }, - { LFUN_ACCENT_SPECIAL_CARON, "accent-special-caron", Noop }, - { LFUN_ACCENT_TIE, "accent-tie", Noop }, - { LFUN_ACCENT_TILDE, "accent-tilde", Noop }, - { LFUN_ACCENT_UMLAUT, "accent-umlaut", Noop }, - { LFUN_ACCENT_UNDERBAR, "accent-underbar", Noop }, - { LFUN_ACCENT_UNDERDOT, "accent-underdot", Noop }, - { LFUN_APPENDIX, "appendix", Noop }, - { LFUN_BOOKMARK_GOTO, "bookmark-goto", NoBuffer }, - { LFUN_BOOKMARK_SAVE, "bookmark-save", ReadOnly }, - { LFUN_BOOKMARK_CLEAR, "bookmark-clear", NoBuffer }, - { LFUN_BREAK_LINE, "break-line", Noop }, - { LFUN_BREAK_PARAGRAPH, "break-paragraph", Noop }, - { LFUN_BREAK_PARAGRAPH_KEEP_LAYOUT, "break-paragraph-keep-layout", Noop }, - { LFUN_BREAK_PARAGRAPH_SKIP, "break-paragraph-skip", Noop }, - { LFUN_BUILD_PROGRAM, "build-program", ReadOnly }, - { LFUN_BUFFER_AUTO_SAVE, "buffer-auto-save", Noop }, - { LFUN_BUFFER_BEGIN, "buffer-begin", ReadOnly }, - { LFUN_BUFFER_BEGIN_SELECT, "buffer-begin-select", ReadOnly }, - { LFUN_BUFFER_CHILD_OPEN, "buffer-child-open", ReadOnly }, - { LFUN_BUFFER_CHKTEX, "buffer-chktex", ReadOnly }, - { LFUN_BUFFER_TOGGLE_COMPRESSION, "buffer-toggle-compression", Noop}, - { LFUN_BUFFER_CLOSE, "buffer-close", ReadOnly }, - { LFUN_BUFFER_END, "buffer-end", ReadOnly }, - { LFUN_BUFFER_END_SELECT, "buffer-end-select", ReadOnly }, - { LFUN_BUFFER_EXPORT, "buffer-export", ReadOnly }, - { LFUN_BUFFER_EXPORT_CUSTOM, "buffer-export-custom", ReadOnly }, - { LFUN_BUFFER_PRINT, "buffer-print", ReadOnly }, - { LFUN_BUFFER_IMPORT, "buffer-import", NoBuffer }, - { LFUN_BUFFER_NEW, "buffer-new", NoBuffer }, - { LFUN_BUFFER_NEW_TEMPLATE,"buffer-new-template", NoBuffer }, - { LFUN_BUFFER_RELOAD, "buffer-reload", ReadOnly }, - { LFUN_BUFFER_SWITCH, "buffer-switch", ReadOnly }, - { LFUN_BUFFER_TOGGLE_READ_ONLY, "buffer-toggle-read-only", ReadOnly }, - { LFUN_BUFFER_UPDATE, "buffer-update", ReadOnly }, - { LFUN_BUFFER_VIEW, "buffer-view", ReadOnly }, - { LFUN_BUFFER_WRITE, "buffer-write", ReadOnly }, - { LFUN_BUFFER_WRITE_AS, "buffer-write-as", ReadOnly }, - { LFUN_CANCEL, "cancel", NoBuffer }, - { LFUN_CAPTION_INSERT, "caption-insert", Noop }, - { LFUN_CHAR_BACKWARD, "char-backward", ReadOnly | NoUpdate}, - { LFUN_CHAR_BACKWARD_SELECT, "backward-select", ReadOnly | SingleParUpdate }, - { LFUN_CHAR_DELETE_BACKWARD, "delete-backward", SingleParUpdate }, - { LFUN_CHAR_DELETE_FORWARD, "delete-forward", SingleParUpdate }, - { LFUN_CHAR_FORWARD, "char-forward", ReadOnly | NoUpdate}, - { LFUN_CHAR_FORWARD_SELECT, "forward-select", ReadOnly | SingleParUpdate }, - { LFUN_CLIPBOARD_PASTE, "clipboard-paste", Noop }, - { LFUN_COMMAND_EXECUTE, "command-execute", NoBuffer }, - { LFUN_COMMAND_PREFIX, "command-prefix", NoBuffer }, - { LFUN_COMMAND_SEQUENCE, "command-sequence", NoBuffer }, - { LFUN_COPY, "copy", ReadOnly }, - { LFUN_CUT, "cut", Noop }, - { LFUN_DATE_INSERT, "date-insert", Noop }, - { LFUN_DELETE_BACKWARD_SKIP, "delete-backward-skip", Noop }, - { LFUN_DELETE_FORWARD_SKIP, "delete-forward-skip", Noop }, - { LFUN_DEPTH_DECREMENT, "depth-decrement", Noop }, - { LFUN_DEPTH_INCREMENT, "depth-increment", Noop }, - { LFUN_DOTS_INSERT, "dots-insert", Noop }, - { LFUN_DOWN, "down", ReadOnly | NoUpdate }, - { LFUN_DOWN_SELECT, "down-select", ReadOnly | SingleParUpdate }, - { LFUN_DROP_LAYOUTS_CHOICE, "drop-layouts-choice", ReadOnly }, - { LFUN_END_OF_SENTENCE_PERIOD_INSERT, "end-of-sentence-period-insert", Noop }, - { LFUN_ENVIRONMENT_INSERT, "environment-insert", Noop }, - { LFUN_ERROR_NEXT, "error-next", ReadOnly }, - { LFUN_ERT_INSERT, "ert-insert", Noop }, - { LFUN_FILE_INSERT, "file-insert", Noop }, - { LFUN_FILE_INSERT_PLAINTEXT, "file-insert-plaintext", Noop }, - { LFUN_FILE_INSERT_PLAINTEXT_PARA, "file-insert-plaintext-para", Noop }, - { LFUN_FILE_NEW, "file-new", NoBuffer }, - { LFUN_FILE_OPEN, "file-open", NoBuffer }, - { LFUN_FLOAT_INSERT, "float-insert", Noop }, - { LFUN_FLOAT_WIDE_INSERT, "float-wide-insert", Noop }, - { LFUN_WRAP_INSERT, "wrap-insert", Noop }, - { LFUN_FONT_BOLD, "font-bold", Noop }, - { LFUN_FONT_CODE, "font-code", Noop }, - { LFUN_FONT_DEFAULT, "font-default", Noop }, - { LFUN_FONT_EMPH, "font-emph", Noop }, - { LFUN_FONT_FREE_APPLY, "font-free-apply", Noop }, - { LFUN_FONT_FREE_UPDATE, "font-free-update", Noop }, - { LFUN_FONT_NOUN, "font-noun", Noop }, - { LFUN_FONT_ROMAN, "font-roman", Noop }, - { LFUN_FONT_SANS, "font-sans", Noop }, - { LFUN_FONT_FRAK, "font-frak", Noop }, - { LFUN_FONT_ITAL, "font-ital", Noop }, - { LFUN_FONT_SIZE, "font-size", Noop }, - { LFUN_FONT_STATE, "font-state", ReadOnly }, - { LFUN_FONT_UNDERLINE, "font-underline", Noop }, - { LFUN_FOOTNOTE_INSERT, "footnote-insert", Noop }, - { LFUN_HFILL_INSERT, "hfill-insert", Noop }, - { LFUN_HELP_OPEN, "help-open", NoBuffer | Argument}, - { LFUN_HTML_INSERT, "html-insert", Noop }, - { LFUN_HYPHENATION_POINT_INSERT, "hyphenation-point-insert", Noop }, - { LFUN_LIGATURE_BREAK_INSERT, "ligature-break-insert", Noop }, - { LFUN_INDEX_INSERT, "index-insert", Noop }, - { LFUN_INDEX_PRINT, "index-print", Noop }, - { LFUN_KEYMAP_OFF, "keymap-off", ReadOnly }, - { LFUN_KEYMAP_PRIMARY, "keymap-primary", ReadOnly }, - { LFUN_KEYMAP_SECONDARY, "keymap-secondary", ReadOnly }, - { LFUN_KEYMAP_TOGGLE, "keymap-toggle", ReadOnly }, - { LFUN_LABEL_INSERT, "label-insert", Noop }, - { LFUN_OPTIONAL_INSERT, "optional-insert", Noop }, - { LFUN_BIBITEM_INSERT, "bibitem-insert", Noop }, - { LFUN_CITATION_INSERT, "citation-insert", Noop }, - { LFUN_BIBTEX_DATABASE_ADD, "bibtex-database-add", Noop }, - { LFUN_BIBTEX_DATABASE_DEL, "bibtex-database-del", Noop }, - { LFUN_LINE_INSERT, "line-insert", Noop }, - { LFUN_PAGEBREAK_INSERT, "pagebreak-insert", Noop }, - { LFUN_LANGUAGE, "language", Noop }, - { LFUN_LAYOUT, "layout", Noop }, - { LFUN_LAYOUT_PARAGRAPH, "layout-paragraph", ReadOnly }, - { LFUN_LAYOUT_TABULAR, "layout-tabular", Noop }, - { LFUN_LINE_BEGIN, "line-begin", ReadOnly | NoUpdate}, - { LFUN_LINE_BEGIN_SELECT, "line-begin-select", ReadOnly | SingleParUpdate }, - { LFUN_LINE_DELETE, "line-delete-forward", Noop }, // there is no line-delete-backward - { LFUN_LINE_END, "line-end", ReadOnly | NoUpdate}, - { LFUN_LINE_END_SELECT, "line-end-select", ReadOnly | SingleParUpdate }, -#if 0 - { LFUN_LIST_INSERT, "list-insert", Noop }, #endif - { LFUN_LYX_QUIT, "lyx-quit", NoBuffer }, - { LFUN_MARGINALNOTE_INSERT, "marginalnote-insert", Noop }, - { LFUN_MARK_OFF, "mark-off", ReadOnly }, - { LFUN_MARK_ON, "mark-on", ReadOnly }, - { LFUN_MARK_TOGGLE, "mark-toggle", ReadOnly }, - { LFUN_MATH_DELIM, "math-delim", Noop }, - { LFUN_MATH_BIGDELIM, "math-bigdelim", Noop }, - { LFUN_MATH_DISPLAY, "math-display", Noop }, - { LFUN_MATH_INSERT, "math-insert", Noop }, - { LFUN_MATH_SUBSCRIPT, "math-subscript", Noop }, - { LFUN_MATH_SUPERSCRIPT, "math-superscript", Noop }, - { LFUN_MATH_LIMITS, "math-limits", Noop }, - { LFUN_MATH_MACRO, "math-macro", Noop }, - { LFUN_MATH_MUTATE, "math-mutate", Noop }, - { LFUN_MATH_SPACE, "math-space", Noop }, - { LFUN_MATH_IMPORT_SELECTION, "math-import-selection", Noop }, - { LFUN_MATH_MATRIX, "math-matrix", Noop }, - { LFUN_MATH_MODE, "math-mode", Noop }, - { LFUN_MATH_NONUMBER, "math-nonumber", Noop }, - { LFUN_MATH_NUMBER, "math-number", Noop }, - { LFUN_MATH_EXTERN, "math-extern", Noop }, - { LFUN_MATH_SIZE, "math-size", Noop }, - { LFUN_MENU_OPEN, "menu-open", NoBuffer }, - { LFUN_MENU_SEPARATOR_INSERT, "menu-separator-insert", Noop }, - { LFUN_META_PREFIX, "meta-prefix", NoBuffer }, - { LFUN_BRANCH_INSERT, "branch-insert", Noop }, - { LFUN_CHARSTYLE_INSERT, "charstyle-insert", Noop }, - { LFUN_NOTE_INSERT, "note-insert", Noop }, - { LFUN_BOX_INSERT, "box-insert", Noop }, - { LFUN_NOTE_NEXT, "note-next", ReadOnly }, - { LFUN_INSET_TOGGLE, "", ReadOnly }, - { LFUN_NEXT_INSET_TOGGLE, "next-inset-toggle", ReadOnly }, - { LFUN_ALL_INSETS_TOGGLE, "all-insets-toggle", ReadOnly }, - { LFUN_PARAGRAPH_DOWN, "paragraph-down", ReadOnly | NoUpdate}, - { LFUN_PARAGRAPH_DOWN_SELECT, "paragraph-down-select", ReadOnly }, - { LFUN_PARAGRAPH_GOTO, "paragraph-goto", ReadOnly }, - { LFUN_OUTLINE_UP, "outline-up", Noop }, - { LFUN_OUTLINE_DOWN, "outline-down", Noop }, - { LFUN_OUTLINE_IN, "outline-in", Noop }, - { LFUN_OUTLINE_OUT, "outline-out", Noop }, - { LFUN_PARAGRAPH_SPACING, "paragraph-spacing", Noop }, - { LFUN_PARAGRAPH_UP, "paragraph-up", ReadOnly | NoUpdate}, - { LFUN_PARAGRAPH_UP_SELECT, "paragraph-up-select", ReadOnly }, - { LFUN_PASTE, "paste", Noop }, - { LFUN_PREFERENCES_SAVE, "preferences-save", NoBuffer }, - { LFUN_PRIMARY_SELECTION_PASTE, "primary-selection-paste", Noop }, - { LFUN_QUOTE_INSERT, "quote-insert", Noop }, - { LFUN_RECONFIGURE, "reconfigure", NoBuffer }, - { LFUN_REDO, "redo", Noop }, - { LFUN_LABEL_GOTO, "label-goto", ReadOnly }, - { LFUN_REFERENCE_NEXT, "reference-next", ReadOnly }, - { LFUN_SCREEN_DOWN, "screen-down", ReadOnly }, - { LFUN_SCREEN_DOWN_SELECT, "screen-down-select", ReadOnly }, - { LFUN_SCREEN_FONT_UPDATE, "screen-font-update", NoBuffer }, - { LFUN_SCREEN_RECENTER, "screen-recenter", ReadOnly }, - { LFUN_SCREEN_UP, "screen-up", ReadOnly }, - { LFUN_SCREEN_UP_SELECT, "screen-up-select", ReadOnly }, - { LFUN_SELF_INSERT, "self-insert", SingleParUpdate }, - { LFUN_SPACE_INSERT, "space-insert", Noop }, - { LFUN_SERVER_CHAR_AFTER, "server-char-after", ReadOnly }, - { LFUN_SERVER_GET_FONT, "server-get-font", ReadOnly }, - { LFUN_SERVER_GET_LAYOUT, "server-get-layout", ReadOnly }, - { LFUN_SERVER_GET_NAME, "server-get-name", ReadOnly }, - { LFUN_SERVER_GET_XY, "server-get-xy", ReadOnly }, - { LFUN_SERVER_GOTO_FILE_ROW, "server-goto-file-row", ReadOnly }, - { LFUN_SERVER_NOTIFY, "server-notify", ReadOnly }, - { LFUN_SERVER_SET_XY, "server-set-xy", ReadOnly }, - { LFUN_SET_COLOR, "set-color", ReadOnly | NoBuffer }, - { LFUN_CELL_BACKWARD, "cell-backward", Noop }, - { LFUN_CELL_FORWARD, "cell-forward", Noop }, - { LFUN_CELL_SPLIT, "cell-split", Noop }, - { LFUN_TABULAR_INSERT, "tabular-insert", Noop }, - { LFUN_TABULAR_FEATURE, "tabular-feature", Noop }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_ACUTE + * \li Action: Adds an acute accent \htmlonly (á)\endhtmlonly + to the next character typed. + * \li Syntax: accent-acute + * \endvar + */ + { LFUN_ACCENT_ACUTE, "accent-acute", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_BREVE + * \li Action: Adds a breve accent \htmlonly (ă)\endhtmlonly + to the next character typed. + * \li Syntax: accent-breve + * \endvar + */ + { LFUN_ACCENT_BREVE, "accent-breve", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_CARON + * \li Action: Adds a caron \htmlonly (ǎ)\endhtmlonly + to the next character typed. + * \li Syntax: accent-caron + * \endvar + */ + { LFUN_ACCENT_CARON, "accent-caron", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_CEDILLA + * \li Action: Adds a cedilla \htmlonly (ç)\endhtmlonly + to the next character typed. + * \li Syntax: accent-cedilla + * \endvar + */ + { LFUN_ACCENT_CEDILLA, "accent-cedilla", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_CIRCLE + * \li Action: Adds a circle accent \htmlonly (å)\endhtmlonly + to the next character typed. + * \li Syntax: accent-circle + * \endvar + */ + { LFUN_ACCENT_CIRCLE, "accent-circle", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_CIRCUMFLEX + * \li Action: Adds a circumflex \htmlonly (ê)\endhtmlonly + to the next character typed. + * \li Syntax: accent-circumflex + * \endvar + */ + { LFUN_ACCENT_CIRCUMFLEX, "accent-circumflex", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_DOT + * \li Action: Adds a dot accent \htmlonly (ż)\endhtmlonly + to the next character typed. + * \li Syntax: accent-dot + * \endvar + */ + { LFUN_ACCENT_DOT, "accent-dot", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_GRAVE + * \li Action: Adds a grave accent \htmlonly (è)\endhtmlonly + to the next character typed. + * \li Syntax: accent-grave + * \endvar + */ + { LFUN_ACCENT_GRAVE, "accent-grave", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_HUNGARIAN_UMLAUT + * \li Action: Adds a Hungarian umlaut \htmlonly (ő)\endhtmlonly + to the next character typed. + * \li Syntax: accent-grave + * \endvar + */ + { LFUN_ACCENT_HUNGARIAN_UMLAUT, "accent-hungarian-umlaut", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_MACRON + * \li Action: Adds a macron \htmlonly (ā)\endhtmlonly + to the next character typed. + * \li Syntax: accent-macron + * \endvar + */ + { LFUN_ACCENT_MACRON, "accent-macron", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_OGONEK + * \li Action: Adds an ogonek accent \htmlonly (ą)\endhtmlonly + to the next character typed. + * \li Syntax: accent-ogonek + * \endvar + */ + { LFUN_ACCENT_OGONEK, "accent-ogonek", Noop, Edit }, + { LFUN_ACCENT_SPECIAL_CARON, "accent-special-caron", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_TIE + * \li Action: Adds a tie \htmlonly (a͡)\endhtmlonly + over the next two character typed. + * \li Notion: the following char will finish the tie. + * \li Syntax: accent-tie + * \endvar + */ + { LFUN_ACCENT_TIE, "accent-tie", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_TILDE + * \li Action: Adds a tilde \htmlonly (ã)\endhtmlonly + over the next character typed. + * \li Syntax: accent-tilde + * \endvar + */ + { LFUN_ACCENT_TILDE, "accent-tilde", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_UMLAUT + * \li Action: Adds an umlaut \htmlonly (ä)\endhtmlonly + over the next character typed. + * \li Syntax: accent-umlaut + * \endvar + */ + { LFUN_ACCENT_UMLAUT, "accent-umlaut", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_UNDERBAR + * \li Action: Adds a bar \htmlonly (a̠)\endhtmlonly + under the next character typed. + * \li Syntax: accent-underbar + * \endvar + */ + { LFUN_ACCENT_UNDERBAR, "accent-underbar", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ACCENT_UNDERDOT + * \li Action: Adds a dot \htmlonly (ạ)\endhtmlonly + under the next character typed. + * \li Syntax: accent-underdot + * \endvar + */ + { LFUN_ACCENT_UNDERDOT, "accent-underdot", Noop, Edit }, + +/*! + * \var lyx::kb_action lyx::LFUN_BREAK_PARAGRAPH + * \li Action: Breaks the current paragraph at the current location. + * \li Syntax: break-paragraph + * \endvar + */ + { LFUN_BREAK_PARAGRAPH, "break-paragraph", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_BREAK_PARAGRAPH_SKIP + * \li Action: Breaks the current paragraph at the current location, + unless used at the beginning of a line, where it sets + the label width string to empty. + * \li Syntax: break-paragraph-skip + * \endvar + */ + { LFUN_BREAK_PARAGRAPH_SKIP, "break-paragraph-skip", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_CAPTION_INSERT + * \li Action: Inserts a caption inset. + * \li Syntax: caption-insert + * \li Origin: Lgb, 18 Jul 2000 + * \endvar + */ + { LFUN_CAPTION_INSERT, "caption-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_DATE_INSERT + * \li Action: Inserts the current date. + * \li Syntax: date-insert [] + * \li Params: : Format of date. The default value (%x) can be set + in Preferences->Date format. For possible formats + see manual page of strftime function. + * \li Origin: jdblair, 31 Jan 2000 + * \endvar + */ + { LFUN_DATE_INSERT, "date-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_FOOTNOTE_INSERT + * \li Action: Inserts a footnote inset. + * \li Syntax: footnote-insert + * \li Origin: Jug, 7 Mar 2000 + * \endvar + */ + { LFUN_FOOTNOTE_INSERT, "footnote-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_ERT_INSERT + * \li Action: Inserts an ERT inset. + * \li Syntax: ert-insert + * \li Origin: Jug, 18 Feb 2000 + * \endvar + */ + { LFUN_ERT_INSERT, "ert-insert", Noop, Edit }, + { LFUN_FLOAT_INSERT, "float-insert", Noop, Edit }, + { LFUN_FLOAT_WIDE_INSERT, "float-wide-insert", Noop, Edit }, + { LFUN_WRAP_INSERT, "wrap-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_HFILL_INSERT + * \li Action: Inserts an hfill inset. + * \li Syntax: hfill-insert + * \endvar + */ + { LFUN_HFILL_INSERT, "hfill-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_OPTIONAL_INSERT + * \li Action: Inserts an optional-argument (short title) inset. + * \li Syntax: optional-insert + * \li Origin: Martin, 12 Aug 2002 + * \endvar + */ + { LFUN_OPTIONAL_INSERT, "optional-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_LINE_INSERT + * \li Action: Inserts a horizontal line. + * \li Syntax: line-insert + * \li Origin: poenitz, Oct 27 2003 + * \endvar + */ + { LFUN_LINE_INSERT, "line-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_NEWPAGE_INSERT + * \li Action: Inserts a new page. + * \li Syntax: newpage-insert + * \li Origin: uwestoehr, 24 Nov 2007 + * \endvar + */ + { LFUN_NEWPAGE_INSERT, "newpage-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_PAGEBREAK_INSERT + * \li Action: Inserts a pagebreak. + * \li Syntax: pagebreak-insert + * \li Origin: poenitz, Oct 27 2003 + * \endvar + */ + { LFUN_PAGEBREAK_INSERT, "pagebreak-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_MARGINALNOTE_INSERT + * \li Action: Inserts a marginal note. + * \li Syntax: marginalnote-insert + * \li Origin: Lgb, 26 Jun 2000 + * \endvar + */ + { LFUN_MARGINALNOTE_INSERT, "marginalnote-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_UNICODE_INSERT + * \li Action: Inserts a single unicode character. + * \li Syntax: unicode-insert + * \li Params: : The character to insert, given as its code + point, in hexadecimal, e.g.: unicode-insert 0x0100. + * \li Origin: Lgb, 22 Oct 2006 + * \endvar + */ + { LFUN_UNICODE_INSERT, "unicode-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_LISTING_INSERT + * \li Action: Inserts a new listings inset. + * \li Syntax: listing-insert + * \li Origin: Herbert, 10 Nov 2001; bpeng, 2 May 2007 + * \endvar + */ + { LFUN_LISTING_INSERT, "listing-insert", Noop, Edit }, + { LFUN_QUOTE_INSERT, "quote-insert", Noop, Edit }, + { LFUN_INFO_INSERT, "info-insert", Noop, Edit }, + { LFUN_BRANCH_INSERT, "branch-insert", Noop, Edit }, + { LFUN_BOX_INSERT, "box-insert", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_FLEX_INSERT + * \li Action: Inserts CharStyle, Custom inset or XML short element. + * \li Notion: Look into the Customization manual for more information about + these elements.\n + For dissolving the element see #LFUN_INSET_DISSOLVE. + * \li Syntax: flex-insert + * \li Params: TYPE: CharStyle|Custom|Element|Standard + Identifies whether this is a Character Style, a + Custom Inset or an XML Element, and which dynamical + sub-menu this flex inset is in on the LyX menu tree. + If Standard (currently unused): none of these. + Name: This name must be defined either in your layout file + or imported by some module. The definition is\n + InsetLayout + * \li Sample: flex-insert CharStyle:Code + * \endvar + */ + { LFUN_FLEX_INSERT, "flex-insert", Noop, Edit }, + { LFUN_SELF_INSERT, "self-insert", SingleParUpdate, Hidden }, + { LFUN_SPACE_INSERT, "space-insert", Noop, Edit }, + { LFUN_HYPERLINK_INSERT, "href-insert", Noop, Edit }, + { LFUN_SPECIALCHAR_INSERT, "specialchar-insert", Noop, Edit }, + { LFUN_CLEARPAGE_INSERT, "clearpage-insert", Noop, Edit }, + { LFUN_CLEARDOUBLEPAGE_INSERT, "cleardoublepage-insert", Noop, Edit }, + { LFUN_TOC_INSERT, "toc-insert", Noop, Edit }, + { LFUN_APPENDIX, "appendix", Noop, Edit }, + #if 0 - { LFUN_THEOREM_INSERT, "theorem-insert", Noop }, + { LFUN_LIST_INSERT, "list-insert", Noop, Edit }, #endif - { LFUN_THESAURUS_ENTRY, "thesaurus-entry", ReadOnly }, - { LFUN_TOC_INSERT, "toc-insert", Noop }, - { LFUN_TOGGLE_CURSOR_FOLLOWS_SCROLLBAR, "toggle-cursor-follows-scrollbar", ReadOnly }, - { LFUN_UNDO, "undo", Noop }, - { LFUN_UP, "up", ReadOnly | NoUpdate}, - { LFUN_UP_SELECT, "up-select", ReadOnly | SingleParUpdate }, - { LFUN_URL_INSERT, "url-insert", Noop }, - { LFUN_VC_CHECK_IN, "vc-check-in", ReadOnly }, - { LFUN_VC_CHECK_OUT, "vc-check-out", ReadOnly }, - { LFUN_VC_REGISTER, "vc-register", ReadOnly }, - { LFUN_VC_REVERT, "vc-revert", ReadOnly }, - { LFUN_VC_UNDO_LAST, "vc-undo-last", ReadOnly }, - { LFUN_WORD_BACKWARD, "word-backward", ReadOnly | NoUpdate}, - { LFUN_WORD_BACKWARD_SELECT, "word-backward-select", ReadOnly | SingleParUpdate }, - { LFUN_WORD_CAPITALIZE, "word-capitalize", Noop }, - { LFUN_WORD_DELETE_BACKWARD, "word-delete-backward", Noop }, - { LFUN_WORD_DELETE_FORWARD, "word-delete-forward", Noop }, - { LFUN_WORD_FIND_BACKWARD, "word-find-backward", ReadOnly }, - { LFUN_WORD_FIND_FORWARD, "word-find-forward", ReadOnly }, - { LFUN_WORD_FORWARD, "word-forward", ReadOnly | NoUpdate}, - { LFUN_WORD_FORWARD_SELECT, "word-forward-select", ReadOnly | SingleParUpdate }, - { LFUN_WORD_LOWCASE, "word-lowcase", Noop }, - { LFUN_WORD_SELECT, "word-select", ReadOnly }, - { LFUN_WORD_UPCASE, "word-upcase", Noop }, - { LFUN_MESSAGE, "message", NoBuffer }, - { LFUN_CHARS_TRANSPOSE, "chars-transpose", Noop }, - { LFUN_FLOAT_LIST, "float-list", Noop }, - { LFUN_ESCAPE, "escape", ReadOnly }, - { LFUN_CHANGES_TRACK, "changes-track", Noop }, - { LFUN_CHANGES_OUTPUT, "changes-output", Noop }, - { LFUN_CHANGE_NEXT, "change-next", ReadOnly }, - { LFUN_CHANGES_MERGE, "changes-merge", Noop }, - { LFUN_CHANGE_ACCEPT, "change-accept", Noop }, - { LFUN_CHANGE_REJECT, "change-reject", Noop }, - { LFUN_ALL_CHANGES_ACCEPT, "all-changes-accept", Noop }, - { LFUN_ALL_CHANGES_REJECT, "all-changes-reject", Noop }, - { LFUN_DIALOG_SHOW, "dialog-show", NoBuffer }, - { LFUN_DIALOG_SHOW_NEW_INSET, "dialog-show-new-inset", Noop }, - { LFUN_DIALOG_UPDATE, "dialog-update", NoBuffer }, - { LFUN_DIALOG_HIDE, "dialog-hide", NoBuffer }, - { LFUN_DIALOG_TOGGLE, "dialog-toggle", NoBuffer }, - { LFUN_DIALOG_DISCONNECT_INSET, "dialog-disconnect-inset", Noop }, - { LFUN_INSET_APPLY, "inset-apply", Noop }, - { LFUN_INSET_DISSOLVE, "inset-dissolve", Noop }, - { LFUN_INSET_INSERT, "inset-insert", Noop }, - { LFUN_INSET_MODIFY, "", Noop }, - { LFUN_INSET_DIALOG_UPDATE, "", Noop }, - { LFUN_INSET_SETTINGS, "inset-settings", ReadOnly }, - { LFUN_PARAGRAPH_PARAMS_APPLY, "paragraph-params-apply", Noop }, - { LFUN_PARAGRAPH_UPDATE, "", Noop }, - { LFUN_EXTERNAL_EDIT, "external-edit", Noop }, - { LFUN_GRAPHICS_EDIT, "graphics-edit", Noop }, - { LFUN_REPEAT, "repeat", NoBuffer }, - { LFUN_WORD_FIND, "word-find", ReadOnly }, - { LFUN_WORD_REPLACE, "word-replace", Noop }, - { LFUN_BUFFER_LANGUAGE, "buffer-language", Noop }, - { LFUN_TEXTCLASS_APPLY, "textclass-apply", Noop }, - { LFUN_TEXTCLASS_LOAD, "textclass-load", Noop }, - { LFUN_BUFFER_SAVE_AS_DEFAULT, "buffer-save-as-default", Noop }, - { LFUN_BUFFER_PARAMS_APPLY, "buffer-params-apply", Noop }, - { LFUN_LYXRC_APPLY, "lyxrc-apply", NoBuffer }, - { LFUN_INSET_REFRESH, "", Noop }, - { LFUN_BUFFER_NEXT, "buffer-next", ReadOnly }, - { LFUN_BUFFER_PREVIOUS, "buffer-previous", ReadOnly }, - { LFUN_WORDS_COUNT, "words-count", ReadOnly }, - { LFUN_FINISHED_RIGHT, "", ReadOnly }, - { LFUN_FINISHED_LEFT, "", ReadOnly }, - { LFUN_MOUSE_PRESS, "", ReadOnly }, - { LFUN_MOUSE_MOTION, "", ReadOnly | SingleParUpdate }, - { LFUN_MOUSE_RELEASE, "", ReadOnly }, - { LFUN_MOUSE_DOUBLE, "", ReadOnly }, - { LFUN_MOUSE_TRIPLE, "", ReadOnly }, - { LFUN_PARAGRAPH_MOVE_DOWN, "paragraph-move-down", Noop }, - { LFUN_PARAGRAPH_MOVE_UP, "paragraph-move-up", Noop }, - { LFUN_WINDOW_NEW, "window-new", NoBuffer }, - { LFUN_WINDOW_CLOSE, "window-close", NoBuffer }, - { LFUN_UNICODE_INSERT, "unicode-insert", Noop }, - { LFUN_TOOLBAR_TOGGLE, "toolbar-toggle", NoBuffer }, - { LFUN_NOMENCL_INSERT, "nomencl-insert", Noop }, - { LFUN_NOMENCL_PRINT, "nomencl-print", Noop }, - { LFUN_CLEARPAGE_INSERT, "clearpage-insert", Noop }, - { LFUN_CLEARDOUBLEPAGE_INSERT, "cleardoublepage-insert", Noop }, - { LFUN_LISTING_INSERT, "listing-insert", Noop }, - - { LFUN_NOACTION, "", Noop } + + { LFUN_DELETE_BACKWARD_SKIP, "delete-backward-skip", Noop, Edit }, + { LFUN_DELETE_FORWARD_SKIP, "delete-forward-skip", Noop, Edit }, + { LFUN_DOWN, "down", ReadOnly | NoUpdate, Edit }, + { LFUN_DOWN_SELECT, "down-select", ReadOnly | SingleParUpdate, Edit }, + { LFUN_UP, "up", ReadOnly | NoUpdate, Edit }, + { LFUN_UP_SELECT, "up-select", ReadOnly | SingleParUpdate, Edit }, + { LFUN_SCREEN_DOWN, "screen-down", ReadOnly, Edit }, + { LFUN_SCREEN_DOWN_SELECT, "screen-down-select", ReadOnly, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_SCROLL + * \li Action: Scroll the buffer view. + * \li Notion: Only scrolls the screen up or down; does not move the cursor. + * \li Syntax: scroll + * \li Params: : line|page\n + : up|down| + * \li Origin: Abdelrazak Younes, Dec 27 2007 + * \endvar + */ + { LFUN_SCROLL, "scroll", ReadOnly, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_SCREEN_RECENTER + * \li Action: Recenters the screen on the current cursor position. + * \li Syntax: screen-recenter + * \endvar + */ + { LFUN_SCREEN_RECENTER, "screen-recenter", ReadOnly, Edit }, + { LFUN_SCREEN_UP, "screen-up", ReadOnly, Edit }, + { LFUN_SCREEN_UP_SELECT, "screen-up-select", ReadOnly, Edit }, + + { LFUN_ERROR_NEXT, "error-next", ReadOnly, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_CHAR_BACKWARD + * \li Action: Moves the cursor one position logically backwards. + * \li Notion: This is not the action which should be bound to the arrow keys, + because backwards may be left or right, depending on the + language. The arrow keys should be bound to #LFUN_CHAR_LEFT or + #LFUN_CHAR_RIGHT actions, which in turn may employ this one. + * \li Syntax: char-backward + * \endvar + */ + { LFUN_CHAR_BACKWARD, "char-backward", ReadOnly | NoUpdate, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_CHAR_BACKWARD_SELECT + * \li Action: Moves the cursor one position logically backwards, adding + traversed position to the selection. + * \li Notion: See also #LFUN_CHAR_BACKWARD. + * \li Syntax: char-backward-select + * \endvar + */ + { LFUN_CHAR_BACKWARD_SELECT, "char-backward-select", ReadOnly | SingleParUpdate, Edit }, + { LFUN_CHAR_DELETE_BACKWARD, "delete-backward", SingleParUpdate, Edit }, + { LFUN_CHAR_DELETE_FORWARD, "delete-forward", SingleParUpdate, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_CHAR_FORWARD + * \li Action: Moves the cursor one position logically forward. + * \li Notion: This is not the action which should be bound to the arrow keys, + because forward may be left or right, depending on the language. + The arrow keys should be bound to #LFUN_CHAR_LEFT or + #LFUN_CHAR_RIGHT actions, which in turn may employ this one. + * \li Syntax: char-forward + * \endvar + */ + { LFUN_CHAR_FORWARD, "char-forward", ReadOnly | NoUpdate, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_CHAR_FORWARD_SELECT + * \li Action: Moves the cursor one position logically forward, adding + traversed position to the selection. + * \li Notion: See also #LFUN_CHAR_FORWARD. + * \li Syntax: char-forward-select + * \endvar + */ + { LFUN_CHAR_FORWARD_SELECT, "char-forward-select", ReadOnly | SingleParUpdate, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_CHAR_LEFT + * \li Action: Moves the cursor one position "to the left". + * \li Notion: This is the action which should be taken when the "left" key + is pressed. Generally, it moves the cursor one position to the + left. However, in Bidi text this become slightly more + complicated, and there are different modes of cursor movement. + In "visual mode", this moves left, plain and simple. In "logical + mode", movement is logically forward in RTL paragraphs, and + logically backwards in LTR paragraphs. + * \li Syntax: char-left + * \endvar + */ + { LFUN_CHAR_LEFT, "char-left", ReadOnly | NoUpdate, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_CHAR_LEFT_SELECT + * \li Action: Moves the cursor one position "to the left", adding + traversed position to the selection. + * \li Notion: See also #LFUN_CHAR_LEFT for exact details of the movement. + * \li Syntax: char-left-select + * \endvar + */ + { LFUN_CHAR_LEFT_SELECT, "char-left-select", ReadOnly | SingleParUpdate, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_CHAR_RIGHT + * \li Action: Moves the cursor one position "to the right". + * \li Notion: This is the action which should be taken when the "right" key + is pressed. Generally, it moves the cursor one position to the + right. However, in Bidi text this become slightly more + complicated, and there are different modes of cursor movement. + In "visual mode", this moves right, plain and simple. In "logical + mode", movement is logically forward in LTR paragraphs, and + logically backwards in RTL paragraphs. + * \li Syntax: char-right + * \endvar + */ + { LFUN_CHAR_RIGHT, "char-right", ReadOnly | NoUpdate, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_CHAR_RIGHT_SELECT + * \li Action: Moves the cursor one position "to the right", adding + traversed position to the selection. + * \li Notion: See also #LFUN_CHAR_RIGHT for exact details of the movement. + * \li Syntax: char-right-select + * \endvar + */ + { LFUN_CHAR_RIGHT_SELECT, "char-right-select", ReadOnly | SingleParUpdate, Edit }, + + { LFUN_WORD_BACKWARD, "word-backward", ReadOnly | NoUpdate, Edit }, + { LFUN_WORD_BACKWARD_SELECT, "word-backward-select", ReadOnly | SingleParUpdate, Edit }, + { LFUN_WORD_CAPITALIZE, "word-capitalize", Noop, Edit }, + { LFUN_WORD_DELETE_BACKWARD, "word-delete-backward", Noop, Edit }, + { LFUN_WORD_DELETE_FORWARD, "word-delete-forward", Noop, Edit }, + { LFUN_WORD_FIND_BACKWARD, "word-find-backward", ReadOnly, Edit }, + { LFUN_WORD_FIND_FORWARD, "word-find-forward", ReadOnly, Edit }, + { LFUN_WORD_FORWARD, "word-forward", ReadOnly | NoUpdate, Edit }, + { LFUN_WORD_FORWARD_SELECT, "word-forward-select", ReadOnly | SingleParUpdate, Edit }, + { LFUN_WORD_LEFT, "word-left", ReadOnly | NoUpdate, Edit }, + { LFUN_WORD_LEFT_SELECT, "word-left-select", ReadOnly | SingleParUpdate, Edit }, + { LFUN_WORD_LOWCASE, "word-lowcase", Noop, Edit }, + { LFUN_WORD_RIGHT, "word-right", ReadOnly | NoUpdate, Edit }, + { LFUN_WORD_RIGHT_SELECT, "word-right-select", ReadOnly | SingleParUpdate, Edit }, + { LFUN_WORD_SELECT, "word-select", ReadOnly, Edit }, + { LFUN_WORD_UPCASE, "word-upcase", Noop, Edit }, + { LFUN_WORD_FIND, "word-find", ReadOnly, Edit }, + { LFUN_WORD_REPLACE, "word-replace", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_THESAURUS_ENTRY + * \li Action: Look up thesaurus entries with respect to the word under the cursor. + * \li Syntax: thesaurus-entry + * \li Origin: Levon, 20 Jul 2001 + * \endvar + */ + { LFUN_THESAURUS_ENTRY, "thesaurus-entry", ReadOnly, Edit }, + { LFUN_BUFFER_BEGIN, "buffer-begin", ReadOnly, Edit }, + { LFUN_BUFFER_BEGIN_SELECT, "buffer-begin-select", ReadOnly, Edit }, + { LFUN_BUFFER_END, "buffer-end", ReadOnly, Edit }, + { LFUN_BUFFER_END_SELECT, "buffer-end-select", ReadOnly, Edit }, + + { LFUN_LINE_BEGIN, "line-begin", ReadOnly | NoUpdate, Edit }, + { LFUN_LINE_BEGIN_SELECT, "line-begin-select", ReadOnly | SingleParUpdate, Edit }, + { LFUN_LINE_BREAK, "line-break", Noop, Edit }, + { LFUN_LINE_DELETE, "line-delete-forward", Noop, Edit }, // there is no line-delete-backward + { LFUN_LINE_END, "line-end", ReadOnly | NoUpdate, Edit }, + { LFUN_LINE_END_SELECT, "line-end-select", ReadOnly | SingleParUpdate, Edit }, + { LFUN_NEW_LINE, "new-line", Noop, Edit }, + +/*! + * \var lyx::kb_action lyx::LFUN_PARAGRAPH_MOVE_DOWN + * \li Action: Moves the current paragraph downwards in the document. + * \li Syntax: paragraph-move-down + * \li Origin: Edwin, 8 Apr 2006 + * \endvar + */ + { LFUN_PARAGRAPH_MOVE_DOWN, "paragraph-move-down", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_PARAGRAPH_MOVE_UP + * \li Action: Moves the current paragraph upwards in the document. + * \li Syntax: paragraph-move-up + * \li Origin: Edwin, 8 Apr 2006 + * \endvar + */ + { LFUN_PARAGRAPH_MOVE_UP, "paragraph-move-up", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_COPY + * \li Action: Copies to the clipboard the last edit. + * \li Syntax: copy + * \endvar + */ + { LFUN_COPY, "copy", ReadOnly, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_CUT + * \li Action: Cuts to the clipboard. + * \li Syntax: cut + * \endvar + */ + { LFUN_CUT, "cut", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_PASTE + * \li Action: Pastes from the active clipboard. + * \li Syntax: paste + * \endvar + */ + { LFUN_PASTE, "paste", Noop, Edit }, + { LFUN_CLIPBOARD_PASTE, "clipboard-paste", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_PRIMARY_SELECTION_PASTE + * \li Action: Pastes the material currently selected. + * \li Syntax: primary-selection-paste + * \endvar + */ + { LFUN_PRIMARY_SELECTION_PASTE, "primary-selection-paste", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_UNDO + * \li Action: Undoes the last edit. + * \li Syntax: undo + * \endvar + */ + { LFUN_UNDO, "undo", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_REDO + * \li Action: Redoes the last thing undone. + * \li Syntax: redo + * \endvar + */ + { LFUN_REDO, "redo", Noop, Edit }, + { LFUN_REPEAT, "repeat", NoBuffer, Edit }, + { LFUN_CHARS_TRANSPOSE, "chars-transpose", Noop, Edit }, + + { LFUN_DEPTH_DECREMENT, "depth-decrement", Noop, Edit }, + { LFUN_DEPTH_INCREMENT, "depth-increment", Noop, Edit }, + { LFUN_ENVIRONMENT_INSERT, "environment-insert", Noop, Edit }, + + { LFUN_FONT_BOLD, "font-bold", Noop, Layout }, + { LFUN_FONT_TYPEWRITER, "font-typewriter", Noop, Layout }, + { LFUN_FONT_DEFAULT, "font-default", Noop, Layout }, + { LFUN_FONT_EMPH, "font-emph", Noop, Layout }, + { LFUN_FONT_FREE_APPLY, "font-free-apply", Noop, Layout }, + { LFUN_FONT_FREE_UPDATE, "font-free-update", Noop, Layout }, + { LFUN_FONT_NOUN, "font-noun", Noop, Layout }, + { LFUN_FONT_ROMAN, "font-roman", Noop, Layout }, + { LFUN_FONT_SANS, "font-sans", Noop, Layout }, + { LFUN_FONT_FRAK, "font-frak", Noop, Layout }, + { LFUN_FONT_ITAL, "font-ital", Noop, Layout }, + { LFUN_FONT_SIZE, "font-size", Noop, Layout }, + { LFUN_FONT_STATE, "font-state", ReadOnly, Layout }, + { LFUN_FONT_UNDERLINE, "font-underline", Noop, Layout }, + { LFUN_SCREEN_FONT_UPDATE, "screen-font-update", NoBuffer, Layout }, + + { LFUN_INDEX_INSERT, "index-insert", Noop, Edit }, + { LFUN_INDEX_PRINT, "index-print", Noop, Edit }, + + { LFUN_NOMENCL_INSERT, "nomencl-insert", Noop, Edit }, + { LFUN_NOMENCL_PRINT, "nomencl-print", Noop, Edit }, + + { LFUN_NOTE_INSERT, "note-insert", Noop, Edit }, + { LFUN_NOTE_NEXT, "note-next", ReadOnly, Edit }, + + { LFUN_BIBITEM_INSERT, "bibitem-insert", Noop, Edit }, + { LFUN_CITATION_INSERT, "citation-insert", Noop, Edit }, + { LFUN_BIBTEX_DATABASE_ADD, "bibtex-database-add", Noop, Edit }, + { LFUN_BIBTEX_DATABASE_DEL, "bibtex-database-del", Noop, Edit }, + +/*! + * \var lyx::kb_action lyx::LFUN_LAYOUT + * \li Action: Sets the layout (that is, environment) for the current paragraph. + * \li Syntax: layout + * \li Params: : the layout to use + * \endvar + */ + { LFUN_LAYOUT, "layout", Noop, Layout }, +/*! + * \var lyx::kb_action lyx::LFUN_LAYOUT_PARAGRAPH + * \li Action: Launches the paragraph settings dialog. + * \li Syntax: layout-paragraph + * \endvar + */ + { LFUN_LAYOUT_PARAGRAPH, "layout-paragraph", ReadOnly, Layout }, + { LFUN_LAYOUT_TABULAR, "layout-tabular", Noop, Layout }, +/*! + * \var lyx::kb_action lyx::LFUN_DROP_LAYOUTS_CHOICE + * \li Action: Displays list of layout choices. + * \li Notion: In the current (as of 2007) Qt4 frontend, this LFUN opens the + dropbox allowing for choice of layout. + * \li Syntax: drop-layouts-choice + * \endvar + */ + { LFUN_DROP_LAYOUTS_CHOICE, "drop-layouts-choice", ReadOnly, Layout }, +/*! + * \var lyx::kb_action lyx::LFUN_LAYOUT_MODULES_CLEAR + * \li Action: Clears the module list. + * \li Notion: Clears the list of included modules for the current buffer. + * \li Syntax: layout-modules-clear + * \li Origin: rgh, 25 August 2007 + * \endvar + */ + { LFUN_LAYOUT_MODULES_CLEAR, "layout-modules-clear", Noop, Layout }, +/*! + * \var lyx::kb_action lyx::LFUN_LAYOUT_MODULE_ADD + * \li Action: Adds a module. + * \li Notion: Adds a module to the list of included modules for the current buffer. + * \li Syntax: layout-module-add + * \li Params: : the module to be added + * \li Origin: rgh, 25 August 2007 + * \endvar + */ + { LFUN_LAYOUT_MODULE_ADD, "layout-module-add", Noop, Layout }, +/*! + * \var lyx::kb_action lyx::LFUN_LAYOUT_RELOAD + * \li Action: Reloads layout information. + * \li Notion: Reloads all layout information for the current buffer from disk, thus + recognizing any changes that have been made to layout files on the fly. + This is intended to be used only by layout developers and should not be + used when one is trying to do actual work. + * \li Syntax: layout-reload + * \li Origin: rgh, 3 September 2007 + * \endvar + */ + { LFUN_LAYOUT_RELOAD, "layout-reload", Noop, Layout }, +/*! + * \var lyx::kb_action lyx::LFUN_TEXTCLASS_APPLY + * \li Action: Sets the text class for the current buffer. + * \li Syntax: textclass-apply + * \li Params: : the textclass to set. Note that this must be + the filename, minus the ".layout" extension. + * \endvar + */ + { LFUN_TEXTCLASS_APPLY, "textclass-apply", Noop, Layout }, +/*! + * \var lyx::kb_action lyx::LFUN_TEXTCLASS_LOAD + * \li Action: Loads information for a textclass from disk. + * \li Syntax: textclass-load + * \li Params: : the textclass to load. Note that this must be + the filename, minus the ".layout" extension. + * \endvar + */ + { LFUN_TEXTCLASS_LOAD, "textclass-load", Noop, Layout }, + +/*! + * \var lyx::kb_action lyx::LFUN_MARK_OFF + * \li Action: Disable selecting of text-region. + * \li Syntax: mark-off + * \endvar + */ + { LFUN_MARK_OFF, "mark-off", ReadOnly, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_MARK_ON + * \li Action: Enable selecting of text-region. + * \li Notion: After enabling you can simply move arrow keys to get selected region. + * \li Syntax: mark-on + * \endvar + */ + { LFUN_MARK_ON, "mark-on", ReadOnly, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_MARK_TOGGLE + * \li Action: Toggle between #LFUN_MARK_ON and #LFUN_MARK_OFF . + * \li Syntax: mark-toggle + * \li Origin: poenitz, May 5 2006 + * \endvar + */ + { LFUN_MARK_TOGGLE, "mark-toggle", ReadOnly, Edit }, + + { LFUN_MATH_DELIM, "math-delim", Noop, Math }, + { LFUN_MATH_BIGDELIM, "math-bigdelim", Noop, Math }, + { LFUN_MATH_DISPLAY, "math-display", Noop, Math }, + { LFUN_MATH_INSERT, "math-insert", Noop, Math }, + { LFUN_MATH_SUBSCRIPT, "math-subscript", Noop, Math }, + { LFUN_MATH_SUPERSCRIPT, "math-superscript", Noop, Math }, + { LFUN_MATH_LIMITS, "math-limits", Noop, Math }, + { LFUN_MATH_MACRO, "math-macro", Noop, Math }, + { LFUN_MATH_MUTATE, "math-mutate", Noop, Math }, + { LFUN_MATH_SPACE, "math-space", Noop, Math }, + { LFUN_MATH_IMPORT_SELECTION, "math-import-selection", Noop, Math }, + { LFUN_MATH_MATRIX, "math-matrix", Noop, Math }, + { LFUN_MATH_MODE, "math-mode", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_NUMBER_LINE_TOGGLE + * \li Action: Toggles numbering of the current formula line. + * \li Notion: Must be in display formula mode. + * \li Syntax: math-number-line-toggle + * \li Origin: Alejandro 18 Jun 1996 + * \endvar + */ + { LFUN_MATH_NUMBER_LINE_TOGGLE, "math-number-line-toggle", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_NUMBER_TOGGLE + * \li Action: Toggles numbering/labeling of the current formula. + * \li Notion: Must be in display formula mode. + * \li Syntax: math-number-toggle + * \li Origin: Alejandro 4 Jun 1996 + * \endvar + */ + { LFUN_MATH_NUMBER_TOGGLE, "math-number-toggle", Noop, Math }, + { LFUN_MATH_EXTERN, "math-extern", Noop, Math }, + { LFUN_MATH_SIZE, "math-size", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_MACRO_UNFOLD + * \li Action: Unfold a Math Macro. + * \li Notion: Unfold the Math Macro the cursor is in, i.e. + display it as \foo. + * \li Syntax: math-macro-unfold + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_MATH_MACRO_UNFOLD, "math-macro-unfold", ReadOnly | SingleParUpdate, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_MACRO_FOLD + * \li Action: Fold a Math Macro. + * \li Notion: Fold the Math Macro the cursor is in if it was + unfolded, i.e. displayed as \foo before. + * \li Syntax: math-macro-fold + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_MATH_MACRO_FOLD, "math-macro-fold", ReadOnly | SingleParUpdate, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_MACRO_ADD_PARAM + * \li Action: Add a parameter. + * \li Notion: Add a parameter to a Math Macro. + * \li Params: : The number of the parameter behind which the new one + will be added (1 for the first, i.e. use 0 for add a + parameter at the left), defaults to the last one. + * \li Syntax: math-macro-add-param + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_MATH_MACRO_ADD_PARAM, "math-macro-add-param", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_MACRO_REMOVE_PARAM + * \li Action: Remove the last parameter. + * \li Notion: Remove the last parameter of a Math Macro and + remove its value in all instances of the macro + in the buffer. + * \li Params: : The number of the parameter to be deleted (1 for + the first), defaults to the last one. + * \li Syntax: math-macro-remove-param + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_MATH_MACRO_REMOVE_PARAM, "math-macro-remove-param", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_MACRO_APPEND_GREEDY_PARAM + * \li Action: Append a greedy parameter. + * \li Notion: Append a greedy parameter to a Math Macro which + eats the following mathed cell in every instance of + the macro in the buffer. + * \li Syntax: math-macro-append-greedy-param + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_MATH_MACRO_APPEND_GREEDY_PARAM, "math-macro-append-greedy-param", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_MACRO_REMOVE_GREEDY_PARAM + * \li Action: Remove a greedy parameter. + * \li Notion: Remove a greedy parameter of a Math Macro and spit + out the values of it in every instance of the macro + in the buffer. If it is an optional parameter the [valud] + format is used. + * \li Syntax: math-macro-remove-greedy-param + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_MATH_MACRO_REMOVE_GREEDY_PARAM, "math-macro-remove-greedy-param", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_MACRO_MAKE_OPTIONAL + * \li Action: Make a parameter optional. + * \li Notion: Turn the first non-optional parameter of a Math Macro + into an optional parameter with a default value. + * \li Syntax: math-macro-make-optional + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_MATH_MACRO_MAKE_OPTIONAL, "math-macro-make-optional", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_MACRO_MAKE_NONOPTIONAL + * \li Action: Make a parameter non-optional. + * \li Notion: Turn the last optional parameter of a Math Macro + into a non-optional parameter. The default value is + remembered to be reused later if the user changes his mind. + * \li Syntax: math-macro-make-nonoptional + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_MATH_MACRO_MAKE_NONOPTIONAL, "math-macro-make-nonoptional", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_MACRO_ADD_OPTIONAL_PARAM + * \li Action: Add an optional parameter. + * \li Notion: Insert an optional parameter just behind the + already existing optional parameters. + * \li Syntax: math-macro-add-optional-param + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_MATH_MACRO_ADD_OPTIONAL_PARAM, "math-macro-add-optional-param", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_MACRO_REMOVE_OPTIONAL_PARAM + * \li Action: Remove the last optional parameter. + * \li Notion: Remove the last optional parameter of a Math Macro and + remove it in all the instances of the macro in the buffer. + * \li Syntax: math-macro-remove-optional-param + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_MATH_MACRO_REMOVE_OPTIONAL_PARAM, "math-macro-remove-optional-param", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_MATH_MACRO_ADD_GREEDY_OPTIONAL_PARAM + * \li Action: Add a greedy optional parameter. + * \li Notion: Add a greedy optional parameter which eats the value + from the following cells in mathed which are in the [value] + format. + * \li Syntax: math-macro-add-greedy-optional-param + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_MATH_MACRO_ADD_GREEDY_OPTIONAL_PARAM, "math-macro-add-greedy-optional-param", Noop, Math }, +/*! + * \var lyx::kb_action lyx::LFUN_IN_MATHMACROTEMPLATE + * \li Action: Only active in Math Macro definition. + * \li Notion: Dummy function which is only active in a Math Macro definition. + It's used to toggle the Math Macro toolbar if the cursor moves + into a Math Macro definition. + * \li Syntax: in-mathmacrotemplate + * \li Origin: sts, 06 January 2008 + * \endvar + */ + { LFUN_IN_MATHMACROTEMPLATE, "in-mathmacrotemplate", Noop, Math }, + + { LFUN_PARAGRAPH_DOWN, "paragraph-down", ReadOnly | NoUpdate, Edit }, + { LFUN_PARAGRAPH_DOWN_SELECT, "paragraph-down-select", ReadOnly, Edit }, + { LFUN_PARAGRAPH_GOTO, "paragraph-goto", ReadOnly, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_OUTLINE_UP + * \li Action: Move the current group in the upward direction in the + structure of the document. + * \li Notion: The "group" can be Part/Chapter/Section/etc. It moves + the whole substructure of the group. + * \li Syntax: outline-up + * \li Origin: Vermeer, 23 Mar 2006 + * \endvar + */ + { LFUN_OUTLINE_UP, "outline-up", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_OUTLINE_DOWN + * \li Action: Move the current group in the downward direction in the + structure of the document. + * \li Notion: The "group" can be Part/Chapter/Section/etc. It moves + the whole substructure of the group. + * \li Syntax: outline-down + * \li Origin: Vermeer, 23 Mar 2006 + * \endvar + */ + { LFUN_OUTLINE_DOWN, "outline-down", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_OUTLINE_IN + * \li Action: Moves the current group in the downward direction in the + hierarchy of the document structure. + * \li Notion: Part -> Chapter -> Section -> etc. + * \li Syntax: outline-in + * \li Origin: Vermeer, 23 Mar 2006 + * \endvar + */ + { LFUN_OUTLINE_IN, "outline-in", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_OUTLINE_OUT + * \li Action: Moves the current group in the upward direction in the + hierarchy of the document structure. + * \li Notion: Part <- Chapter <- Section <- etc. + * \li Syntax: outline-out + * \li Origin: Vermeer, 23 Mar 2006 + * \endvar + */ + { LFUN_OUTLINE_OUT, "outline-out", Noop, Edit }, + + { LFUN_PARAGRAPH_SPACING, "paragraph-spacing", Noop, Edit }, + { LFUN_PARAGRAPH_UP, "paragraph-up", ReadOnly | NoUpdate, Edit }, + { LFUN_PARAGRAPH_UP_SELECT, "paragraph-up-select", ReadOnly, Edit }, + + { LFUN_EXTERNAL_EDIT, "external-edit", Noop, Edit }, + { LFUN_GRAPHICS_EDIT, "graphics-edit", Noop, Edit }, + + { LFUN_CELL_BACKWARD, "cell-backward", Noop, Edit }, + { LFUN_CELL_FORWARD, "cell-forward", Noop, Edit }, + { LFUN_CELL_SPLIT, "cell-split", Noop, Edit }, + { LFUN_TABULAR_INSERT, "tabular-insert", Noop, Edit }, + { LFUN_TABULAR_FEATURE, "tabular-feature", Noop, Edit }, + + { LFUN_VC_CHECK_IN, "vc-check-in", ReadOnly, System }, + { LFUN_VC_CHECK_OUT, "vc-check-out", ReadOnly, System }, + { LFUN_VC_REGISTER, "vc-register", ReadOnly, System }, + { LFUN_VC_REVERT, "vc-revert", ReadOnly, System }, + { LFUN_VC_UNDO_LAST, "vc-undo-last", ReadOnly, System }, + + { LFUN_CHANGES_TRACK, "changes-track", Noop, Edit }, + { LFUN_CHANGES_OUTPUT, "changes-output", Noop, Edit }, + { LFUN_CHANGE_NEXT, "change-next", ReadOnly, Edit }, + { LFUN_CHANGES_MERGE, "changes-merge", Noop, Edit }, + { LFUN_CHANGE_ACCEPT, "change-accept", Noop, Edit }, + { LFUN_CHANGE_REJECT, "change-reject", Noop, Edit }, + { LFUN_ALL_CHANGES_ACCEPT, "all-changes-accept", Noop, Edit }, + { LFUN_ALL_CHANGES_REJECT, "all-changes-reject", Noop, Edit }, + +/*! + * \var lyx::kb_action lyx::LFUN_INSET_APPLY + * \li Action: Apply data for an inset. + * \li Notion: LFUN_INSET_APPLY is sent from the dialogs when the data should + be applied. This is either changed to #LFUN_INSET_MODIFY or + #LFUN_INSET_INSERT depending on the context where it is called. + * \li Syntax: inset-apply + * \li Params: See #LFUN_INSET_INSERT . + * \endvar + */ + { LFUN_INSET_APPLY, "inset-apply", Noop, Edit }, + { LFUN_INSET_DISSOLVE, "inset-dissolve", Noop, Edit }, +/*! + * \var lyx::kb_action lyx::LFUN_INSET_INSERT + * \li Action: Insert new inset (type given by the parameters). + * \li Syntax: inset-insert + * \li Params: : \n + : depends on the given inset. Use "lyx -dbg action" to + explore. + * \li Sample: inset-insert ref LatexCommand reference "