X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flfuns.h;h=d614278d5f553963fdeaf52f622cef75462abb75;hb=37e82a546392d43f787826b85481a11f2a27af15;hp=dc455b67b184fa9589a6d2b22ec9e1233565b8bf;hpb=39ec3d0eb81f6e3ade7bc183f7590f3a0bcd6cf7;p=lyx.git diff --git a/src/lfuns.h b/src/lfuns.h index dc455b67b1..d614278d5f 100644 --- a/src/lfuns.h +++ b/src/lfuns.h @@ -9,7 +9,7 @@ * To add a new function: * - add a new enum constant immediately before LFUN_LASTACTION * - add an appropriate line in LyXAction.C - * - add a branch to a suitable ::priv_dispatch() method + * - add a branch to a suitable ::doDispatch() method * - add correct test to the corresponding ::getStatus() method */ @@ -24,7 +24,7 @@ * They are managed in LyXAction.C and handled in various * ::dispatch() functions, starting with LyXFunc.C:dispatch(), * BufferView_pimpl::dispatch(), LCursor::dispatch() and - * Inset*::priv_dispatch(); + * Inset*::doDispatch(); */ enum kb_action { LFUN_UNKNOWN_ACTION = -1, @@ -337,6 +337,21 @@ enum kb_action { // 255 LFUN_EXPORT_CUSTOM, LFUN_PRINT, + LFUN_KEYMAP_TOGGLE, + LFUN_NEXT_INSET_TOGGLE, + LFUN_ALL_INSETS_TOGGLE, + // 260 + LFUN_LANGUAGE_BUFFER, + LFUN_TEXTCLASS_APPLY, + LFUN_TEXTCLASS_LOAD, + LFUN_SAVE_AS_DEFAULT, + LFUN_BUFFERPARAMS_APPLY, + // 265 + LFUN_LYXRC_APPLY, + LFUN_GRAPHICS_EDIT, + LFUN_INSET_REFRESH, + LFUN_NEXTBUFFER, + LFUN_PREVIOUSBUFFER, LFUN_LASTACTION // end of the table };