]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathStream.h
Whitespace.
[lyx.git] / src / mathed / MathStream.h
index df97ce303a7d73aaeb1d92ccda7009ad865e20e5..99900c3c112918fd94c654d276feb7d5e8ac7129 100644 (file)
@@ -263,13 +263,13 @@ public:
        void defer(std::string const &);
        ///
        docstring deferred() const;
+       ///
+       bool inText() const { return in_text_; }
+private:
        ///
        void setTextMode() { in_text_ = true; }
        ///
        void setMathMode() { in_text_ = false; }
-       ///
-       bool inText() const { return in_text_; }
-private:
        ///
        odocstream & os_;
        ///
@@ -282,6 +282,8 @@ private:
        bool in_text_;
        ///
        odocstringstream deferred_;
+       ///
+       friend class SetMode;
 };
 
 ///
@@ -302,19 +304,31 @@ MathStream & operator<<(MathStream &, MTag const &);
 MathStream & operator<<(MathStream &, ETag const &);
 
 
-// A simpler version of ModeSpecifier, for MathML
+/// A simpler version of ModeSpecifier, for MathML
+// FIXME There are still problems here with nesting, at least
+// potentially. The problem is that true nesting of text mode isn't
+// actually possible. I.e., we can't have: 
+//             <mtext><mtext></mtext></mtext>
+// So we have to have:
+//             <mtext></mtext><mtext></mtext><mtext></mtext>
+// instead, where the last is really a continuation of the first.
+// We'll need some kind of stack to remember all that.
 class SetMode {
 public:
        ///
        explicit SetMode(MathStream & os, bool text, docstring attrs);
-       // not clear yet precisely what we need...
-       // explicit SetMode(MathStream & os, bool text);
+       ///
+       explicit SetMode(MathStream & os, bool text);
        ///
        ~SetMode();
 private:
+       ///
+       void init(bool, docstring);
        ///
        MathStream & os_;
        ///
+       bool opened_;
+       ///
        bool was_text_;
 };