X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxrc.h;h=ceed6f936974b808058ae620b2b1e7e746feb3d5;hb=52eb91c94fb70d58dceef430659c8781de2eccda;hp=138481cb678f8056bdcf3d4e1b88794641677076;hpb=be76af20b33c3e2bd22142bf01dfb587ac516e7e;p=lyx.git diff --git a/src/lyxrc.h b/src/lyxrc.h index 138481cb67..ceed6f9369 100644 --- a/src/lyxrc.h +++ b/src/lyxrc.h @@ -27,6 +27,8 @@ namespace lyx { +namespace support { class FileName; } + class LyXLex; /// This contains the runtime configuration of LyX @@ -38,8 +40,8 @@ public: enum LyXRCTags { RC_ACCEPT_COMPOUND = 1, RC_ALT_LANG, - RC_ASCIIROFF_COMMAND, - RC_ASCII_LINELEN, + RC_PLAINTEXT_ROFF_COMMAND, + RC_PLAINTEXT_LINELEN, RC_AUTOREGIONDELETE, RC_AUTORESET_OPTIONS, RC_AUTOSAVE, @@ -50,6 +52,7 @@ public: RC_CHECKLASTFILES, RC_CHKTEX_COMMAND, RC_CONVERTER, + RC_CONVERTER_CACHE_MAXAGE, RC_COPIER, RC_CURSOR_FOLLOWS_SCROLLBAR, RC_CUSTOM_EXPORT_COMMAND, @@ -136,6 +139,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, @@ -150,7 +154,7 @@ public: /// void setDefaults(); /// - int read(std::string const & filename); + int read(support::FileName const & filename); /// int read(std::istream &); private: @@ -158,7 +162,7 @@ private: int read(LyXLex &); public: /// - void write(std::string const & filename, + void write(support::FileName const & filename, bool ignore_system_lyxrc) const; /// void write(std::ostream & os, @@ -305,9 +309,9 @@ public: /// unsigned int autosave; /// - std::string ascii_roff_command; + std::string plaintext_roff_command; /// - unsigned int ascii_linelen; + unsigned int plaintext_linelen; /// use library instead of process bool use_spell_lib; /// Ispell command @@ -396,6 +400,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; };