X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxrc.h;h=25d88edf98d743047e17bbcbe2717da2dbe20cae;hb=c4320d24cd2d29c2e77958b4a8fd44f2bd587ca7;hp=d84438e23b288e56ece2932522c658a403a17c7f;hpb=b2effebe209af199a591ee8666bf462b2a3b712b;p=lyx.git diff --git a/src/lyxrc.h b/src/lyxrc.h index d84438e23b..25d88edf98 100644 --- a/src/lyxrc.h +++ b/src/lyxrc.h @@ -24,10 +24,15 @@ #include #include + +namespace lyx { + +namespace support { class FileName; } + 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,11 +52,11 @@ public: RC_CHECKLASTFILES, RC_CHKTEX_COMMAND, RC_CONVERTER, + RC_CONVERTER_CACHE_MAXAGE, RC_COPIER, RC_CURSOR_FOLLOWS_SCROLLBAR, RC_CUSTOM_EXPORT_COMMAND, RC_CUSTOM_EXPORT_FORMAT, - RC_CYGWIN_PATH_FIX, RC_DATE_INSERT_FORMAT, RC_DEFAULT_LANGUAGE, RC_DEFAULT_PAPERSIZE, @@ -128,18 +133,19 @@ public: RC_TEMPDIRPATH, RC_TEMPLATEPATH, RC_TEX_ALLOWS_SPACES, + RC_TEX_EXPECTS_WINDOWS_PATHS, RC_UIFILE, RC_USER_EMAIL, 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, RC_USE_SPELL_LIB, RC_VIEWDVI_PAPEROPTION, RC_VIEWER, - RC_WHEEL_JUMP, RC_LAST }; @@ -148,7 +154,7 @@ public: /// void setDefaults(); /// - int read(std::string const & filename); + int read(support::FileName const & filename); /// int read(std::istream &); private: @@ -156,15 +162,15 @@ 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, 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; /// @@ -249,9 +255,6 @@ public: bool geometry_xysaved; /// Zoom factor for screen fonts unsigned int zoom; - /// parameter for button_4 and button_5 (scrollwheel) - /// Only used by the xforms frontend - unsigned int wheel_jump; /// Screen font sizes in points for each font size std::string font_sizes[10]; /// Allow the use of scalable fonts? Default is yes. @@ -370,7 +373,7 @@ public: /// int label_init_length; /// - lyx::graphics::DisplayType display_graphics; + graphics::DisplayType display_graphics; /// bool show_banner; /// @@ -389,14 +392,18 @@ public: std::string user_name; /// user email std::string user_email; - /// - bool cygwin_path_fix; + /// True if the TeX engine cannot handle posix paths + bool windows_style_tex_paths; /// True if the TeX engine can handle file names containing spaces bool tex_allows_spaces; /** Prepend paths to the PATH environment variable. * 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; }; @@ -416,4 +423,7 @@ public: extern LyXRC lyxrc; /// extern LyXRC system_lyxrc; + +} // namespace lyx + #endif