]> git.lyx.org Git - lyx.git/blobdiff - src/LyXAction.h
* src/tabular.[Ch]: simplify plaintext methods, because there
[lyx.git] / src / LyXAction.h
index ce2d452764c82948c0369da90f70ff639ea58c21..4411b16269cac11da73ca67dd286ac563787e4bc 100644 (file)
@@ -20,6 +20,9 @@
 #include <map>
 #include <string>
 
+
+namespace lyx {
+
 class FuncRequest;
 
 /**
@@ -50,7 +53,9 @@ public:
                Noop = 0, //< nothing special about this func
                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
+               Argument = 4, //< Requires argument
+               NoUpdate = 8, //< Does not (usually) require update
+               SingleParUpdate = 16 //< Usually only requires this par updated
        };
 
        LyXAction();
@@ -101,4 +106,7 @@ private:
 /// singleton instance
 extern LyXAction lyxaction;
 
+
+} // namespace lyx
+
 #endif // LYXACTION_H