X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLyXAction.h;h=4411b16269cac11da73ca67dd286ac563787e4bc;hb=e7f4618bcce770369cf46335c2c7f0164b4b8857;hp=ce2d452764c82948c0369da90f70ff639ea58c21;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/LyXAction.h b/src/LyXAction.h index ce2d452764..4411b16269 100644 --- a/src/LyXAction.h +++ b/src/LyXAction.h @@ -20,6 +20,9 @@ #include #include + +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