]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetinclude.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetinclude.C
index 9cafae74d5e3d669087b366e1fde0499cf1a73b8..5af3b2ccb7d4eb200c42001885ca3059d2effc6f 100644 (file)
@@ -7,8 +7,8 @@
  *
  * Full author contact details are available in file CREDITS
  */
-#include <config.h>
 
+#include <config.h>
 
 #include "insetinclude.h"
 #include "buffer.h"
 #include "funcrequest.h"
 #include "gettext.h"
 #include "LaTeXFeatures.h"
+#include "latexrunparams.h"
+#include "Lsstream.h"
 #include "lyxlex.h"
 #include "lyxrc.h"
+#include "Lsstream.h"
 
 #include "frontends/Dialogs.h"
 #include "frontends/LyXView.h"
@@ -28,7 +31,8 @@
 #include "support/filetools.h"
 #include "support/FileInfo.h"
 #include "support/FileMonitor.h"
-#include "support/lstrings.h"
+#include "support/lstrings.h" // contains
+#include "support/tostr.h"
 
 #include "graphics/PreviewedInset.h"
 #include "graphics/PreviewImage.h"
@@ -37,7 +41,6 @@
 
 #include <cstdlib>
 
-
 using std::ostream;
 using std::endl;
 using std::vector;
@@ -80,12 +83,7 @@ namespace {
 string const uniqueID()
 {
        static unsigned int seed = 1000;
-
-       ostringstream ost;
-       ost << "file" << ++seed;
-
-       // Needed if we use lyxstring.
-       return STRCONV(ost.str());
+       return "file" + tostr(++seed);
 }
 
 } // namespace anon
@@ -115,19 +113,31 @@ InsetInclude::~InsetInclude()
 
 dispatch_result InsetInclude::localDispatch(FuncRequest const & cmd)
 {
-       if (cmd.action != LFUN_INSET_MODIFY)
-               return UNDISPATCHED;
+       switch (cmd.action) {
 
-       InsetInclude::Params p;
-       InsetIncludeMailer::string2params(cmd.argument, p);
-       if (p.cparams.getCmdName().empty())
-               return UNDISPATCHED;
+       case LFUN_INSET_MODIFY: {
+               InsetInclude::Params p;
+               InsetIncludeMailer::string2params(cmd.argument, p);
+               if (!p.cparams.getCmdName().empty()) {
+                       set(p);
+                       params_.masterFilename_ = cmd.view()->buffer()->fileName();
+                       cmd.view()->updateInset(this);
+               }
+               return DISPATCHED;
+       }
 
-       set(p);
-       params_.masterFilename_ = cmd.view()->buffer()->fileName();
+       case LFUN_INSET_DIALOG_UPDATE: 
+               InsetIncludeMailer(*this).updateDialog(cmd.view());
+               return DISPATCHED;
 
-       cmd.view()->updateInset(this, true);
-       return DISPATCHED;
+       case LFUN_MOUSE_RELEASE:
+       case LFUN_INSET_EDIT:
+               InsetIncludeMailer(*this).showDialog(cmd.view());
+               return DISPATCHED;
+
+       default:
+               return UNDISPATCHED;
+       }
 }
 
 
@@ -139,11 +149,8 @@ InsetInclude::Params const & InsetInclude::params() const
 
 bool InsetInclude::Params::operator==(Params const & o) const
 {
-       if (cparams == o.cparams && flag == o.flag &&
-           masterFilename_ == o.masterFilename_)
-               return true;
-
-       return false;
+       return cparams == o.cparams && flag == o.flag &&
+           masterFilename_ == o.masterFilename_;
 }
 
 
@@ -158,7 +165,7 @@ void InsetInclude::set(Params const & p)
        params_ = p;
 
        string command;
+
        switch (params_.flag) {
                case INCLUDE:
                        command="include";
@@ -173,9 +180,9 @@ void InsetInclude::set(Params const & p)
                        command="verbatiminput*";
                        break;
        }
-       params_.cparams.setCmdName(command); 
+
+       params_.cparams.setCmdName(command);
+
        if (preview_->monitoring())
                preview_->stopMonitoring();
 
@@ -193,19 +200,6 @@ Inset * InsetInclude::clone(Buffer const & buffer, bool) const
 }
 
 
-void InsetInclude::edit(BufferView *, int, int, mouse_button::state)
-{
-       InsetIncludeMailer mailer(*this);
-       mailer.showDialog();
-}
-
-
-void InsetInclude::edit(BufferView * bv, bool)
-{
-       edit(bv, 0, 0, mouse_button::none);
-}
-
-
 void InsetInclude::write(Buffer const *, ostream & os) const
 {
        os << "Include " << params_.cparams.getCommand() << '\n'
@@ -258,12 +252,6 @@ string const InsetInclude::getScreenLabel(Buffer const *) const
 }
 
 
-string const InsetInclude::getRelFileBaseName() const
-{
-       return OnlyFilename(ChangeExtension(params_.cparams.getContents(), string()));
-}
-
-
 string const InsetInclude::getFileName() const
 {
        return MakeAbsPath(params_.cparams.getContents(),
@@ -293,12 +281,12 @@ bool InsetInclude::loadIfNeeded() const
        if (!finfo.isOK())
                return false;
 
-       return bufferlist.loadLyXFile(getFileName(), false) != 0;
+       return bufferlist.loadLyXFile(getFileName(), false) != 0;
 }
 
 
 int InsetInclude::latex(Buffer const * buffer, ostream & os,
-                       bool /*fragile*/, bool /*fs*/) const
+                       LatexRunParams const & runparams) const
 {
        string incfile(params_.cparams.getContents());
 
@@ -324,8 +312,7 @@ int InsetInclude::latex(Buffer const * buffer, ostream & os,
                // write it to a file (so far the complete file)
                string writefile = ChangeExtension(getFileName(), ".tex");
 
-               if (!buffer->tmppath.empty()
-                   && !buffer->niceFile) {
+               if (!buffer->tmppath.empty() && !runparams.nice) {
                        incfile = subst(incfile, '/','@');
 #ifdef __EMX__
                        incfile = subst(incfile, ':', '$');
@@ -339,9 +326,8 @@ int InsetInclude::latex(Buffer const * buffer, ostream & os,
 
                tmp->markDepClean(buffer->tmppath);
 
-               tmp->makeLaTeXFile(writefile,
-                                  OnlyPath(getMasterFilename()),
-                                  buffer->niceFile, true);
+               tmp->makeLaTeXFile(writefile, OnlyPath(getMasterFilename()),
+                                  runparams, true);
        }
 
        if (isVerbatim()) {
@@ -538,11 +524,11 @@ int InsetInclude::width(BufferView * bv, LyXFont const & font) const
 
 
 void InsetInclude::draw(BufferView * bv, LyXFont const & font, int y,
-                       float & xx, bool b) const
+                       float & xx) const
 {
        cache(bv);
        if (!preview_->previewReady()) {
-               InsetButton::draw(bv, font, y, xx, b);
+               InsetButton::draw(bv, font, y, xx);
                return;
        }
 
@@ -586,7 +572,9 @@ string const InsetInclude::PreviewImpl::latexString() const
                return string();
 
        ostringstream os;
-       parent().latex(view()->buffer(), os, false, false);
+       LatexRunParams runparams;
+       runparams.flavor = LatexRunParams::LATEX;
+       parent().latex(view()->buffer(), os, runparams);
 
        return STRCONV(os.str());
 }
@@ -605,19 +593,21 @@ void InsetInclude::PreviewImpl::restartLoading()
        lyxerr << "restartLoading()" << std::endl;
        removePreview();
        if (view())
-               view()->updateInset(&parent(), false);
+               view()->updateInset(&parent());
        generatePreview();
 }
 
 
+string const InsetIncludeMailer::name_("include");
+
 InsetIncludeMailer::InsetIncludeMailer(InsetInclude & inset)
-       : name_("include"), inset_(inset)
+       : inset_(inset)
 {}
 
 
 string const InsetIncludeMailer::inset2string() const
 {
-       return params2string(name(), inset_.params());
+       return params2string(inset_.params());
 }
 
 
@@ -626,38 +616,45 @@ void InsetIncludeMailer::string2params(string const & in,
 {
        params = InsetInclude::Params();
 
-       string name;
-       string body = split(in, name, ' ');
-
-       if (name != "include" || body.empty())
+       if (in.empty())
                return;
+       
+       istringstream data(STRCONV(in));
+       LyXLex lex(0,0);
+       lex.setStream(data);
+
+       if (lex.isOK()) {
+               lex.next();
+               string const token = lex.getString();
+               if (token != name_)
+                       return;
+       }
 
        // This is part of the inset proper that is usually swallowed
        // by Buffer::readInset
-       body = split(body, name, ' ');
-       if (name != "Include")
-               return;
-
-       istringstream data(body);
-       LyXLex lex(0,0);
-       lex.setStream(data);
+       if (lex.isOK()) {
+               lex.next();
+               string const token = lex.getString();
+               if (token != "Include")
+                       return;
+       }
 
-       InsetInclude inset(params);     
-       inset.read(0, lex);
-       params = inset.params();
+       if (lex.isOK()) {
+               InsetInclude inset(params);
+               inset.read(0, lex);
+               params = inset.params();
+       }
 }
 
 
 string const
-InsetIncludeMailer::params2string(string const & name,
-                                 InsetInclude::Params const & params)
+InsetIncludeMailer::params2string(InsetInclude::Params const & params)
 {
        InsetInclude inset(params);
        inset.set(params);
        ostringstream data;
-       data << name << ' ';
+       data << name_ << ' ';
        inset.write(0, data);
        data << "\\end_inset\n";
-
-       return data.str();
+       return STRCONV(data.str());
 }