X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetinclude.C;h=2e3e062714b477cf8c439775bbf551c8d4a99326;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=9c1652f81ad8e1caca6dd8826eaca331bcd0c9be;hpb=d1182f17daa1a164d9527ccbe6500840d7ac6bc8;p=lyx.git diff --git a/src/insets/insetinclude.C b/src/insets/insetinclude.C index 9c1652f81a..2e3e062714 100644 --- a/src/insets/insetinclude.C +++ b/src/insets/insetinclude.C @@ -1,26 +1,28 @@ - #include -#include - #ifdef __GNUG__ #pragma implementation #endif -#include "frontends/Dialogs.h" - #include "insetinclude.h" #include "buffer.h" #include "bufferlist.h" #include "BufferView.h" #include "debug.h" -#include "support/filetools.h" #include "lyxrc.h" #include "LyXView.h" #include "LaTeXFeatures.h" #include "gettext.h" +#include "lyxtextclasslist.h" + +#include "frontends/Dialogs.h" + +#include "support/filetools.h" #include "support/FileInfo.h" -#include "layout.h" +#include "support/lstrings.h" + +#include + using std::ostream; using std::endl; @@ -35,7 +37,7 @@ string const unique_id() { static unsigned int seed = 1000; - std::ostringstream ost; + ostringstream ost; ost << "file" << ++seed; // Needed if we use lyxstring. @@ -51,10 +53,10 @@ InsetInclude::InsetInclude(Params const & p) InsetInclude::InsetInclude(InsetCommandParams const & p, Buffer const & b) + : include_label(unique_id()) { params_.cparams = p; params_.masterFilename_ = b.fileName(); - include_label = unique_id(); } @@ -112,7 +114,7 @@ void InsetInclude::set(Params const & p) } -Inset * InsetInclude::Clone(Buffer const & buffer) const +Inset * InsetInclude::clone(Buffer const & buffer, bool) const { Params p(params_); p.masterFilename_ = buffer.fileName(); @@ -121,21 +123,27 @@ Inset * InsetInclude::Clone(Buffer const & buffer) const } -void InsetInclude::Edit(BufferView * bv, int, int, unsigned int) +void InsetInclude::edit(BufferView * bv, int, int, unsigned int) { bv->owner()->getDialogs()->showInclude(this); } -void InsetInclude::Write(Buffer const *, ostream & os) const +void InsetInclude::edit(BufferView * bv, bool) +{ + edit(bv, 0, 0, 0); +} + + +void InsetInclude::write(Buffer const *, ostream & os) const { os << "Include " << params_.cparams.getCommand() << "\n"; } -void InsetInclude::Read(Buffer const *, LyXLex & lex) +void InsetInclude::read(Buffer const *, LyXLex & lex) { - params_.cparams.Read(lex); + params_.cparams.read(lex); if (params_.cparams.getCmdName() == "include") params_.flag = INCLUDE; @@ -156,7 +164,7 @@ bool InsetInclude::display() const } -string const InsetInclude::getScreenLabel() const +string const InsetInclude::getScreenLabel(Buffer const *) const { string temp; @@ -210,12 +218,14 @@ bool InsetInclude::loadIfNeeded() const // the readonly flag can/will be wrong, not anymore I think. FileInfo finfo(getFileName()); - bool const ro = !finfo.writable(); - return bufferlist.readFile(getFileName(), ro) != 0; + if (!finfo.isOK()) + return false; + + return bufferlist.readFile(getFileName(), !finfo.writable()) != 0; } -int InsetInclude::Latex(Buffer const * buffer, ostream & os, +int InsetInclude::latex(Buffer const * buffer, ostream & os, bool /*fragile*/, bool /*fs*/) const { string incfile(params_.cparams.getContents()); @@ -285,7 +295,7 @@ int InsetInclude::Latex(Buffer const * buffer, ostream & os, } -int InsetInclude::Ascii(Buffer const *, std::ostream & os, int) const +int InsetInclude::ascii(Buffer const *, ostream & os, int) const { if (isVerbatim()) os << GetFileContents(getFileName()); @@ -293,7 +303,7 @@ int InsetInclude::Ascii(Buffer const *, std::ostream & os, int) const } -int InsetInclude::Linuxdoc(Buffer const * buffer, ostream & os) const +int InsetInclude::linuxdoc(Buffer const * buffer, ostream & os) const { string incfile(params_.cparams.getContents()); @@ -306,7 +316,7 @@ int InsetInclude::Linuxdoc(Buffer const * buffer, ostream & os) const // write it to a file (so far the complete file) string writefile = ChangeExtension(getFileName(), ".sgml"); - if (!buffer->tmppath.empty() && !buffer->niceFile) { + if (!buffer->tmppath.empty() && buffer->niceFile) { incfile = subst(incfile, '/','@'); writefile = AddName(buffer->tmppath, incfile); } else @@ -322,9 +332,9 @@ int InsetInclude::Linuxdoc(Buffer const * buffer, ostream & os) const } if (isVerbatim()) { - os << "" - << ""; + os << ""; } else os << '&' << include_label << ';'; @@ -332,7 +342,7 @@ int InsetInclude::Linuxdoc(Buffer const * buffer, ostream & os) const } -int InsetInclude::DocBook(Buffer const * buffer, ostream & os) const +int InsetInclude::docbook(Buffer const * buffer, ostream & os) const { string incfile(params_.cparams.getContents()); @@ -345,7 +355,7 @@ int InsetInclude::DocBook(Buffer const * buffer, ostream & os) const // write it to a file (so far the complete file) string writefile = ChangeExtension(getFileName(), ".sgml"); - if (!buffer->tmppath.empty() && !buffer->niceFile) { + if (!buffer->tmppath.empty() && buffer->niceFile) { incfile = subst(incfile, '/','@'); writefile = AddName(buffer->tmppath, incfile); } else @@ -360,9 +370,9 @@ int InsetInclude::DocBook(Buffer const * buffer, ostream & os) const } if (isVerbatim()) { - os << "" - << ""; + os << ""; } else os << '&' << include_label << ';'; @@ -370,7 +380,7 @@ int InsetInclude::DocBook(Buffer const * buffer, ostream & os) const } -void InsetInclude::Validate(LaTeXFeatures & features) const +void InsetInclude::validate(LaTeXFeatures & features) const { string incfile(params_.cparams.getContents()); @@ -378,7 +388,7 @@ void InsetInclude::Validate(LaTeXFeatures & features) const Buffer const * const b = bufferlist.getBuffer(getMasterFilename()); - if (b && !b->tmppath.empty() && b->niceFile) { + if (b && !b->tmppath.empty() && b->niceFile && !isVerbatim()) { incfile = subst(incfile, '/','@'); writefile = AddName(b->tmppath, incfile); } else @@ -387,10 +397,10 @@ void InsetInclude::Validate(LaTeXFeatures & features) const if (IsLyXFilename(getFileName())) writefile = ChangeExtension(writefile, ".sgml"); - features.IncludedFiles[include_label] = writefile; + features.includeFile(include_label, writefile); if (isVerbatim()) - features.verbatim = true; + features.require("verbatim"); // Here we must do the fun stuff... // Load the file in the include if it needs