]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.h
HTML for math fonts.
[lyx.git] / src / BufferParams.h
index 5055790ab351b790a1d36499739bbb81d7854124..561a4f51a1e74f7acaf546417c0873fcd1ab7e91 100644 (file)
@@ -288,6 +288,8 @@ public:
        std::string pagestyle;
        ///
        RGBColor backgroundcolor;
+       ///
+       RGBColor notefontcolor;
        /// \param index should lie in the range 0 <= \c index <= 3.
        Bullet & temp_bullet(size_type index);
        Bullet const & temp_bullet(size_type index) const;
@@ -375,8 +377,14 @@ public:
        PDFOptions & pdfoptions();
        PDFOptions const & pdfoptions() const;
 
-       /// whether to use MathML for math output, or instead images
-       bool html_use_mathml;
+       enum MathOutput {
+               MathML,
+               HTML,
+               Images,
+               LaTeX
+       };
+       /// what to use for math output. present choices are above
+       MathOutput html_math_output;
        /// whether to attempt to be XHTML 1.1 compliant or instead be
        /// a little more mellow
        bool html_be_strict;