From: Richard Heck Date: Mon, 14 Jan 2008 22:43:05 +0000 (+0000) Subject: A little more lfun doxy. X-Git-Tag: 1.6.10~6600 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=821ef811542e5f588f6197f8cdca77af9b4c73d4;p=features.git A little more lfun doxy. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22568 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/LyXAction.cpp b/src/LyXAction.cpp index 1281df28c2..7868c21eab 100644 --- a/src/LyXAction.cpp +++ b/src/LyXAction.cpp @@ -221,13 +221,47 @@ void LyXAction::init() { LFUN_FLOAT_INSERT, "float-insert", Noop, Edit }, { LFUN_FLOAT_WIDE_INSERT, "float-wide-insert", Noop, Edit }, { LFUN_WRAP_INSERT, "wrap-insert", Noop, Edit }, +/** + * \li Action: Inserts an hfill inset. + * \li Syntax: hfill-insert + */ { LFUN_HFILL_INSERT, "hfill-insert", Noop, Edit }, +/** + * \li Action: Inserts an optional-argument (short title) inset. + * \li Syntax: optional-insert + */ { LFUN_OPTIONAL_INSERT, "optional-insert", Noop, Edit }, +/** + * \li Action: Inserts a horizontal line. + * \li Syntax: line-insert + */ { LFUN_LINE_INSERT, "line-insert", Noop, Edit }, +/** + * \li Action: Inserts a new page. + * \li Syntax: newpage-insert + */ { LFUN_NEWPAGE_INSERT, "newpage-insert", Noop, Edit }, +/** + * \li Action: Inserts a pagebreak. + * \li Syntax: pagebreak-insert + */ { LFUN_PAGEBREAK_INSERT, "pagebreak-insert", Noop, Edit }, +/** + * \li Action: Inserts a marginal note. + * \li Syntax: marginalnote-insert + */ { LFUN_MARGINALNOTE_INSERT, "marginalnote-insert", Noop, Edit }, +/** + * \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. + */ { LFUN_UNICODE_INSERT, "unicode-insert", Noop, Edit }, +/** + * \li Action: Inserts a new listings inset. + * \li Syntax: listing-insert + */ { LFUN_LISTING_INSERT, "listing-insert", Noop, Edit }, { LFUN_QUOTE_INSERT, "quote-insert", Noop, Edit }, { LFUN_INFO_INSERT, "info-insert", Noop, Edit },