]> git.lyx.org Git - lyx.git/blobdiff - src/LyXAction.cpp
Fix caption numbering of child documents.
[lyx.git] / src / LyXAction.cpp
index 29da574d540a62571affce6e619e24733d8aa5df..cafd1a29a3d98b5a73166b4558af23df8983bda2 100644 (file)
@@ -323,6 +323,15 @@ void LyXAction::init()
  * \endvar
  */
                { LFUN_LISTING_INSERT, "listing-insert", Noop, Edit },
+/*!
+ * \var lyx::FuncCode lyx::LFUN_QUOTE_INSERT
+ * \li Action: Inserts quotes according to the type and quote-language preference.
+ * \li Action: Currently  English, Swedish, German, Polish, French, Danish quotes
+               are distinguished.
+ * \li Syntax: quote-insert [<TYPE>]
+ * \li Params: TYPE: 'single' for single quotes, otherwise double quotes will be used.
+ * \endvar
+ */
                { LFUN_QUOTE_INSERT, "quote-insert", Noop, Edit },
 /*!
  * \var lyx::FuncCode lyx::LFUN_INFO_INSERT
@@ -344,10 +353,19 @@ void LyXAction::init()
  * \var lyx::FuncCode lyx::LFUN_BRANCH_INSERT
  * \li Action: Inserts branch inset.
  * \li Syntax: branch-insert <BRANCH-NAME>
- * \li Origin: vermeer, Aug 17 Aug 2003
+ * \li Origin: vermeer, 17 Aug 2003
  * \endvar
  */
                { LFUN_BRANCH_INSERT, "branch-insert", Noop, Edit },
+/*!
+ * \var lyx::FuncCode lyx::LFUN_BOX_INSERT
+ * \li Action: Inserts Box inset.
+ * \li Syntax: box-insert [<TYPE>]
+ * \li Params: <TYPE>: Boxed|Frameless|Framed|ovalbox|Ovalbox|Shadowbox|Shaded|Doublebox \n
+                       Framed is the default one.
+ * \li Origin: vermeer, 7 Oct 2003
+ * \endvar
+ */
                { LFUN_BOX_INSERT, "box-insert", Noop, Edit },
 /*!
  * \var lyx::FuncCode lyx::LFUN_FLEX_INSERT
@@ -381,6 +399,14 @@ void LyXAction::init()
  * \endvar
  */
                { LFUN_SPACE_INSERT, "space-insert", Noop, Edit },
+/*!
+ * \var lyx::FuncCode lyx::LFUN_HYPERLINK_INSERT
+ * \li Action: Inserts hyperlinks into the document (clickable in pdf output).
+ * \li Notion: Hyperlink target can be set via selection + hyperlink-insert function.
+ * \li Syntax: href-insert [<TARGET>]
+ * \li Origin: CFO-G, 21 Nov 1997
+ * \endvar
+ */
                { LFUN_HYPERLINK_INSERT, "href-insert", Noop, Edit },
 /*!
  * \var lyx::FuncCode lyx::LFUN_SPECIALCHAR_INSERT
@@ -621,6 +647,7 @@ void LyXAction::init()
                           simple. In "logical mode", movement is logically forward in RTL
                           paragraphs, and logically backwards in LTR paragraphs.
  * \li Syntax: word-left
+ * \li Origin: dov, 28 Oct 2007
  * \endvar
  */
                { LFUN_WORD_LEFT, "word-left", ReadOnly | NoUpdate, Edit },
@@ -630,6 +657,7 @@ void LyXAction::init()
                           adding *logically* traversed text to the selection.
  * \li Notion: See also #LFUN_WORD_LEFT for exact details of the movement.
  * \li Syntax: word-left-select
+ * \li Origin: dov, 28 Oct 2007
  * \endvar
  */
                { LFUN_WORD_LEFT_SELECT, "word-left-select", ReadOnly | SingleParUpdate, Edit },
@@ -646,6 +674,7 @@ void LyXAction::init()
                           forward in LTR paragraphs, and logically backwards in RTL 
                           paragraphs.
  * \li Syntax: word-right
+ * \li Origin: dov, 28 Oct 2007
  * \endvar
  */
                { LFUN_WORD_RIGHT, "word-right", ReadOnly | NoUpdate, Edit },
@@ -655,6 +684,7 @@ void LyXAction::init()
                           adding *logically* traversed text to the selection.
  * \li Notion: See also #LFUN_WORD_RIGHT for exact details of the movement.
  * \li Syntax: word-right-select
+ * \li Origin: dov, 28 Oct 2007
  * \endvar
  */
                { LFUN_WORD_RIGHT_SELECT, "word-right-select", ReadOnly | SingleParUpdate, Edit },
@@ -1075,10 +1105,13 @@ void LyXAction::init()
                { LFUN_PARAGRAPH_DOWN_SELECT, "paragraph-down-select", ReadOnly, Edit },
 /*!
  * \var lyx::FuncCode lyx::LFUN_PARAGRAPH_GOTO
- * \li Action: Jump to a paragraph given by its id number.
+ * \li Action: Jump to a paragraph given by its id number and optionally the
+               desired position within the paragraph.
  * \li Notion: Note that id number of paragraph is not the sequential number of paragraph
                seen on the screen. Moreover the id is unique for all opened buffers (documents).
- * \li Syntax: paragraph-goto <PAR_ID_NUMBER>
+ * \li Syntax: paragraph-goto <PAR_ID_NUMBER> <POSITION_IN_PAR>
+ * \li Params: <PAR_ID_NUMBER>:  paragraph id
+               <POSITION_IN_PAR>: desired position within the paragraph
  * \li Origin: Dekel, 26 Aug 2000
  * \endvar
  */
@@ -1386,6 +1419,14 @@ void LyXAction::init()
  * \endvar
  */
                { LFUN_LABEL_GOTO, "label-goto", ReadOnly, Edit },
+/*!
+ * \var lyx::FuncCode lyx::LFUN_LABEL_INSERT
+ * \li Action: Inserts label to text or displayed formula.
+ * \li Syntax: label-insert [<LABEL>]
+ * \li Params: <LABEL>: Requested label. If no label is given dialog requesting
+                        name will be opened.
+ * \endvar
+ */
                { LFUN_LABEL_INSERT, "label-insert", Noop, Edit },
 /*!
  * \var lyx::FuncCode lyx::LFUN_REFERENCE_NEXT