Allow LyX format to be written to View>Source window.

This commit is contained in:
Richard Heck 2012-06-04 22:01:26 -04:00
parent cfc43d772d
commit b7ac2d69e7
5 changed files with 24 additions and 6 deletions

View File

@ -3317,7 +3317,13 @@ void Buffer::getSourceCode(odocstream & os, string const format,
<< "\n\n";
}
// output paragraphs
if (runparams.flavor == OutputParams::HTML) {
if (runparams.flavor == OutputParams::LYX) {
Paragraph const & par = text().paragraphs()[par_begin];
ostringstream ods;
depth_type dt = par.getDepth();
par.write(ods, params(), dt);
os << from_utf8(ods.str());
} else if (runparams.flavor == OutputParams::HTML) {
XHTMLStream xs(os);
setMathFlavor(runparams);
xhtmlParagraphs(text(), *this, xs, runparams);
@ -3347,7 +3353,16 @@ void Buffer::getSourceCode(odocstream & os, string const format,
else if (output == OnlyBody)
os << _("Preview body");
os << "\n\n";
if (runparams.flavor == OutputParams::HTML) {
if (runparams.flavor == OutputParams::LYX) {
ostringstream ods;
if (output == FullSource)
write(ods);
else if (output == OnlyPreamble)
params().writeFile(ods);
else if (output == OnlyBody)
text().write(ods);
os << from_utf8(ods.str());
} else if (runparams.flavor == OutputParams::HTML) {
writeLyXHTMLSource(os, runparams, output);
} else if (runparams.flavor == OutputParams::TEXT) {
if (output == OnlyPreamble) {

View File

@ -2180,6 +2180,8 @@ OutputParams::FLAVOR BufferParams::getOutputFlavor(string const format) const
result = OutputParams::HTML;
else if (dformat == "text")
result = OutputParams::TEXT;
else if (dformat == "lyx")
result = OutputParams::LYX;
else {
// Try to determine flavor of default output format
vector<string> backs = backends();

View File

@ -35,7 +35,8 @@ public:
XETEX,
XML,
HTML,
TEXT
TEXT,
LYX
};
enum MathFlavor {

View File

@ -209,9 +209,6 @@ void ViewSourceWidget::updateDefaultFormat()
LYXERR0("Can't find format for backend " << format << "!");
continue;
}
if (fmt->name() == "lyx")
// we can't presently display the LyX format itself
continue;
QString const pretty = qt_(fmt->prettyname());
QString const qformat = toqstr(format);

View File

@ -752,6 +752,9 @@ void InsetExternal::validate(LaTeXFeatures & features) const
case OutputParams::TEXT:
format = "text";
break;
case OutputParams::LYX:
format = "lyx";
break;
}
external::Template::Formats::const_iterator cit =
et.formats.find(format);