From f4ed12ee7acb4d96c6e5cdf057e2bf8621ed72af Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Sat, 5 Jul 2008 21:56:26 +0000 Subject: [PATCH] * Doxy. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25457 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/LyXAction.cpp | 44 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 42 insertions(+), 2 deletions(-) diff --git a/src/LyXAction.cpp b/src/LyXAction.cpp index 7fe4a4b362..81762997a2 100644 --- a/src/LyXAction.cpp +++ b/src/LyXAction.cpp @@ -2262,11 +2262,51 @@ void LyXAction::init() */ { LFUN_DIALOG_DISCONNECT_INSET, "dialog-disconnect-inset", Noop, Edit }, +/*! + * \var lyx::FuncCode lyx::LFUN_MOUSE_PRESS + * \li Action: This function is called when mouse button is pressed (inside workarea). + Action depends on the context. + * \li Notion: This is internal LFUN, not to be used by users. + * \li Origin: André, 9 Aug 2002 + * \endvar + */ { LFUN_MOUSE_PRESS, "", ReadOnly, Hidden }, - { LFUN_MOUSE_MOTION, "", ReadOnly | SingleParUpdate, Hidden }, - { LFUN_MOUSE_RELEASE, "", ReadOnly, Hidden }, +/*! + * \var lyx::FuncCode lyx::LFUN_MOUSE_DOUBLE + * \li Action: This function is called when double click on mouse button is + pressed (inside workarea). Action depends on the context. + * \li Notion: This is internal LFUN, not to be used by users. + * \li Origin: André, 9 Aug 2002 + * \endvar + */ { LFUN_MOUSE_DOUBLE, "", ReadOnly, Hidden }, +/*! + * \var lyx::FuncCode lyx::LFUN_MOUSE_TRIPLE + * \li Action: This function is called when triple click on mouse button is + pressed (inside workarea). Action depends on the context. + * \li Notion: This is internal LFUN, not to be used by users. + * \li Origin: André, 9 Aug 2002 + * \endvar + */ { LFUN_MOUSE_TRIPLE, "", ReadOnly, Hidden }, +/*! + * \var lyx::FuncCode lyx::LFUN_MOUSE_MOTION + * \li Action: This function is called when mouse cursor is moving over the text. + Action depends on the context. + * \li Notion: This is internal LFUN, not to be used by users. + * \li Origin: André, 9 Aug 2002 + * \endvar + */ + { LFUN_MOUSE_MOTION, "", ReadOnly | SingleParUpdate, Hidden }, +/*! + * \var lyx::FuncCode lyx::LFUN_MOUSE_RELEASE + * \li Action: This function is called when mouse button is released (inside workarea). + Action depends on the context. + * \li Notion: This is internal LFUN, not to be used by users. + * \li Origin: André, 9 Aug 2002 + * \endvar + */ + { LFUN_MOUSE_RELEASE, "", ReadOnly, Hidden }, { LFUN_KEYMAP_OFF, "keymap-off", ReadOnly, Edit }, { LFUN_KEYMAP_PRIMARY, "keymap-primary", ReadOnly, Edit }, -- 2.39.5