2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetinclude.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-25 14:26:13 +00:00
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2003-05-13 09:48:57 +00:00
|
|
|
|
#include <config.h>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#include "insetinclude.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "buffer.h"
|
2003-06-20 12:46:28 +00:00
|
|
|
|
#include "buffer_funcs.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "bufferlist.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "bufferparams.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
|
#include "BufferView.h"
|
2004-01-20 14:25:24 +00:00
|
|
|
|
#include "cursor.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
|
#include "debug.h"
|
2003-10-29 10:47:21 +00:00
|
|
|
|
#include "dispatchresult.h"
|
2004-06-01 13:39:33 +00:00
|
|
|
|
#include "exporter.h"
|
2003-03-05 14:59:37 +00:00
|
|
|
|
#include "funcrequest.h"
|
2005-04-22 08:57:22 +00:00
|
|
|
|
#include "FuncStatus.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "gettext.h"
|
2003-03-05 14:59:37 +00:00
|
|
|
|
#include "LaTeXFeatures.h"
|
2003-10-14 21:30:23 +00:00
|
|
|
|
#include "lyx_main.h"
|
2004-04-19 13:31:17 +00:00
|
|
|
|
#include "lyxrc.h"
|
2003-03-05 14:59:37 +00:00
|
|
|
|
#include "lyxlex.h"
|
2003-05-30 06:48:24 +00:00
|
|
|
|
#include "metricsinfo.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
|
#include "outputparams.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
2004-02-25 12:00:53 +00:00
|
|
|
|
#include "frontends/Alert.h"
|
2003-10-12 18:54:12 +00:00
|
|
|
|
#include "frontends/LyXView.h"
|
2002-08-01 17:28:59 +00:00
|
|
|
|
#include "frontends/Painter.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
2004-04-19 13:05:36 +00:00
|
|
|
|
#include "graphics/PreviewImage.h"
|
2003-10-10 21:08:55 +00:00
|
|
|
|
#include "graphics/PreviewLoader.h"
|
|
|
|
|
|
|
|
|
|
#include "insets/render_preview.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
|
|
2006-09-10 09:28:00 +00:00
|
|
|
|
#include "support/lyxalgo.h"
|
2004-02-25 12:00:53 +00:00
|
|
|
|
#include "support/filename.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
|
#include "support/filetools.h"
|
2003-05-13 14:36:24 +00:00
|
|
|
|
#include "support/lstrings.h" // contains
|
2004-03-25 10:12:44 +00:00
|
|
|
|
#include "support/lyxlib.h"
|
2005-01-06 16:39:35 +00:00
|
|
|
|
#include "support/convert.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
2002-08-06 14:02:59 +00:00
|
|
|
|
#include <boost/bind.hpp>
|
2005-01-31 10:42:26 +00:00
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
2002-08-06 14:02:59 +00:00
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
|
#include "support/std_ostream.h"
|
2004-07-24 10:55:30 +00:00
|
|
|
|
|
|
|
|
|
#include <sstream>
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
2006-09-09 15:27:44 +00:00
|
|
|
|
using lyx::docstring;
|
2006-04-08 22:31:11 +00:00
|
|
|
|
using lyx::support::addName;
|
|
|
|
|
using lyx::support::absolutePath;
|
2004-02-25 12:00:53 +00:00
|
|
|
|
using lyx::support::bformat;
|
2006-04-08 22:31:11 +00:00
|
|
|
|
using lyx::support::changeExtension;
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::contains;
|
2004-03-25 10:12:44 +00:00
|
|
|
|
using lyx::support::copy;
|
2004-02-25 12:00:53 +00:00
|
|
|
|
using lyx::support::FileName;
|
2006-04-08 22:31:11 +00:00
|
|
|
|
using lyx::support::getFileContents;
|
2006-04-08 09:09:57 +00:00
|
|
|
|
using lyx::support::isFileReadable;
|
|
|
|
|
using lyx::support::isLyXFilename;
|
2005-04-18 17:43:11 +00:00
|
|
|
|
using lyx::support::latex_path;
|
2006-04-08 22:31:11 +00:00
|
|
|
|
using lyx::support::makeAbsPath;
|
|
|
|
|
using lyx::support::makeDisplayPath;
|
|
|
|
|
using lyx::support::makeRelPath;
|
|
|
|
|
using lyx::support::onlyFilename;
|
|
|
|
|
using lyx::support::onlyPath;
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::subst;
|
2004-03-25 10:12:44 +00:00
|
|
|
|
using lyx::support::sum;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
|
using std::endl;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2003-07-25 17:11:25 +00:00
|
|
|
|
using std::auto_ptr;
|
2003-09-05 18:02:24 +00:00
|
|
|
|
using std::istringstream;
|
2003-09-05 09:01:27 +00:00
|
|
|
|
using std::ostream;
|
2003-09-05 18:02:24 +00:00
|
|
|
|
using std::ostringstream;
|
2003-07-25 17:11:25 +00:00
|
|
|
|
|
2005-01-31 10:42:26 +00:00
|
|
|
|
namespace fs = boost::filesystem;
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
extern BufferList bufferlist;
|
2002-08-02 16:30:58 +00:00
|
|
|
|
|
2002-08-01 17:28:59 +00:00
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
namespace {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2002-06-05 15:07:44 +00:00
|
|
|
|
string const uniqueID()
|
2001-03-23 17:09:34 +00:00
|
|
|
|
{
|
2000-09-26 13:54:57 +00:00
|
|
|
|
static unsigned int seed = 1000;
|
2005-01-06 15:40:49 +00:00
|
|
|
|
return "file" + convert<string>(++seed);
|
2000-07-02 09:52:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
} // namespace anon
|
|
|
|
|
|
2000-07-02 09:52:44 +00:00
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
InsetInclude::InsetInclude(InsetCommandParams const & p)
|
2002-08-01 17:28:59 +00:00
|
|
|
|
: params_(p), include_label(uniqueID()),
|
2004-04-13 17:25:23 +00:00
|
|
|
|
preview_(new RenderMonitoredPreview(this)),
|
2003-06-12 08:52:36 +00:00
|
|
|
|
set_label_(false)
|
2003-10-09 19:27:07 +00:00
|
|
|
|
{
|
2003-10-10 21:08:55 +00:00
|
|
|
|
preview_->fileChanged(boost::bind(&InsetInclude::fileChanged, this));
|
2003-10-09 19:27:07 +00:00
|
|
|
|
}
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
|
|
|
|
|
2003-06-12 08:52:36 +00:00
|
|
|
|
InsetInclude::InsetInclude(InsetInclude const & other)
|
2003-07-25 21:20:24 +00:00
|
|
|
|
: InsetOld(other),
|
2003-06-12 08:52:36 +00:00
|
|
|
|
params_(other.params_),
|
|
|
|
|
include_label(other.include_label),
|
2004-04-13 17:25:23 +00:00
|
|
|
|
preview_(new RenderMonitoredPreview(this)),
|
2005-03-21 15:18:24 +00:00
|
|
|
|
set_label_(false)
|
2003-10-09 19:27:07 +00:00
|
|
|
|
{
|
2003-10-10 21:08:55 +00:00
|
|
|
|
preview_->fileChanged(boost::bind(&InsetInclude::fileChanged, this));
|
2003-10-09 19:27:07 +00:00
|
|
|
|
}
|
2003-06-12 08:52:36 +00:00
|
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
InsetInclude::~InsetInclude()
|
|
|
|
|
{
|
2003-11-28 17:13:41 +00:00
|
|
|
|
InsetIncludeMailer(*this).hideDialog();
|
2003-03-05 14:59:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-11-24 21:58:42 +00:00
|
|
|
|
void InsetInclude::doDispatch(LCursor & cur, FuncRequest & cmd)
|
2003-03-05 14:59:37 +00:00
|
|
|
|
{
|
2003-03-07 15:58:02 +00:00
|
|
|
|
switch (cmd.action) {
|
2003-05-16 07:44:00 +00:00
|
|
|
|
|
2003-03-07 15:58:02 +00:00
|
|
|
|
case LFUN_INSET_MODIFY: {
|
2003-09-19 10:16:33 +00:00
|
|
|
|
InsetCommandParams p;
|
2006-09-01 15:41:38 +00:00
|
|
|
|
InsetIncludeMailer::string2params(lyx::to_utf8(cmd.argument()), p);
|
2006-04-15 11:46:17 +00:00
|
|
|
|
if (!p.getCmdName().empty()) {
|
2004-04-08 15:03:33 +00:00
|
|
|
|
set(p, cur.buffer());
|
2006-04-15 11:46:17 +00:00
|
|
|
|
cur.buffer().updateBibfilesCache();
|
|
|
|
|
} else
|
2005-05-09 17:29:22 +00:00
|
|
|
|
cur.noUpdate();
|
2004-02-16 11:58:51 +00:00
|
|
|
|
break;
|
2003-03-07 15:58:02 +00:00
|
|
|
|
}
|
2003-03-05 14:59:37 +00:00
|
|
|
|
|
2003-05-26 09:13:55 +00:00
|
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
2004-01-20 14:25:24 +00:00
|
|
|
|
InsetIncludeMailer(*this).updateDialog(&cur.bv());
|
2004-02-16 11:58:51 +00:00
|
|
|
|
break;
|
2003-03-07 15:58:02 +00:00
|
|
|
|
|
2003-03-09 09:38:47 +00:00
|
|
|
|
case LFUN_MOUSE_RELEASE:
|
2004-01-20 14:25:24 +00:00
|
|
|
|
InsetIncludeMailer(*this).showDialog(&cur.bv());
|
2004-02-16 11:58:51 +00:00
|
|
|
|
break;
|
2003-03-09 09:38:47 +00:00
|
|
|
|
|
2003-03-07 15:58:02 +00:00
|
|
|
|
default:
|
2004-11-25 19:13:07 +00:00
|
|
|
|
InsetBase::doDispatch(cur, cmd);
|
2004-02-16 11:58:51 +00:00
|
|
|
|
break;
|
2003-03-07 15:58:02 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
2005-04-22 08:57:22 +00:00
|
|
|
|
bool InsetInclude::getStatus(LCursor & cur, FuncRequest const & cmd,
|
|
|
|
|
FuncStatus & flag) const
|
|
|
|
|
{
|
|
|
|
|
switch (cmd.action) {
|
|
|
|
|
|
|
|
|
|
case LFUN_INSET_MODIFY:
|
|
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
|
|
|
|
flag.enabled(true);
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return InsetBase::getStatus(cur, cmd, flag);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
InsetCommandParams const & InsetInclude::params() const
|
2001-03-14 10:57:39 +00:00
|
|
|
|
{
|
|
|
|
|
return params_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-18 17:22:36 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
/// the type of inclusion
|
|
|
|
|
enum Types {
|
|
|
|
|
INCLUDE = 0,
|
|
|
|
|
VERB = 1,
|
|
|
|
|
INPUT = 2,
|
|
|
|
|
VERBAST = 3
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
Types type(InsetCommandParams const & params)
|
2001-03-14 10:57:39 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
string const command_name = params.getCmdName();
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
2003-09-18 17:22:36 +00:00
|
|
|
|
if (command_name == "input")
|
|
|
|
|
return INPUT;
|
|
|
|
|
if (command_name == "verbatiminput")
|
|
|
|
|
return VERB;
|
|
|
|
|
if (command_name == "verbatiminput*")
|
|
|
|
|
return VERBAST;
|
|
|
|
|
return INCLUDE;
|
|
|
|
|
}
|
2003-10-06 15:43:21 +00:00
|
|
|
|
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
bool isVerbatim(InsetCommandParams const & params)
|
2001-03-23 17:09:34 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
string const command_name = params.getCmdName();
|
2003-10-13 01:53:45 +00:00
|
|
|
|
return command_name == "verbatiminput" ||
|
2003-09-18 17:22:36 +00:00
|
|
|
|
command_name == "verbatiminput*";
|
2001-03-23 17:09:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
|
|
|
|
|
|
string const masterFilename(Buffer const & buffer)
|
2004-03-25 10:12:44 +00:00
|
|
|
|
{
|
|
|
|
|
return buffer.getMasterBuffer()->fileName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string const parentFilename(Buffer const & buffer)
|
2003-10-10 21:08:55 +00:00
|
|
|
|
{
|
|
|
|
|
return buffer.fileName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string const includedFilename(Buffer const & buffer,
|
|
|
|
|
InsetCommandParams const & params)
|
|
|
|
|
{
|
2006-04-08 22:31:11 +00:00
|
|
|
|
return makeAbsPath(params.getContents(),
|
|
|
|
|
onlyPath(parentFilename(buffer)));
|
2003-10-10 21:08:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-22 22:26:47 +00:00
|
|
|
|
void add_preview(RenderMonitoredPreview &, InsetInclude const &, Buffer const &);
|
2003-10-10 21:08:55 +00:00
|
|
|
|
|
2003-09-18 17:22:36 +00:00
|
|
|
|
} // namespace anon
|
|
|
|
|
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
void InsetInclude::set(InsetCommandParams const & p, Buffer const & buffer)
|
2001-03-23 17:09:34 +00:00
|
|
|
|
{
|
|
|
|
|
params_ = p;
|
2003-09-19 10:16:33 +00:00
|
|
|
|
set_label_ = false;
|
2001-03-23 17:09:34 +00:00
|
|
|
|
|
2002-08-06 14:02:59 +00:00
|
|
|
|
if (preview_->monitoring())
|
|
|
|
|
preview_->stopMonitoring();
|
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
|
if (type(params_) == INPUT)
|
2003-10-22 22:26:47 +00:00
|
|
|
|
add_preview(*preview_, *this, buffer);
|
2001-03-14 10:57:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
|
auto_ptr<InsetBase> InsetInclude::doClone() const
|
2001-03-14 10:57:39 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new InsetInclude(*this));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void InsetInclude::write(Buffer const &, ostream & os) const
|
|
|
|
|
{
|
|
|
|
|
write(os);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetInclude::write(ostream & os) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
os << "Include " << params_.getCommand() << '\n'
|
2005-01-06 15:40:49 +00:00
|
|
|
|
<< "preview " << convert<string>(params_.preview()) << '\n';
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void InsetInclude::read(Buffer const &, LyXLex & lex)
|
|
|
|
|
{
|
|
|
|
|
read(lex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetInclude::read(LyXLex & lex)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
params_.read(lex);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
string const InsetInclude::getScreenLabel(Buffer const &) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2006-09-09 15:27:44 +00:00
|
|
|
|
docstring temp;
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
2003-09-18 17:22:36 +00:00
|
|
|
|
switch (type(params_)) {
|
2006-09-09 15:27:44 +00:00
|
|
|
|
case INPUT:
|
|
|
|
|
temp += _("Input");
|
|
|
|
|
break;
|
|
|
|
|
case VERB:
|
|
|
|
|
temp += _("Verbatim Input");
|
|
|
|
|
break;
|
|
|
|
|
case VERBAST:
|
|
|
|
|
temp += _("Verbatim Input*");
|
|
|
|
|
break;
|
|
|
|
|
case INCLUDE:
|
|
|
|
|
temp += _("Include");
|
|
|
|
|
break;
|
2001-03-14 10:57:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-09-09 15:27:44 +00:00
|
|
|
|
temp += lyx::from_ascii(": ");
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
if (params_.getContents().empty())
|
2006-09-09 15:27:44 +00:00
|
|
|
|
temp += lyx::from_ascii("???");
|
2001-03-14 10:57:39 +00:00
|
|
|
|
else
|
2006-09-09 15:27:44 +00:00
|
|
|
|
temp += lyx::from_ascii(onlyFilename(params_.getContents()));
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
2006-09-09 15:27:44 +00:00
|
|
|
|
// FIXME UNICODE
|
|
|
|
|
return lyx::to_utf8(temp);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2006-05-19 07:21:43 +00:00
|
|
|
|
/// return the child buffer if the file is a LyX doc and is loaded
|
|
|
|
|
Buffer * getChildBuffer(Buffer const & buffer, InsetCommandParams const & params)
|
|
|
|
|
{
|
|
|
|
|
if (isVerbatim(params))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
string const included_file = includedFilename(buffer, params);
|
|
|
|
|
if (!isLyXFilename(included_file))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return bufferlist.getBuffer(included_file);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
/// return true if the file is or got loaded.
|
|
|
|
|
bool loadIfNeeded(Buffer const & buffer, InsetCommandParams const & params)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
if (isVerbatim(params))
|
2001-03-14 10:57:39 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
string const included_file = includedFilename(buffer, params);
|
2006-04-08 09:09:57 +00:00
|
|
|
|
if (!isLyXFilename(included_file))
|
2001-03-14 10:57:39 +00:00
|
|
|
|
return false;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2004-03-25 10:12:44 +00:00
|
|
|
|
Buffer * buf = bufferlist.getBuffer(included_file);
|
|
|
|
|
if (!buf) {
|
|
|
|
|
// the readonly flag can/will be wrong, not anymore I think.
|
2005-01-31 10:42:26 +00:00
|
|
|
|
if (!fs::exists(included_file))
|
2004-03-25 10:12:44 +00:00
|
|
|
|
return false;
|
|
|
|
|
buf = bufferlist.newBuffer(included_file);
|
|
|
|
|
if (!loadLyXFile(buf, included_file))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (buf)
|
|
|
|
|
buf->setParentName(parentFilename(buffer));
|
|
|
|
|
return buf != 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int InsetInclude::latex(Buffer const & buffer, ostream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const & runparams) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
string incfile(params_.getContents());
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2000-03-02 02:19:43 +00:00
|
|
|
|
// Do nothing if no file name has been specified
|
2000-09-26 13:54:57 +00:00
|
|
|
|
if (incfile.empty())
|
2000-03-02 02:19:43 +00:00
|
|
|
|
return 0;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
string const included_file = includedFilename(buffer, params_);
|
2004-03-25 10:12:44 +00:00
|
|
|
|
Buffer const * const m_buffer = buffer.getMasterBuffer();
|
|
|
|
|
|
|
|
|
|
// if incfile is relative, make it relative to the master
|
|
|
|
|
// buffer directory.
|
2006-04-08 22:31:11 +00:00
|
|
|
|
if (!absolutePath(incfile)) {
|
|
|
|
|
incfile = makeRelPath(included_file,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
m_buffer->filePath());
|
2004-03-25 10:12:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// write it to a file (so far the complete file)
|
2006-04-08 22:31:11 +00:00
|
|
|
|
string const exportfile = changeExtension(incfile, ".tex");
|
|
|
|
|
string const mangled = FileName(changeExtension(included_file,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
".tex")).mangledFilename();
|
2006-04-08 22:31:11 +00:00
|
|
|
|
string const writefile = makeAbsPath(mangled, m_buffer->temppath());
|
2004-03-25 10:12:44 +00:00
|
|
|
|
|
2004-06-01 13:39:33 +00:00
|
|
|
|
if (!runparams.nice)
|
|
|
|
|
incfile = mangled;
|
2004-03-25 10:12:44 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "incfile:" << incfile << endl;
|
2004-06-01 13:39:33 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "exportfile:" << exportfile << endl;
|
2004-03-25 10:12:44 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "writefile:" << writefile << endl;
|
2003-09-19 10:16:33 +00:00
|
|
|
|
|
2006-04-10 16:27:59 +00:00
|
|
|
|
if (runparams.inComment || runparams.dryrun)
|
2006-01-09 21:00:24 +00:00
|
|
|
|
// Don't try to load or copy the file
|
|
|
|
|
;
|
|
|
|
|
else if (loadIfNeeded(buffer, params_)) {
|
2003-09-19 10:16:33 +00:00
|
|
|
|
Buffer * tmp = bufferlist.getBuffer(included_file);
|
2000-03-02 02:19:43 +00:00
|
|
|
|
|
2004-03-25 10:12:44 +00:00
|
|
|
|
if (tmp->params().textclass != m_buffer->params().textclass) {
|
2006-09-09 15:27:44 +00:00
|
|
|
|
// FIXME UNICODE
|
|
|
|
|
string text = bformat(lyx::to_utf8(_("Included file `%1$s'\n"
|
2006-04-05 23:56:29 +00:00
|
|
|
|
"has textclass `%2$s'\n"
|
2006-09-09 15:27:44 +00:00
|
|
|
|
"while parent file has textclass `%3$s'.")),
|
2006-04-08 22:31:11 +00:00
|
|
|
|
makeDisplayPath(included_file),
|
2006-04-05 23:56:29 +00:00
|
|
|
|
tmp->params().getLyXTextClass().name(),
|
|
|
|
|
m_buffer->params().getLyXTextClass().name());
|
2006-09-09 15:27:44 +00:00
|
|
|
|
Alert::warning(lyx::to_utf8(_("Different textclasses")), text);
|
2001-03-13 13:40:08 +00:00
|
|
|
|
//return 0;
|
2000-03-02 02:19:43 +00:00
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2004-03-25 10:12:44 +00:00
|
|
|
|
tmp->markDepClean(m_buffer->temppath());
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2004-03-25 10:12:44 +00:00
|
|
|
|
#ifdef WITH_WARNINGS
|
2006-01-09 21:00:24 +00:00
|
|
|
|
#warning handle non existing files
|
2004-03-25 10:12:44 +00:00
|
|
|
|
#warning Second argument is irrelevant!
|
|
|
|
|
// since only_body is true, makeLaTeXFile will not look at second
|
|
|
|
|
// argument. Should we set it to string(), or should makeLaTeXFile
|
|
|
|
|
// make use of it somehow? (JMarc 20031002)
|
|
|
|
|
#endif
|
2003-09-19 10:16:33 +00:00
|
|
|
|
tmp->makeLaTeXFile(writefile,
|
2006-04-08 22:31:11 +00:00
|
|
|
|
onlyPath(masterFilename(buffer)),
|
2003-07-26 21:37:10 +00:00
|
|
|
|
runparams, false);
|
2004-06-01 13:39:33 +00:00
|
|
|
|
} else {
|
2004-03-25 10:12:44 +00:00
|
|
|
|
// Copy the file to the temp dir, so that .aux files etc.
|
|
|
|
|
// are not created in the original dir. Files included by
|
|
|
|
|
// this file will be found via input@path, see ../buffer.C.
|
|
|
|
|
unsigned long const checksum_in = sum(included_file);
|
|
|
|
|
unsigned long const checksum_out = sum(writefile);
|
|
|
|
|
|
|
|
|
|
if (checksum_in != checksum_out) {
|
|
|
|
|
if (!copy(included_file, writefile)) {
|
2006-09-09 15:27:44 +00:00
|
|
|
|
// FIXME UNICODE
|
2004-03-25 10:12:44 +00:00
|
|
|
|
lyxerr[Debug::LATEX]
|
2006-09-09 15:27:44 +00:00
|
|
|
|
<< bformat(lyx::to_utf8(_("Could not copy the file\n%1$s\n"
|
|
|
|
|
"into the temporary directory.")),
|
2006-04-05 23:56:29 +00:00
|
|
|
|
included_file)
|
2004-03-25 10:12:44 +00:00
|
|
|
|
<< endl;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-03-14 10:57:39 +00:00
|
|
|
|
}
|
2000-03-02 02:19:43 +00:00
|
|
|
|
|
2006-03-28 18:49:46 +00:00
|
|
|
|
string const tex_format = (runparams.flavor == OutputParams::LATEX) ?
|
|
|
|
|
"latex" : "pdflatex";
|
2003-09-18 17:22:36 +00:00
|
|
|
|
if (isVerbatim(params_)) {
|
2005-04-18 17:43:11 +00:00
|
|
|
|
incfile = latex_path(incfile);
|
2003-09-19 10:16:33 +00:00
|
|
|
|
os << '\\' << params_.getCmdName() << '{' << incfile << '}';
|
2003-09-18 17:22:36 +00:00
|
|
|
|
} else if (type(params_) == INPUT) {
|
2006-03-28 18:49:46 +00:00
|
|
|
|
runparams.exportdata->addExternalFile(tex_format, writefile,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
exportfile);
|
2004-06-01 13:39:33 +00:00
|
|
|
|
|
2000-03-02 02:19:43 +00:00
|
|
|
|
// \input wants file with extension (default is .tex)
|
2006-04-08 09:09:57 +00:00
|
|
|
|
if (!isLyXFilename(included_file)) {
|
2005-04-18 17:43:11 +00:00
|
|
|
|
incfile = latex_path(incfile);
|
2003-09-19 10:16:33 +00:00
|
|
|
|
os << '\\' << params_.getCmdName() << '{' << incfile << '}';
|
2000-03-02 02:19:43 +00:00
|
|
|
|
} else {
|
2006-04-08 22:31:11 +00:00
|
|
|
|
incfile = changeExtension(incfile, ".tex");
|
2005-04-18 17:43:11 +00:00
|
|
|
|
incfile = latex_path(incfile);
|
2003-09-19 10:16:33 +00:00
|
|
|
|
os << '\\' << params_.getCmdName() << '{'
|
2005-04-18 17:43:11 +00:00
|
|
|
|
<< incfile
|
2000-03-02 02:19:43 +00:00
|
|
|
|
<< '}';
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2006-03-28 18:49:46 +00:00
|
|
|
|
runparams.exportdata->addExternalFile(tex_format, writefile,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
exportfile);
|
2004-06-01 13:39:33 +00:00
|
|
|
|
|
2000-03-02 02:19:43 +00:00
|
|
|
|
// \include don't want extension and demands that the
|
|
|
|
|
// file really have .tex
|
2006-04-08 22:31:11 +00:00
|
|
|
|
incfile = changeExtension(incfile, string());
|
2005-04-18 17:43:11 +00:00
|
|
|
|
incfile = latex_path(incfile);
|
2003-09-19 10:16:33 +00:00
|
|
|
|
os << '\\' << params_.getCmdName() << '{'
|
2005-04-18 17:43:11 +00:00
|
|
|
|
<< incfile
|
2000-03-02 02:19:43 +00:00
|
|
|
|
<< '}';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
int InsetInclude::plaintext(Buffer const & buffer, ostream & os,
|
|
|
|
|
OutputParams const &) const
|
2000-12-28 16:22:28 +00:00
|
|
|
|
{
|
2006-09-10 09:28:00 +00:00
|
|
|
|
if (isVerbatim(params_)) {
|
|
|
|
|
string const str =
|
|
|
|
|
getFileContents(includedFilename(buffer, params_));
|
|
|
|
|
os << str;
|
|
|
|
|
// Return how many newlines we issued.
|
|
|
|
|
return int(lyx::count(str.begin(), str.end(), '\n'));
|
|
|
|
|
}
|
2000-12-28 16:22:28 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int InsetInclude::docbook(Buffer const & buffer, ostream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const & runparams) const
|
2000-07-01 12:54:45 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
string incfile(params_.getContents());
|
2000-09-26 13:54:57 +00:00
|
|
|
|
|
2000-07-01 12:54:45 +00:00
|
|
|
|
// Do nothing if no file name has been specified
|
2000-09-26 13:54:57 +00:00
|
|
|
|
if (incfile.empty())
|
2000-07-01 12:54:45 +00:00
|
|
|
|
return 0;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
string const included_file = includedFilename(buffer, params_);
|
|
|
|
|
|
2004-06-01 13:39:33 +00:00
|
|
|
|
// write it to a file (so far the complete file)
|
2006-04-08 22:31:11 +00:00
|
|
|
|
string const exportfile = changeExtension(incfile, ".sgml");
|
|
|
|
|
string writefile = changeExtension(included_file, ".sgml");
|
2004-06-01 13:39:33 +00:00
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
if (loadIfNeeded(buffer, params_)) {
|
|
|
|
|
Buffer * tmp = bufferlist.getBuffer(included_file);
|
2000-07-01 12:54:45 +00:00
|
|
|
|
|
2004-06-01 13:39:33 +00:00
|
|
|
|
string const mangled = FileName(writefile).mangledFilename();
|
2006-04-08 22:31:11 +00:00
|
|
|
|
writefile = makeAbsPath(mangled,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
buffer.getMasterBuffer()->temppath());
|
2004-06-01 13:39:33 +00:00
|
|
|
|
if (!runparams.nice)
|
|
|
|
|
incfile = mangled;
|
2000-07-01 12:54:45 +00:00
|
|
|
|
|
|
|
|
|
lyxerr[Debug::LATEX] << "incfile:" << incfile << endl;
|
2004-06-01 13:39:33 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "exportfile:" << exportfile << endl;
|
2000-07-01 12:54:45 +00:00
|
|
|
|
lyxerr[Debug::LATEX] << "writefile:" << writefile << endl;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2004-06-01 13:39:33 +00:00
|
|
|
|
tmp->makeDocBookFile(writefile, runparams, true);
|
2001-03-14 10:57:39 +00:00
|
|
|
|
}
|
2000-07-01 12:54:45 +00:00
|
|
|
|
|
2004-06-01 13:39:33 +00:00
|
|
|
|
runparams.exportdata->addExternalFile("docbook", writefile,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
exportfile);
|
2004-06-01 13:39:33 +00:00
|
|
|
|
runparams.exportdata->addExternalFile("docbook-xml", writefile,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
exportfile);
|
2004-06-01 13:39:33 +00:00
|
|
|
|
|
2003-09-18 17:22:36 +00:00
|
|
|
|
if (isVerbatim(params_)) {
|
2002-01-16 12:04:16 +00:00
|
|
|
|
os << "<inlinegraphic fileref=\""
|
|
|
|
|
<< '&' << include_label << ';'
|
2002-01-16 12:54:52 +00:00
|
|
|
|
<< "\" format=\"linespecific\">";
|
2001-03-14 10:57:39 +00:00
|
|
|
|
} else
|
2000-07-01 12:54:45 +00:00
|
|
|
|
os << '&' << include_label << ';';
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2000-07-01 12:54:45 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void InsetInclude::validate(LaTeXFeatures & features) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
string incfile(params_.getContents());
|
2001-03-14 10:57:39 +00:00
|
|
|
|
string writefile;
|
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
Buffer const & buffer = features.buffer();
|
|
|
|
|
|
|
|
|
|
string const included_file = includedFilename(buffer, params_);
|
2000-11-13 15:43:36 +00:00
|
|
|
|
|
2006-04-08 09:09:57 +00:00
|
|
|
|
if (isLyXFilename(included_file))
|
2006-04-08 22:31:11 +00:00
|
|
|
|
writefile = changeExtension(included_file, ".sgml");
|
2004-02-25 12:00:53 +00:00
|
|
|
|
else
|
2003-09-19 10:16:33 +00:00
|
|
|
|
writefile = included_file;
|
2000-07-01 12:54:45 +00:00
|
|
|
|
|
2006-03-28 18:49:46 +00:00
|
|
|
|
if (!features.runparams().nice && !isVerbatim(params_)) {
|
2004-02-25 12:00:53 +00:00
|
|
|
|
incfile = FileName(writefile).mangledFilename();
|
2006-04-08 22:31:11 +00:00
|
|
|
|
writefile = makeAbsPath(incfile,
|
2006-04-05 23:56:29 +00:00
|
|
|
|
buffer.getMasterBuffer()->temppath());
|
2004-02-25 12:00:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
|
features.includeFile(include_label, writefile);
|
2000-07-01 12:54:45 +00:00
|
|
|
|
|
2003-09-18 17:22:36 +00:00
|
|
|
|
if (isVerbatim(params_))
|
2001-11-19 15:34:11 +00:00
|
|
|
|
features.require("verbatim");
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Here we must do the fun stuff...
|
|
|
|
|
// Load the file in the include if it needs
|
|
|
|
|
// to be loaded:
|
2003-09-19 10:16:33 +00:00
|
|
|
|
if (loadIfNeeded(buffer, params_)) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// a file got loaded
|
2003-09-19 10:16:33 +00:00
|
|
|
|
Buffer * const tmp = bufferlist.getBuffer(included_file);
|
2004-04-08 10:09:09 +00:00
|
|
|
|
if (tmp) {
|
|
|
|
|
// We must temporarily change features.buffer,
|
|
|
|
|
// otherwise it would always be the master buffer,
|
|
|
|
|
// and nested includes would not work.
|
|
|
|
|
features.setBuffer(*tmp);
|
2001-03-23 17:09:34 +00:00
|
|
|
|
tmp->validate(features);
|
2004-04-08 10:09:09 +00:00
|
|
|
|
features.setBuffer(buffer);
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
void InsetInclude::getLabelList(Buffer const & buffer,
|
|
|
|
|
std::vector<string> & list) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
if (loadIfNeeded(buffer, params_)) {
|
|
|
|
|
string const included_file = includedFilename(buffer, params_);
|
|
|
|
|
Buffer * tmp = bufferlist.getBuffer(included_file);
|
2001-03-14 10:57:39 +00:00
|
|
|
|
tmp->setParentName("");
|
2003-06-16 11:49:38 +00:00
|
|
|
|
tmp->getLabelList(list);
|
2004-03-25 10:12:44 +00:00
|
|
|
|
tmp->setParentName(parentFilename(buffer));
|
2000-09-26 13:54:57 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
void InsetInclude::fillWithBibKeys(Buffer const & buffer,
|
2003-09-18 20:18:39 +00:00
|
|
|
|
std::vector<std::pair<string,string> > & keys) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
if (loadIfNeeded(buffer, params_)) {
|
|
|
|
|
string const included_file = includedFilename(buffer, params_);
|
|
|
|
|
Buffer * tmp = bufferlist.getBuffer(included_file);
|
2001-03-14 10:57:39 +00:00
|
|
|
|
tmp->setParentName("");
|
2003-02-18 13:25:18 +00:00
|
|
|
|
tmp->fillWithBibKeys(keys);
|
2004-03-25 10:12:44 +00:00
|
|
|
|
tmp->setParentName(parentFilename(buffer));
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-08-01 17:28:59 +00:00
|
|
|
|
|
|
|
|
|
|
2006-04-15 11:46:17 +00:00
|
|
|
|
void InsetInclude::updateBibfilesCache(Buffer const & buffer)
|
|
|
|
|
{
|
2006-05-19 07:21:43 +00:00
|
|
|
|
Buffer * const tmp = getChildBuffer(buffer, params_);
|
|
|
|
|
if (tmp) {
|
2006-04-15 11:46:17 +00:00
|
|
|
|
tmp->setParentName("");
|
|
|
|
|
tmp->updateBibfilesCache();
|
|
|
|
|
tmp->setParentName(parentFilename(buffer));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<string> const &
|
|
|
|
|
InsetInclude::getBibfilesCache(Buffer const & buffer) const
|
|
|
|
|
{
|
2006-05-19 07:21:43 +00:00
|
|
|
|
Buffer * const tmp = getChildBuffer(buffer, params_);
|
|
|
|
|
if (tmp) {
|
2006-04-15 11:46:17 +00:00
|
|
|
|
tmp->setParentName("");
|
|
|
|
|
std::vector<string> const & cache = tmp->getBibfilesCache();
|
|
|
|
|
tmp->setParentName(parentFilename(buffer));
|
|
|
|
|
return cache;
|
|
|
|
|
}
|
|
|
|
|
static std::vector<string> const empty;
|
|
|
|
|
return empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void InsetInclude::metrics(MetricsInfo & mi, Dimension & dim) const
|
2002-08-01 17:28:59 +00:00
|
|
|
|
{
|
2004-04-19 13:05:36 +00:00
|
|
|
|
BOOST_ASSERT(mi.base.bv && mi.base.bv->buffer());
|
|
|
|
|
|
|
|
|
|
bool use_preview = false;
|
2004-04-19 13:31:17 +00:00
|
|
|
|
if (RenderPreview::status() != LyXRC::PREVIEW_OFF) {
|
2004-04-19 13:05:36 +00:00
|
|
|
|
lyx::graphics::PreviewImage const * pimage =
|
|
|
|
|
preview_->getPreviewImage(*mi.base.bv->buffer());
|
|
|
|
|
use_preview = pimage && pimage->image();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (use_preview) {
|
2003-10-10 21:24:06 +00:00
|
|
|
|
preview_->metrics(mi, dim);
|
2003-06-02 10:03:27 +00:00
|
|
|
|
} else {
|
2003-06-12 08:52:36 +00:00
|
|
|
|
if (!set_label_) {
|
|
|
|
|
set_label_ = true;
|
2003-08-28 07:41:31 +00:00
|
|
|
|
button_.update(getScreenLabel(*mi.base.bv->buffer()),
|
2004-08-14 19:20:42 +00:00
|
|
|
|
true);
|
2003-06-12 08:52:36 +00:00
|
|
|
|
}
|
|
|
|
|
button_.metrics(mi, dim);
|
2003-06-02 10:03:27 +00:00
|
|
|
|
}
|
2004-08-14 19:20:42 +00:00
|
|
|
|
|
|
|
|
|
Box b(0, dim.wid, -dim.asc, dim.des);
|
2003-09-04 14:02:05 +00:00
|
|
|
|
button_.setBox(b);
|
|
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
|
dim_ = dim;
|
2002-08-01 17:28:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-30 06:48:24 +00:00
|
|
|
|
void InsetInclude::draw(PainterInfo & pi, int x, int y) const
|
2002-08-01 17:28:59 +00:00
|
|
|
|
{
|
2004-01-30 11:41:12 +00:00
|
|
|
|
setPosCache(pi, x, y);
|
2003-12-12 10:20:17 +00:00
|
|
|
|
|
2004-04-19 13:05:36 +00:00
|
|
|
|
BOOST_ASSERT(pi.base.bv && pi.base.bv->buffer());
|
|
|
|
|
|
|
|
|
|
bool use_preview = false;
|
2004-08-14 19:20:42 +00:00
|
|
|
|
if (RenderPreview::status() != LyXRC::PREVIEW_OFF) {
|
2004-04-19 13:05:36 +00:00
|
|
|
|
lyx::graphics::PreviewImage const * pimage =
|
|
|
|
|
preview_->getPreviewImage(*pi.base.bv->buffer());
|
|
|
|
|
use_preview = pimage && pimage->image();
|
2002-08-01 17:28:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-04-19 13:05:36 +00:00
|
|
|
|
if (use_preview)
|
2004-08-14 19:20:42 +00:00
|
|
|
|
preview_->draw(pi, x, y);
|
2004-04-19 13:05:36 +00:00
|
|
|
|
else
|
2004-08-14 19:20:42 +00:00
|
|
|
|
button_.draw(pi, x, y);
|
2002-08-01 17:28:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-08-14 19:20:42 +00:00
|
|
|
|
bool InsetInclude::display() const
|
2004-10-05 10:11:42 +00:00
|
|
|
|
{
|
|
|
|
|
return type(params_) != INPUT;
|
2004-08-14 19:20:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-08-01 17:28:59 +00:00
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// preview stuff
|
|
|
|
|
//
|
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
|
void InsetInclude::fileChanged() const
|
2002-08-01 17:28:59 +00:00
|
|
|
|
{
|
2003-10-14 21:30:23 +00:00
|
|
|
|
Buffer const * const buffer_ptr = LyX::cref().updateInset(this);
|
|
|
|
|
if (!buffer_ptr)
|
2003-10-10 21:08:55 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2003-10-14 21:30:23 +00:00
|
|
|
|
Buffer const & buffer = *buffer_ptr;
|
2003-10-10 21:08:55 +00:00
|
|
|
|
preview_->removePreview(buffer);
|
2003-10-22 22:26:47 +00:00
|
|
|
|
add_preview(*preview_.get(), *this, buffer);
|
|
|
|
|
preview_->startLoading(buffer);
|
2002-08-01 17:28:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
bool preview_wanted(InsetCommandParams const & params, Buffer const & buffer)
|
2002-08-01 17:28:59 +00:00
|
|
|
|
{
|
2003-10-10 21:08:55 +00:00
|
|
|
|
string const included_file = includedFilename(buffer, params);
|
2003-09-19 10:16:33 +00:00
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
|
return type(params) == INPUT && params.preview() &&
|
2006-04-08 09:09:57 +00:00
|
|
|
|
isFileReadable(included_file);
|
2002-08-01 17:28:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
|
string const latex_string(InsetInclude const & inset, Buffer const & buffer)
|
2002-08-01 17:28:59 +00:00
|
|
|
|
{
|
|
|
|
|
ostringstream os;
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams runparams;
|
|
|
|
|
runparams.flavor = OutputParams::LATEX;
|
2003-10-10 21:08:55 +00:00
|
|
|
|
inset.latex(buffer, os, runparams);
|
2002-08-01 17:28:59 +00:00
|
|
|
|
|
2003-09-15 11:00:00 +00:00
|
|
|
|
return os.str();
|
2002-08-01 17:28:59 +00:00
|
|
|
|
}
|
2002-08-06 14:02:59 +00:00
|
|
|
|
|
|
|
|
|
|
2003-10-22 22:26:47 +00:00
|
|
|
|
void add_preview(RenderMonitoredPreview & renderer, InsetInclude const & inset,
|
|
|
|
|
Buffer const & buffer)
|
2002-08-06 14:02:59 +00:00
|
|
|
|
{
|
2003-10-10 21:08:55 +00:00
|
|
|
|
InsetCommandParams const & params = inset.params();
|
2004-08-14 19:20:42 +00:00
|
|
|
|
if (RenderPreview::status() != LyXRC::PREVIEW_OFF &&
|
2004-04-19 13:31:17 +00:00
|
|
|
|
preview_wanted(params, buffer)) {
|
2003-10-22 22:26:47 +00:00
|
|
|
|
renderer.setAbsFile(includedFilename(buffer, params));
|
2003-10-10 21:08:55 +00:00
|
|
|
|
string const snippet = latex_string(inset, buffer);
|
2003-10-22 22:26:47 +00:00
|
|
|
|
renderer.addPreview(snippet, buffer);
|
2003-10-10 21:08:55 +00:00
|
|
|
|
}
|
2002-08-06 14:02:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
|
} // namespace anon
|
|
|
|
|
|
2002-08-06 14:02:59 +00:00
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
|
void InsetInclude::addPreview(lyx::graphics::PreviewLoader & ploader) const
|
2002-08-06 14:02:59 +00:00
|
|
|
|
{
|
2003-10-22 22:26:47 +00:00
|
|
|
|
Buffer const & buffer = ploader.buffer();
|
|
|
|
|
if (preview_wanted(params(), buffer)) {
|
|
|
|
|
preview_->setAbsFile(includedFilename(buffer, params()));
|
|
|
|
|
string const snippet = latex_string(*this, buffer);
|
2003-10-10 21:08:55 +00:00
|
|
|
|
preview_->addPreview(snippet, ploader);
|
2003-10-09 14:36:16 +00:00
|
|
|
|
}
|
2002-08-06 14:02:59 +00:00
|
|
|
|
}
|
2003-03-05 14:59:37 +00:00
|
|
|
|
|
|
|
|
|
|
2003-03-07 14:08:10 +00:00
|
|
|
|
string const InsetIncludeMailer::name_("include");
|
|
|
|
|
|
2003-03-05 14:59:37 +00:00
|
|
|
|
InsetIncludeMailer::InsetIncludeMailer(InsetInclude & inset)
|
2003-03-07 14:08:10 +00:00
|
|
|
|
: inset_(inset)
|
2003-03-05 14:59:37 +00:00
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2003-07-23 09:54:21 +00:00
|
|
|
|
string const InsetIncludeMailer::inset2string(Buffer const &) const
|
2003-03-05 14:59:37 +00:00
|
|
|
|
{
|
2003-03-07 14:08:10 +00:00
|
|
|
|
return params2string(inset_.params());
|
2003-03-05 14:59:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetIncludeMailer::string2params(string const & in,
|
2003-09-19 10:16:33 +00:00
|
|
|
|
InsetCommandParams & params)
|
2003-03-05 14:59:37 +00:00
|
|
|
|
{
|
2003-09-19 10:16:33 +00:00
|
|
|
|
params = InsetCommandParams();
|
2003-04-24 20:02:49 +00:00
|
|
|
|
if (in.empty())
|
|
|
|
|
return;
|
2003-05-26 09:13:55 +00:00
|
|
|
|
|
2003-09-15 11:00:00 +00:00
|
|
|
|
istringstream data(in);
|
2003-03-07 14:08:10 +00:00
|
|
|
|
LyXLex lex(0,0);
|
|
|
|
|
lex.setStream(data);
|
2003-03-05 14:59:37 +00:00
|
|
|
|
|
2003-12-11 15:23:15 +00:00
|
|
|
|
string name;
|
|
|
|
|
lex >> name;
|
|
|
|
|
if (!lex || name != name_)
|
|
|
|
|
return print_mailer_error("InsetIncludeMailer", in, 1, name_);
|
2003-03-05 14:59:37 +00:00
|
|
|
|
|
|
|
|
|
// This is part of the inset proper that is usually swallowed
|
2003-12-11 15:23:15 +00:00
|
|
|
|
// by LyXText::readInset
|
|
|
|
|
string id;
|
|
|
|
|
lex >> id;
|
|
|
|
|
if (!lex || id != "Include")
|
2005-08-02 22:31:56 +00:00
|
|
|
|
return print_mailer_error("InsetIncludeMailer", in, 2, "Include");
|
2003-03-05 14:59:37 +00:00
|
|
|
|
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetInclude inset(params);
|
|
|
|
|
inset.read(lex);
|
|
|
|
|
params = inset.params();
|
2003-03-05 14:59:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string const
|
2003-09-19 10:16:33 +00:00
|
|
|
|
InsetIncludeMailer::params2string(InsetCommandParams const & params)
|
2003-03-05 14:59:37 +00:00
|
|
|
|
{
|
|
|
|
|
InsetInclude inset(params);
|
|
|
|
|
ostringstream data;
|
2003-03-07 14:08:10 +00:00
|
|
|
|
data << name_ << ' ';
|
2003-08-28 07:41:31 +00:00
|
|
|
|
inset.write(data);
|
2003-03-05 14:59:37 +00:00
|
|
|
|
data << "\\end_inset\n";
|
2003-09-15 11:00:00 +00:00
|
|
|
|
return data.str();
|
2003-03-05 14:59:37 +00:00
|
|
|
|
}
|