]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrc.h
hopefully fix tex2lyx linking.
[lyx.git] / src / lyxrc.h
index f87f300068de99ed91c97e7d2c9a41c787904927..8282c21a4e50242fda9a9e5943aee1c5a4d84229 100644 (file)
 #include <iosfwd>
 #include <string>
 
+
+namespace lyx {
+
 class LyXLex;
 
 /// This contains the runtime configuration of LyX
-class LyXRC //: public noncopyable {
+class LyXRC //: public noncopyable 
 // after 1.1.6 I will use a LyXRCStruct here and then this can be made
 // noncopyable again.  For now I want to minimise changes.  ARRae 20001010
 {
@@ -47,6 +50,7 @@ public:
                RC_CHECKLASTFILES,
                RC_CHKTEX_COMMAND,
                RC_CONVERTER,
+               RC_CONVERTER_CACHE_MAXAGE,
                RC_COPIER,
                RC_CURSOR_FOLLOWS_SCROLLBAR,
                RC_CUSTOM_EXPORT_COMMAND,
@@ -133,6 +137,7 @@ public:
                RC_USER_NAME,
                RC_USETEMPDIR,
                RC_USE_ALT_LANG,
+               RC_USE_CONVERTER_CACHE,
                RC_USE_ESC_CHARS,
                RC_USE_INP_ENC,
                RC_USE_PERS_DICT,
@@ -162,8 +167,8 @@ public:
                   bool ignore_system_lyxrc) const;
        ///
        void print() const;
-       ///
-       static std::string const getDescription(LyXRCTags);
+       // FIXME unused (was used for xforms. Do we still need this?)
+       //static docstring const getDescription(LyXRCTags);
        ///
        std::string bind_file;
        ///
@@ -366,7 +371,7 @@ public:
        ///
        int label_init_length;
        ///
-       lyx::graphics::DisplayType display_graphics;
+       graphics::DisplayType display_graphics;
        ///
        bool show_banner;
        ///
@@ -393,6 +398,10 @@ public:
         *  The string is input, stored and output in native format.
         */
        std::string path_prefix;
+       /// Use the cache for file converters?
+       bool use_converter_cache;
+       /// The maximum age of cache files in seconds
+       unsigned int converter_cache_maxage;
 };
 
 
@@ -412,4 +421,7 @@ public:
 extern LyXRC lyxrc;
 ///
 extern LyXRC system_lyxrc;
+
+} // namespace lyx
+
 #endif