]> git.lyx.org Git - lyx.git/blobdiff - src/LyXAction.h
Embedding: saving inzip name to .lyx file so that embedded files can always be found...
[lyx.git] / src / LyXAction.h
index f5766e23c93fdbefea3121dc7a0f1736250957df..70fda4ab94acab1fd821e7459226e9df52c79492 100644 (file)
 
 #include "lfuns.h"
 
-#include <boost/utility.hpp>
-
 #include <map>
 #include <string>
 
+
+namespace lyx {
+
 class FuncRequest;
 
 /**
@@ -29,7 +30,18 @@ class FuncRequest;
  * dynamically, for encapsulating a real action and an
  * argument. They are used for things like the menus.
  */
-class LyXAction : boost::noncopyable {
+class LyXAction {
+public:
+       /// category of an action, used in the Shortcuts dialog
+       enum func_type {
+               Hidden,  //< Not listed for configuration
+               Edit,    //< Cursor and mouse movement, copy/paste etc
+               Math,    //< Mathematics
+               Buffer,  //< Buffer and window related
+               Layout,  //< Font, Layout and textclass related
+               System,  //< Lyx preference, server etc
+       };
+
 private:
        /// information for an action
        struct func_info {
@@ -37,9 +49,15 @@ private:
                std::string name;
                /// the func_attrib values set
                unsigned int attrib;
+               /// the category of this func
+               func_type type;
        };
 
 public:
+       /// noncopyable
+       LyXAction(LyXAction const &);
+       void operator=(LyXAction const &);
+
        /// type for map between a function name and its action
        typedef std::map<std::string, kb_action> func_map;
        /// type for map between an action and its info
@@ -51,7 +69,8 @@ public:
                ReadOnly = 1, //< can be used in RO mode (perhaps this should change)
                NoBuffer = 2, //< Can be used when there is no document open
                Argument = 4, //< Requires argument
-               NoUpdate = 8 //< Does not (usually) require update
+               NoUpdate = 8, //< Does not (usually) require update
+               SingleParUpdate = 16 //< Usually only requires this par updated
        };
 
        LyXAction();
@@ -66,6 +85,8 @@ public:
        /// Return the name (and argument) associated with the given (pseudo) action
        std::string const getActionName(kb_action action) const;
 
+       func_type const getActionType(kb_action action) const;
+
        /// True if the command has `flag' set
        bool funcHasFlag(kb_action action, func_attrib flag) const;
 
@@ -82,7 +103,7 @@ private:
        /// populate the action container with our actions
        void init();
        /// add the given action
-       void newFunc(kb_action, std::string const & name, unsigned int attrib);
+       void newFunc(kb_action, std::string const & name, unsigned int attrib, func_type type);
 
        /**
         * This is a list of all the LyXFunc names with the
@@ -102,4 +123,7 @@ private:
 /// singleton instance
 extern LyXAction lyxaction;
 
+
+} // namespace lyx
+
 #endif // LYXACTION_H