X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLyXRC.h;h=f348edb2853a6e2cdfb4c88fc601d2940adea471;hb=96ee270933fe88672b70eb22045b280bf9ee4d90;hp=39ba9ee211546496e789c092c563fba847bf78ed;hpb=3fa21d5b4393b962d074effe5980d4c894de03e6;p=lyx.git diff --git a/src/LyXRC.h b/src/LyXRC.h index 39ba9ee211..f348edb285 100644 --- a/src/LyXRC.h +++ b/src/LyXRC.h @@ -19,9 +19,9 @@ #define LYXRC_H #include "paper.h" -#include "graphics/GraphicsTypes.h" -#include +#include "support/strfwd.h" + #include @@ -63,6 +63,7 @@ public: RC_DISPLAY_GRAPHICS, RC_DOCUMENTPATH, RC_ESC_CHARS, + RC_EXAMPLEPATH, RC_FONT_ENCODING, RC_FORMAT, RC_INDEX_COMMAND, @@ -79,6 +80,7 @@ public: RC_LANGUAGE_GLOBAL_OPTIONS, RC_LANGUAGE_PACKAGE, RC_LANGUAGE_USE_BABEL, + RC_SORT_LAYOUTS, RC_USELASTFILEPOS, RC_LOADSESSION, RC_MAKE_BACKUP, @@ -117,9 +119,7 @@ public: RC_SCREEN_FONT_SIZES, RC_SCREEN_FONT_TYPEWRITER, RC_SCREEN_FONT_TYPEWRITER_FOUNDRY, - RC_SCREEN_GEOMETRY_HEIGHT, - RC_SCREEN_GEOMETRY_WIDTH, - RC_SCREEN_GEOMETRY_XYSAVED, + RC_GEOMETRY_SESSION, RC_SCREEN_ZOOM, RC_SERVERPIPE, RC_SET_COLOR, @@ -138,6 +138,7 @@ public: RC_USE_ESC_CHARS, RC_USE_INP_ENC, RC_USE_PERS_DICT, + RC_USE_PIXMAP_CACHE, RC_USE_SPELL_LIB, RC_VIEWDVI_PAPEROPTION, RC_VIEWER, @@ -226,6 +227,8 @@ public: /// std::string document_path; /// + std::string example_path; + /// std::string template_path; /// std::string tempdir_path; @@ -245,12 +248,9 @@ public: bool make_backup; /// A directory for storing backup files std::string backupdir_path; - /// Width of MainWindow. if 0, value from last session will be used - int geometry_width; - /// Height of MainWindow, if 0, value from last session will be used - int geometry_height; - /// Whether or not save/restore windows position as session info - bool geometry_xysaved; + /// Whether or not save/restore session information + /// like windows position and geometry. + bool allow_geometry_session; /// Zoom factor for screen fonts unsigned int zoom; /// Screen font sizes in points for each font size @@ -291,6 +291,8 @@ public: bool isp_use_alt_lang; /// Use personal dictionary? bool isp_use_pers_dict; + /// Use pixmap cache? + bool use_pixmap_cache; /// Use escape chars? bool isp_use_esc_chars; /// Alternate language for ispell @@ -340,7 +342,8 @@ public: /// int label_init_length; /// - graphics::DisplayType display_graphics; + ///graphics::DisplayType + int display_graphics; /// bool show_banner; /// @@ -371,6 +374,8 @@ public: bool use_converter_cache; /// The maximum age of cache files in seconds unsigned int converter_cache_maxage; + /// Sort layouts alphabetically + bool sort_layouts; };