]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetERT.cpp
Pure HTML output for math macros.
[lyx.git] / src / insets / InsetERT.cpp
index c05a6a5e87d6b507ec808bf280679a2699751584..17639299238d3ad9508b0ba139dbf3eb719a00dc 100644 (file)
@@ -24,7 +24,7 @@
 #include "Layout.h"
 #include "Lexer.h"
 #include "LyXAction.h"
-#include "MetricsInfo.h"
+#include "OutputParams.h"
 #include "ParagraphParameters.h"
 #include "Paragraph.h"
 #include "TextClass.h"
@@ -43,19 +43,13 @@ using namespace lyx::support;
 
 namespace lyx {
 
-InsetERT::InsetERT(Buffer const & buf, CollapseStatus status)
+InsetERT::InsetERT(Buffer * buf, CollapseStatus status)
        : InsetCollapsable(buf)
 {
        status_ = status;
 }
 
 
-InsetERT::~InsetERT()
-{
-       hideDialogs("ert", this);
-}
-
-
 void InsetERT::write(ostream & os) const
 {
        os << "ERT" << "\n";
@@ -63,9 +57,33 @@ void InsetERT::write(ostream & os) const
 }
 
 
-int InsetERT::plaintext(odocstream &, OutputParams const &) const
+int InsetERT::plaintext(odocstream & os, OutputParams const & rp) const
 {
-       return 0; // do not output TeX code
+       if (!rp.inIndexEntry)
+               // do not output TeX code
+               return 0;
+
+       ParagraphList::const_iterator par = paragraphs().begin();
+       ParagraphList::const_iterator end = paragraphs().end();
+
+       while (par != end) {
+               pos_type siz = par->size();
+               for (pos_type i = 0; i < siz; ++i) {
+                       char_type const c = par->getChar(i);
+                       // output the active characters
+                       switch (c) {
+                       case '|':
+                       case '!':
+                       case '@':
+                               os.put(c);
+                               break;
+                       default:
+                               break;
+                       }
+               }
+               ++par;
+       }
+       return 0;
 }
 
 
@@ -128,14 +146,6 @@ docstring const InsetERT::buttonLabel(BufferView const & bv) const
 }
 
 
-bool InsetERT::showInsetDialog(BufferView * bv) const
-{
-       bv->showDialog("ert", params2string(status(*bv)), 
-               const_cast<InsetERT *>(this));
-       return true;
-}
-
-
 InsetCollapsable::CollapseStatus InsetERT::string2params(string const & in)
 {
        if (in.empty())
@@ -159,7 +169,7 @@ string InsetERT::params2string(CollapseStatus status)
 }
 
 
-docstring InsetERT::xhtml(odocstream &, OutputParams const &) const
+docstring InsetERT::xhtml(XHTMLStream &, OutputParams const &) const
 {
        return docstring();
 }