]> git.lyx.org Git - lyx.git/blobdiff - src/LyXRC.h
compil fix for Qt-4.2
[lyx.git] / src / LyXRC.h
index f348edb2853a6e2cdfb4c88fc601d2940adea471..ace663e1130601a5a738355481f6b0667b623ac2 100644 (file)
@@ -83,8 +83,10 @@ public:
                RC_SORT_LAYOUTS,
                RC_USELASTFILEPOS,
                RC_LOADSESSION,
+               RC_MACRO_EDIT_STYLE,
                RC_MAKE_BACKUP,
                RC_MARK_FOREIGN_LANGUAGE,
+               RC_MOUSE_WHEEL_SPEED,
                RC_NUMLASTFILES,
                RC_PATH_PREFIX,
                RC_PERS_DICT,
@@ -138,6 +140,7 @@ public:
                RC_USE_ESC_CHARS,
                RC_USE_INP_ENC,
                RC_USE_PERS_DICT,
+               RC_USE_TOOLTIP,
                RC_USE_PIXMAP_CACHE,
                RC_USE_SPELL_LIB,
                RC_VIEWDVI_PAPEROPTION,
@@ -251,6 +254,8 @@ public:
        /// Whether or not save/restore session information
        /// like windows position and geometry.
        bool allow_geometry_session;
+       /// Scrolling speed of the mouse wheel
+       double mouse_wheel_speed;
        /// Zoom factor for screen fonts
        unsigned int zoom;
        /// Screen font sizes in points for each font size
@@ -291,6 +296,8 @@ public:
        bool isp_use_alt_lang;
        /// Use personal dictionary?
        bool isp_use_pers_dict;
+       /// Use tooltips?
+       bool use_tooltip;
        /// Use pixmap cache?
        bool use_pixmap_cache;
        /// Use escape chars?
@@ -338,6 +345,14 @@ public:
        ///
        bool cursor_follows_scrollbar;
        ///
+       enum MacroEditStyle {
+               MACRO_EDIT_INLINE_BOX = 0,
+               MACRO_EDIT_INLINE,
+               MACRO_EDIT_LIST
+       };
+       ///
+       MacroEditStyle macro_edit_style;
+       ///
        bool dialogs_iconify_with_main;
        ///
        int label_init_length;