]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfunc.h
remove noload/don't typeset
[lyx.git] / src / lyxfunc.h
index 9f72d2c406e12ce607312015f81a2e9b5f581c58..3d3aab4cfd6b4a51c02fb6b4dbb6dca24718070b 100644 (file)
@@ -7,19 +7,17 @@
 #endif
 
 
-#include "commandtags.h" // for kb_action enum
 #include "FuncStatus.h"
 #include "kbsequence.h"
+#include "commandtags.h"
 #include "LString.h"
 
-#include "frontends/mouse_state.h"
-#include "frontends/key_state.h"
-#include "frontends/LyXKeySym.h"
-
 #include <boost/signals/trackable.hpp>
 
 class LyXView;
 class LyXText;
+class FuncRequest;
+class BufferView;
 
 
 /** This class encapsulates all the LyX command operations.
@@ -35,25 +33,16 @@ public:
        LyXFunc(LyXView *);
 
        /// LyX dispatcher, executes lyx actions.
-       string const dispatch(kb_action ac, string argument = string());
-
-       /// The same as dispatch, but also shows shortcuts and command
-       /// name in minibuffer if show_sc is true (more to come?)
-       void verboseDispatch(kb_action action,
-                            string const & argument,
-                            bool show_sc);
+       void dispatch(FuncRequest const &, bool verbose = false);
 
-       /// Same as above, using a pseudoaction as argument
-       void verboseDispatch(int ac, bool show_sc);
+       /// Dispatch via a string argument
+       void dispatch(string const & s, bool verbose = false);
+       /// Dispatch via a pseudo action, also displaying shortcut/command name
+       void dispatch(int ac, bool verbose = false);
 
-       /// Same as above, when the command is provided as a string
-       void verboseDispatch(string const & s, bool show_sc);
-
-       ///
-       void miniDispatch(string const & s);
-
-       ///
-       void initMiniBuffer();
+       /// return the status bar state string
+       string const view_status_message();
 
        ///
        void processKeySym(LyXKeySymPtr key, key_modifier::state state);
@@ -62,8 +51,7 @@ public:
        /// can contain the string argument.
        FuncStatus getStatus(int ac) const;
        ///
-       FuncStatus getStatus(kb_action action,
-                            string const & argument = string()) const;
+       FuncStatus getStatus(FuncRequest const & action) const;
 
        /// The last key was meta
        bool wasMetaKey() const;
@@ -84,6 +72,9 @@ public:
        void handleKeyFunc(kb_action action);
 
 private:
+       ///
+       BufferView * view() const;
+
        ///
        LyXView * owner;
        ///
@@ -112,13 +103,14 @@ private:
        /** Buffer to store messages and result data from getStatus
        */
        mutable string status_buffer;
-       /// Command name and shortcut information
-       string commandshortcut;
+
+       /// send a post-dispatch status message
+       void sendDispatchMessage(string const & msg, FuncRequest const & ev, bool verbose);
 
        // I think the following should be moved to BufferView. (Asger)
 
        ///
-       void menuNew(bool fromTemplate);
+       void menuNew(string const & argument, bool fromTemplate);
 
        ///
        void open(string const &);