]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/ColorCache.h
QDialogButtonBox for the remaining dialogs.
[lyx.git] / src / frontends / qt4 / ColorCache.h
index 88db6bb565879a7991bb6e59ce1bc29c27927589..e1ad6aed5eaea665ca46ec07f6d2bb0b977cc111 100644 (file)
@@ -15,6 +15,7 @@
 #include "Color.h"
 
 #include <QColor>
+#include <QPalette>
 
 namespace lyx {
 
@@ -26,10 +27,20 @@ struct RGBColor;
 class ColorCache
 {
 public:
+       ///
        ColorCache() : initialized_(false) {}
 
+       /// get the given color (depends on LyXRC::use_system_color)
+       QColor get(Color const & color) const;
+
        /// get the given color
-       QColor get(Color color) const;
+       QColor get(Color const & color, bool use_system_colors) const;
+
+       /// is this color replaced when LyXRC::use_system_color is true?
+       bool isSystem(ColorCode color) const;
+
+       /// change the undelying palette
+       void setPalette(QPalette const pal) { pal_ = pal; clear(); }
 
        /// clear all colors
        void clear() { initialized_ = false; }
@@ -41,6 +52,8 @@ private:
        QColor lcolors_[Color_ignore + 1];
        ///
        bool initialized_;
+       ///
+       QPalette pal_;
 };
 
 ///