]> git.lyx.org Git - lyx.git/blobdiff - src/LyXRC.h
Russian layouttranslations reviewed by Yuriy, Dec 13 2017.
[lyx.git] / src / LyXRC.h
index dccb3007f68f43b96eb1e74898d53724bbc8439d..3da93ac92294f0010aff686318fb4dcb5d2870f7 100644 (file)
@@ -70,6 +70,7 @@ public:
                RC_DEFAULT_DECIMAL_POINT,
                RC_DEFAULT_LENGTH_UNIT,
                RC_DEFAULT_OTF_VIEW_FORMAT,
+               RC_DEFAULT_PLATEX_VIEW_FORMAT,
                RC_DEFAULT_VIEW_FORMAT,
                RC_DEFFILE,
                RC_DIALOGS_ICONIFY_WITH_MAIN,
@@ -133,6 +134,7 @@ public:
                RC_PRINTLANDSCAPEFLAG,
                RC_PRINTPAPERDIMENSIONFLAG,
                RC_PRINTPAPERFLAG,
+               RC_PYGMENTIZE_COMMAND,
                RC_SAVE_COMPRESSED,
                RC_SAVE_ORIGIN,
                RC_SCREEN_DPI,
@@ -173,7 +175,6 @@ public:
                RC_USE_SYSTEM_COLORS,
                RC_USE_TOOLTIP,
                RC_USE_PIXMAP_CACHE,
-               RC_USE_QIMAGE,
                RC_USE_SYSTEM_THEME_ICONS,
                RC_VIEWDVI_PAPEROPTION,
                RC_VIEWER,
@@ -253,6 +254,8 @@ public:
        std::string splitindex_command;
        /// command to run makeindex incl. options for nomencl
        std::string nomencl_command;
+       /// command to run the python pygments syntax highlighter
+       std::string pygmentize_command;
        ///
        std::string document_path;
        ///
@@ -292,8 +295,11 @@ public:
        bool allow_geometry_session;
        /// Scrolling speed of the mouse wheel
        double mouse_wheel_speed;
-       /// Zoom factor for screen fonts
-       unsigned int zoom;
+       /// Default zoom factor for screen fonts
+       int defaultZoom;
+       /// Actual zoom factor for screen fonts
+       /// (default zoom plus buffer zoom factor)
+       int currentZoom;
        /// Screen font sizes in points for each font size
        std::string font_sizes[10];
        /// Allow the use of scalable fonts? Default is yes.
@@ -328,8 +334,6 @@ public:
        bool use_system_colors;
        /// Use pixmap cache?
        bool use_pixmap_cache;
-       /// Use QImage backend?
-       bool use_qimage;
        /// Spellchecker engine: aspell, hunspell, etc
        std::string spellchecker;
        /// Alternate language for spellchecker
@@ -386,6 +390,8 @@ public:
        ///
        std::string default_otf_view_format;
        ///
+       std::string default_platex_view_format;
+       ///
        std::string default_view_format;
        /// all available viewers
        Alternatives viewer_alternatives;