2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetgraphics.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2002-01-29 09:26:24 +00:00
|
|
|
|
* \author Baruch Even
|
2003-09-07 01:45:40 +00:00
|
|
|
|
* \author Herbert Vo<EFBFBD>
|
2002-09-25 14:26:13 +00:00
|
|
|
|
*
|
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
|
|
|
|
*/
|
2000-02-29 02:19:17 +00:00
|
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
|
/*
|
2002-07-18 14:01:42 +00:00
|
|
|
|
TODO
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2002-03-18 17:37:08 +00:00
|
|
|
|
* What advanced features the users want to do?
|
|
|
|
|
Implement them in a non latex dependent way, but a logical way.
|
|
|
|
|
LyX should translate it to latex or any other fitting format.
|
2000-07-31 12:30:10 +00:00
|
|
|
|
* Add a way to roll the image file into the file format.
|
2001-02-08 13:06:55 +00:00
|
|
|
|
* When loading, if the image is not found in the expected place, try
|
2002-03-18 17:37:08 +00:00
|
|
|
|
to find it in the clipart, or in the same directory with the image.
|
|
|
|
|
* The image choosing dialog could show thumbnails of the image formats
|
|
|
|
|
it knows of, thus selection based on the image instead of based on
|
|
|
|
|
filename.
|
|
|
|
|
* Add support for the 'picins' package.
|
|
|
|
|
* Add support for the 'picinpar' package.
|
|
|
|
|
* Improve support for 'subfigure' - Allow to set the various options
|
|
|
|
|
that are possible.
|
|
|
|
|
*/
|
2000-07-31 12:30:10 +00:00
|
|
|
|
|
|
|
|
|
/* NOTES:
|
|
|
|
|
* Fileformat:
|
|
|
|
|
* The filename is kept in the lyx file in a relative way, so as to allow
|
|
|
|
|
* moving the document file and its images with no problem.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2000-07-31 12:30:10 +00:00
|
|
|
|
*
|
|
|
|
|
* Conversions:
|
2001-07-29 06:04:20 +00:00
|
|
|
|
* Postscript output means EPS figures.
|
|
|
|
|
*
|
|
|
|
|
* PDF output is best done with PDF figures if it's a direct conversion
|
|
|
|
|
* or PNG figures otherwise.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
* Image format
|
|
|
|
|
* from to
|
|
|
|
|
* EPS epstopdf
|
|
|
|
|
* PS ps2pdf
|
|
|
|
|
* JPG/PNG direct
|
|
|
|
|
* PDF direct
|
|
|
|
|
* others PNG
|
2000-07-31 12:30:10 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
|
#include <config.h>
|
2000-08-14 09:44:53 +00:00
|
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
|
#include "insets/insetgraphics.h"
|
2003-10-10 21:08:55 +00:00
|
|
|
|
#include "insets/render_graphic.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
|
#include "buffer.h"
|
2000-06-21 15:07:57 +00:00
|
|
|
|
#include "BufferView.h"
|
2000-10-12 10:46:06 +00:00
|
|
|
|
#include "converter.h"
|
2004-01-20 14:25:24 +00:00
|
|
|
|
#include "cursor.h"
|
2000-07-31 12:30:10 +00:00
|
|
|
|
#include "debug.h"
|
2003-10-29 10:47:21 +00:00
|
|
|
|
#include "dispatchresult.h"
|
2003-03-07 18:44:57 +00:00
|
|
|
|
#include "format.h"
|
|
|
|
|
#include "funcrequest.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
|
#include "gettext.h"
|
2002-02-27 09:59:52 +00:00
|
|
|
|
#include "LaTeXFeatures.h"
|
2003-10-14 21:30:23 +00:00
|
|
|
|
#include "lyx_main.h"
|
2002-07-21 21:21:06 +00:00
|
|
|
|
#include "lyxlex.h"
|
2003-10-12 18:54:12 +00:00
|
|
|
|
#include "metricsinfo.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
|
#include "outputparams.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
|
|
2002-04-24 10:53:55 +00:00
|
|
|
|
#include "frontends/Alert.h"
|
2003-10-12 18:54:12 +00:00
|
|
|
|
#include "frontends/LyXView.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
|
|
|
|
|
|
#include "support/filetools.h"
|
2002-02-27 09:59:52 +00:00
|
|
|
|
#include "support/lyxalgo.h" // lyx::count
|
2002-10-24 11:53:46 +00:00
|
|
|
|
#include "support/lyxlib.h" // float_equal
|
2003-09-04 03:54:04 +00:00
|
|
|
|
#include "support/os.h"
|
2002-06-18 20:47:49 +00:00
|
|
|
|
#include "support/systemcall.h"
|
2003-09-04 03:54:04 +00:00
|
|
|
|
#include "support/tostr.h"
|
2004-01-20 14:25:24 +00:00
|
|
|
|
#include "support/std_sstream.h"
|
2000-03-09 23:58:55 +00:00
|
|
|
|
|
2002-06-25 15:59:10 +00:00
|
|
|
|
#include <boost/bind.hpp>
|
2003-09-03 17:23:38 +00:00
|
|
|
|
#include <boost/tuple/tuple.hpp>
|
2002-06-25 15:59:10 +00:00
|
|
|
|
|
2003-09-03 17:23:38 +00:00
|
|
|
|
namespace support = lyx::support;
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::AbsolutePath;
|
|
|
|
|
using lyx::support::bformat;
|
|
|
|
|
using lyx::support::ChangeExtension;
|
2004-05-05 15:37:36 +00:00
|
|
|
|
using lyx::support::compare_timestamps;
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::contains;
|
|
|
|
|
using lyx::support::FileName;
|
|
|
|
|
using lyx::support::float_equal;
|
|
|
|
|
using lyx::support::GetExtension;
|
|
|
|
|
using lyx::support::getExtFromContents;
|
|
|
|
|
using lyx::support::IsFileReadable;
|
|
|
|
|
using lyx::support::LibFileSearch;
|
|
|
|
|
using lyx::support::rtrim;
|
2004-04-26 11:05:19 +00:00
|
|
|
|
using lyx::support::subst;
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::Systemcall;
|
|
|
|
|
using lyx::support::unzipFile;
|
|
|
|
|
using lyx::support::unzippedFileName;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
|
2003-09-16 11:03:20 +00:00
|
|
|
|
namespace os = lyx::support::os;
|
|
|
|
|
|
2001-07-28 12:24:16 +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;
|
2000-03-09 23:58:55 +00:00
|
|
|
|
|
2002-11-04 02:12:42 +00:00
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
2001-02-08 13:06:55 +00:00
|
|
|
|
// This function is a utility function
|
2001-12-02 16:21:10 +00:00
|
|
|
|
// ... that should be with ChangeExtension ...
|
2001-02-08 13:06:55 +00:00
|
|
|
|
inline
|
|
|
|
|
string const RemoveExtension(string const & filename)
|
|
|
|
|
{
|
|
|
|
|
return ChangeExtension(filename, string());
|
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2002-02-20 09:04:56 +00:00
|
|
|
|
|
2002-06-05 15:07:44 +00:00
|
|
|
|
string const uniqueID()
|
2002-02-20 09:04:56 +00:00
|
|
|
|
{
|
|
|
|
|
static unsigned int seed = 1000;
|
2003-05-13 16:24:49 +00:00
|
|
|
|
return "graph" + tostr(++seed);
|
2002-11-04 02:12:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
string findTargetFormat(string const & suffix, OutputParams const & runparams)
|
2002-11-04 02:12:42 +00:00
|
|
|
|
{
|
2003-05-22 18:59:10 +00:00
|
|
|
|
// Are we using latex or pdflatex).
|
2003-11-05 12:06:20 +00:00
|
|
|
|
if (runparams.flavor == OutputParams::PDFLATEX) {
|
2003-08-02 11:30:30 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS] << "findTargetFormat: PDF mode" << endl;
|
2002-11-04 02:12:42 +00:00
|
|
|
|
if (contains(suffix, "ps") || suffix == "pdf")
|
|
|
|
|
return "pdf";
|
2003-02-26 16:05:35 +00:00
|
|
|
|
if (suffix == "jpg") // pdflatex can use jpeg
|
2002-11-04 02:12:42 +00:00
|
|
|
|
return suffix;
|
2003-02-26 16:05:35 +00:00
|
|
|
|
return "png"; // and also png
|
2002-11-04 02:12:42 +00:00
|
|
|
|
}
|
|
|
|
|
// If it's postscript, we always do eps.
|
2003-08-02 11:30:30 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS] << "findTargetFormat: PostScript mode" << endl;
|
2003-02-26 16:05:35 +00:00
|
|
|
|
if (suffix != "ps") // any other than ps
|
|
|
|
|
return "eps"; // is changed to eps
|
|
|
|
|
return suffix; // let ps untouched
|
2002-02-20 09:04:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
2000-03-09 23:58:55 +00:00
|
|
|
|
InsetGraphics::InsetGraphics()
|
2002-06-05 15:07:44 +00:00
|
|
|
|
: graphic_label(uniqueID()),
|
2004-04-13 17:25:23 +00:00
|
|
|
|
graphic_(new RenderGraphic(this))
|
|
|
|
|
{}
|
2000-02-29 02:19:17 +00:00
|
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
|
2003-06-03 15:10:14 +00:00
|
|
|
|
InsetGraphics::InsetGraphics(InsetGraphics const & ig)
|
2003-07-25 21:20:24 +00:00
|
|
|
|
: InsetOld(ig),
|
2003-06-03 17:49:09 +00:00
|
|
|
|
boost::signals::trackable(),
|
2002-06-05 15:07:44 +00:00
|
|
|
|
graphic_label(uniqueID()),
|
2004-04-13 17:25:23 +00:00
|
|
|
|
graphic_(new RenderGraphic(*ig.graphic_, this))
|
2001-07-14 20:11:35 +00:00
|
|
|
|
{
|
2003-06-03 15:10:14 +00:00
|
|
|
|
setParams(ig.params());
|
2001-07-14 20:11:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
|
auto_ptr<InsetBase> InsetGraphics::clone() const
|
2003-02-26 16:05:35 +00:00
|
|
|
|
{
|
2003-07-25 17:11:25 +00:00
|
|
|
|
return auto_ptr<InsetBase>(new InsetGraphics(*this));
|
2003-02-26 16:05:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
|
InsetGraphics::~InsetGraphics()
|
|
|
|
|
{
|
2003-06-03 17:49:09 +00:00
|
|
|
|
InsetGraphicsMailer(*this).hideDialog();
|
2003-03-07 18:44:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-03-18 12:53:43 +00:00
|
|
|
|
void InsetGraphics::priv_dispatch(LCursor & cur, FuncRequest & cmd)
|
2003-03-07 18:44:57 +00:00
|
|
|
|
{
|
|
|
|
|
switch (cmd.action) {
|
2004-04-13 10:36:09 +00:00
|
|
|
|
case LFUN_GRAPHICS_EDIT: {
|
|
|
|
|
Buffer const & buffer = *cur.bv().buffer();
|
|
|
|
|
InsetGraphicsParams p;
|
|
|
|
|
InsetGraphicsMailer::string2params(cmd.argument, buffer, p);
|
|
|
|
|
editGraphics(p, buffer);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-07 18:44:57 +00:00
|
|
|
|
case LFUN_INSET_MODIFY: {
|
2004-04-08 15:03:33 +00:00
|
|
|
|
Buffer const & buffer = cur.buffer();
|
2003-03-07 18:44:57 +00:00
|
|
|
|
InsetGraphicsParams p;
|
2003-07-23 09:54:21 +00:00
|
|
|
|
InsetGraphicsMailer::string2params(cmd.argument, buffer, p);
|
2003-05-16 07:44:00 +00:00
|
|
|
|
if (!p.filename.empty()) {
|
2003-06-03 15:10:14 +00:00
|
|
|
|
setParams(p);
|
2004-01-20 14:25:24 +00:00
|
|
|
|
cur.bv().update();
|
2003-05-16 07:44:00 +00:00
|
|
|
|
}
|
2004-02-16 11:58:51 +00:00
|
|
|
|
break;
|
2003-03-07 18:44:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-05-26 09:13:55 +00:00
|
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
2004-01-20 14:25:24 +00:00
|
|
|
|
InsetGraphicsMailer(*this).updateDialog(&cur.bv());
|
2004-02-16 11:58:51 +00:00
|
|
|
|
break;
|
2003-03-07 18:44:57 +00:00
|
|
|
|
|
2003-03-09 09:38:47 +00:00
|
|
|
|
case LFUN_MOUSE_RELEASE:
|
2004-01-20 14:25:24 +00:00
|
|
|
|
InsetGraphicsMailer(*this).showDialog(&cur.bv());
|
2004-02-16 11:58:51 +00:00
|
|
|
|
break;
|
2003-03-09 09:38:47 +00:00
|
|
|
|
|
2003-03-07 18:44:57 +00:00
|
|
|
|
default:
|
2004-02-16 11:58:51 +00:00
|
|
|
|
InsetOld::priv_dispatch(cur, cmd);
|
|
|
|
|
break;
|
2003-03-07 18:44:57 +00:00
|
|
|
|
}
|
2000-07-31 12:30:10 +00:00
|
|
|
|
}
|
2000-02-29 02:19:17 +00:00
|
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
|
void InsetGraphics::edit(LCursor & cur, bool)
|
2003-11-04 12:36:59 +00:00
|
|
|
|
{
|
2004-01-20 14:25:24 +00:00
|
|
|
|
InsetGraphicsMailer(*this).showDialog(&cur.bv());
|
2003-11-04 12:36:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void InsetGraphics::metrics(MetricsInfo & mi, Dimension & dim) const
|
2000-02-29 02:19:17 +00:00
|
|
|
|
{
|
2003-06-03 17:49:09 +00:00
|
|
|
|
graphic_->metrics(mi, dim);
|
2003-07-18 07:47:07 +00:00
|
|
|
|
dim_ = dim;
|
2003-03-07 18:44:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-30 06:48:24 +00:00
|
|
|
|
void InsetGraphics::draw(PainterInfo & pi, int x, int y) const
|
2000-02-29 02:19:17 +00:00
|
|
|
|
{
|
2004-01-30 11:41:12 +00:00
|
|
|
|
setPosCache(pi, x, y);
|
2003-06-03 17:49:09 +00:00
|
|
|
|
graphic_->draw(pi, x, y);
|
2000-02-29 02:19:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld::EDITABLE InsetGraphics::editable() const
|
2000-02-29 02:19:17 +00:00
|
|
|
|
{
|
2000-03-08 13:52:57 +00:00
|
|
|
|
return IS_EDITABLE;
|
2000-02-29 02:19:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void InsetGraphics::write(Buffer const & buf, ostream & os) const
|
2000-02-29 02:19:17 +00:00
|
|
|
|
{
|
2002-08-24 22:02:30 +00:00
|
|
|
|
os << "Graphics\n";
|
2003-08-28 07:41:31 +00:00
|
|
|
|
params().Write(os, buf.filePath());
|
2000-02-29 02:19:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void InsetGraphics::read(Buffer const & buf, LyXLex & lex)
|
2001-07-28 12:24:16 +00:00
|
|
|
|
{
|
2001-08-06 19:13:25 +00:00
|
|
|
|
string const token = lex.getString();
|
2001-07-28 12:24:16 +00:00
|
|
|
|
|
2001-07-29 06:04:20 +00:00
|
|
|
|
if (token == "Graphics")
|
2003-08-28 07:41:31 +00:00
|
|
|
|
readInsetGraphics(lex, buf.filePath());
|
2001-07-28 12:24:16 +00:00
|
|
|
|
else
|
2003-08-02 11:30:30 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS] << "Not a Graphics inset!" << endl;
|
2001-07-28 12:24:16 +00:00
|
|
|
|
|
2003-06-03 17:49:09 +00:00
|
|
|
|
graphic_->update(params().as_grfxParams());
|
2001-07-28 12:24:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-25 11:04:34 +00:00
|
|
|
|
|
2003-06-03 15:10:14 +00:00
|
|
|
|
void InsetGraphics::readInsetGraphics(LyXLex & lex, string const & bufpath)
|
2000-02-29 02:19:17 +00:00
|
|
|
|
{
|
2000-08-14 09:44:53 +00:00
|
|
|
|
bool finished = false;
|
|
|
|
|
|
2001-08-06 19:13:25 +00:00
|
|
|
|
while (lex.isOK() && !finished) {
|
2000-08-14 09:44:53 +00:00
|
|
|
|
lex.next();
|
|
|
|
|
|
2001-08-06 19:13:25 +00:00
|
|
|
|
string const token = lex.getString();
|
2002-03-21 17:09:55 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS] << "Token: '" << token << '\''
|
2003-08-02 11:30:30 +00:00
|
|
|
|
<< endl;
|
2000-08-14 09:44:53 +00:00
|
|
|
|
|
|
|
|
|
if (token.empty()) {
|
|
|
|
|
continue;
|
|
|
|
|
} else if (token == "\\end_inset") {
|
|
|
|
|
finished = true;
|
2004-02-25 12:00:53 +00:00
|
|
|
|
} else {
|
2003-06-03 15:10:14 +00:00
|
|
|
|
if (!params_.Read(lex, token, bufpath))
|
2002-03-21 17:09:55 +00:00
|
|
|
|
lyxerr << "Unknown token, " << token << ", skipping."
|
2002-02-27 09:59:52 +00:00
|
|
|
|
<< std::endl;
|
2000-08-14 09:44:53 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2001-07-28 12:24:16 +00:00
|
|
|
|
}
|
2000-08-14 09:44:53 +00:00
|
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
|
|
2002-01-29 09:26:24 +00:00
|
|
|
|
string const InsetGraphics::createLatexOptions() const
|
2001-02-08 13:06:55 +00:00
|
|
|
|
{
|
|
|
|
|
// Calculate the options part of the command, we must do it to a string
|
|
|
|
|
// stream since we might have a trailing comma that we would like to remove
|
|
|
|
|
// before writing it to the output stream.
|
2001-07-13 14:03:48 +00:00
|
|
|
|
ostringstream options;
|
2002-02-27 09:59:52 +00:00
|
|
|
|
if (!params().bb.empty())
|
2002-07-28 22:50:13 +00:00
|
|
|
|
options << " bb=" << rtrim(params().bb) << ",\n";
|
2002-02-27 09:59:52 +00:00
|
|
|
|
if (params().draft)
|
2002-02-07 19:37:34 +00:00
|
|
|
|
options << " draft,\n";
|
2002-02-27 09:59:52 +00:00
|
|
|
|
if (params().clip)
|
2002-02-07 19:37:34 +00:00
|
|
|
|
options << " clip,\n";
|
2003-06-30 23:56:22 +00:00
|
|
|
|
if (!float_equal(params().scale, 0.0, 0.05)) {
|
|
|
|
|
if (!float_equal(params().scale, 100.0, 0.05))
|
2002-10-24 11:53:46 +00:00
|
|
|
|
options << " scale=" << params().scale / 100.0
|
|
|
|
|
<< ",\n";
|
2002-08-24 22:02:30 +00:00
|
|
|
|
} else {
|
|
|
|
|
if (!params().width.zero())
|
|
|
|
|
options << " width=" << params().width.asLatexString() << ",\n";
|
|
|
|
|
if (!params().height.zero())
|
|
|
|
|
options << " height=" << params().height.asLatexString() << ",\n";
|
|
|
|
|
if (params().keepAspectRatio)
|
2002-11-04 02:12:42 +00:00
|
|
|
|
options << " keepaspectratio,\n";
|
2002-01-29 09:26:24 +00:00
|
|
|
|
}
|
2002-08-24 22:02:30 +00:00
|
|
|
|
|
|
|
|
|
// Make sure rotation angle is not very close to zero;
|
|
|
|
|
// a float can be effectively zero but not exactly zero.
|
2003-06-30 23:56:22 +00:00
|
|
|
|
if (!float_equal(params().rotateAngle, 0, 0.001)) {
|
2002-02-27 09:59:52 +00:00
|
|
|
|
options << " angle=" << params().rotateAngle << ",\n";
|
|
|
|
|
if (!params().rotateOrigin.empty()) {
|
|
|
|
|
options << " origin=" << params().rotateOrigin[0];
|
|
|
|
|
if (contains(params().rotateOrigin,"Top"))
|
2002-01-29 09:26:24 +00:00
|
|
|
|
options << 't';
|
2002-02-27 09:59:52 +00:00
|
|
|
|
else if (contains(params().rotateOrigin,"Bottom"))
|
2002-01-29 09:26:24 +00:00
|
|
|
|
options << 'b';
|
2002-02-27 09:59:52 +00:00
|
|
|
|
else if (contains(params().rotateOrigin,"Baseline"))
|
2002-01-29 09:26:24 +00:00
|
|
|
|
options << 'B';
|
2002-02-07 19:37:34 +00:00
|
|
|
|
options << ",\n";
|
2002-01-29 09:26:24 +00:00
|
|
|
|
}
|
2001-02-08 13:06:55 +00:00
|
|
|
|
}
|
2002-08-24 22:02:30 +00:00
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
|
if (!params().special.empty())
|
|
|
|
|
options << params().special << ",\n";
|
2002-08-24 22:02:30 +00:00
|
|
|
|
|
2003-09-15 11:00:00 +00:00
|
|
|
|
string opts = options.str();
|
2002-11-04 02:12:42 +00:00
|
|
|
|
// delete last ",\n"
|
|
|
|
|
return opts.substr(0, opts.size() - 2);
|
2001-07-29 06:04:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
2003-09-03 17:23:38 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
enum CopyStatus {
|
|
|
|
|
SUCCESS,
|
|
|
|
|
FAILURE,
|
|
|
|
|
IDENTICAL_PATHS,
|
|
|
|
|
IDENTICAL_CONTENTS
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::pair<CopyStatus, string> const
|
2004-05-05 15:37:36 +00:00
|
|
|
|
copyFileIfNeeded(string const & file_in, string const & file_out)
|
2003-09-03 17:23:38 +00:00
|
|
|
|
{
|
2003-09-09 17:25:35 +00:00
|
|
|
|
BOOST_ASSERT(AbsolutePath(file_in));
|
2004-05-05 15:37:36 +00:00
|
|
|
|
BOOST_ASSERT(AbsolutePath(file_out));
|
2003-09-09 17:25:35 +00:00
|
|
|
|
|
2003-09-03 17:23:38 +00:00
|
|
|
|
unsigned long const checksum_in = support::sum(file_in);
|
|
|
|
|
unsigned long const checksum_out = support::sum(file_out);
|
|
|
|
|
|
|
|
|
|
if (checksum_in == checksum_out)
|
|
|
|
|
// Nothing to do...
|
|
|
|
|
return std::make_pair(IDENTICAL_CONTENTS, file_out);
|
|
|
|
|
|
|
|
|
|
bool const success = support::copy(file_in, file_out);
|
|
|
|
|
if (!success) {
|
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
|
<< support::bformat(_("Could not copy the file\n%1$s\n"
|
|
|
|
|
"into the temporary directory."),
|
|
|
|
|
file_in)
|
|
|
|
|
<< std::endl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CopyStatus status = success ? SUCCESS : FAILURE;
|
|
|
|
|
return std::make_pair(status, file_out);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-05-05 15:37:36 +00:00
|
|
|
|
std::pair<CopyStatus, string> const
|
|
|
|
|
copyToDirIfNeeded(string const & file_in, string const & dir, bool zipped)
|
|
|
|
|
{
|
|
|
|
|
using support::rtrim;
|
|
|
|
|
|
|
|
|
|
BOOST_ASSERT(AbsolutePath(file_in));
|
|
|
|
|
|
|
|
|
|
string const only_path = support::OnlyPath(file_in);
|
|
|
|
|
if (rtrim(support::OnlyPath(file_in) , "/") == rtrim(dir, "/"))
|
|
|
|
|
return std::make_pair(IDENTICAL_PATHS, file_in);
|
|
|
|
|
|
|
|
|
|
string mangled = FileName(file_in).mangledFilename();
|
|
|
|
|
if (zipped) {
|
|
|
|
|
// We need to change _eps.gz to .eps.gz. The mangled name is
|
|
|
|
|
// still unique because of the counter in mangledFilename().
|
|
|
|
|
// We can't just call mangledFilename() with the zip
|
|
|
|
|
// extension removed, because base.eps and base.eps.gz may
|
|
|
|
|
// have different content but would get the same mangled
|
|
|
|
|
// name in this case.
|
|
|
|
|
string const base = RemoveExtension(unzippedFileName(file_in));
|
|
|
|
|
string::size_type const ext_len = file_in.length() - base.length();
|
|
|
|
|
mangled[mangled.length() - ext_len] = '.';
|
|
|
|
|
}
|
|
|
|
|
string const file_out = support::MakeAbsPath(mangled, dir);
|
|
|
|
|
|
|
|
|
|
return copyFileIfNeeded(file_in, file_out);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-03 17:23:38 +00:00
|
|
|
|
string const stripExtensionIfPossible(string const & file, string const & to)
|
|
|
|
|
{
|
|
|
|
|
// No conversion is needed. LaTeX can handle the graphic file as is.
|
|
|
|
|
// This is true even if the orig_file is compressed.
|
|
|
|
|
if (formats.getFormat(to)->extension() == GetExtension(file))
|
|
|
|
|
return RemoveExtension(file);
|
|
|
|
|
return file;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
string const InsetGraphics::prepareFile(Buffer const & buf,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const & runparams) const
|
2001-02-08 13:06:55 +00:00
|
|
|
|
{
|
2003-07-22 20:42:40 +00:00
|
|
|
|
string orig_file = params().filename.absFilename();
|
2003-08-28 07:41:31 +00:00
|
|
|
|
string const rel_file = params().filename.relFilename(buf.filePath());
|
2003-06-03 15:10:14 +00:00
|
|
|
|
|
2003-09-03 17:23:38 +00:00
|
|
|
|
// LaTeX can cope if the graphics file doesn't exist, so just return the
|
|
|
|
|
// filename.
|
2003-06-07 17:45:43 +00:00
|
|
|
|
if (!IsFileReadable(orig_file)) {
|
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
|
<< "InsetGraphics::prepareFile\n"
|
|
|
|
|
<< "No file '" << orig_file << "' can be found!" << endl;
|
2003-06-03 15:10:14 +00:00
|
|
|
|
return rel_file;
|
2003-06-07 17:45:43 +00:00
|
|
|
|
}
|
2002-04-24 10:53:55 +00:00
|
|
|
|
|
2002-07-18 14:01:42 +00:00
|
|
|
|
// If the file is compressed and we have specified that it
|
|
|
|
|
// should not be uncompressed, then just return its name and
|
|
|
|
|
// let LaTeX do the rest!
|
2003-09-03 17:23:38 +00:00
|
|
|
|
bool const zipped = params().filename.isZipped();
|
|
|
|
|
|
2002-07-18 14:01:42 +00:00
|
|
|
|
// temp_file will contain the file for LaTeX to act on if, for example,
|
|
|
|
|
// we move it to a temp dir or uncompress it.
|
2003-02-26 18:03:48 +00:00
|
|
|
|
string temp_file = orig_file;
|
2002-07-18 14:01:42 +00:00
|
|
|
|
|
2004-03-25 10:12:44 +00:00
|
|
|
|
// We place all temporary files in the master buffer's temp dir.
|
|
|
|
|
// This is possible because we use mangled file names.
|
|
|
|
|
// This is necessary for DVI export.
|
|
|
|
|
string const temp_path = buf.getMasterBuffer()->temppath();
|
|
|
|
|
|
2004-05-05 15:37:36 +00:00
|
|
|
|
bool conversion_needed = true;
|
|
|
|
|
|
|
|
|
|
CopyStatus status;
|
|
|
|
|
boost::tie(status, temp_file) =
|
|
|
|
|
copyToDirIfNeeded(orig_file, temp_path, zipped);
|
2003-09-03 17:23:38 +00:00
|
|
|
|
|
2004-05-05 15:37:36 +00:00
|
|
|
|
if (status == FAILURE)
|
|
|
|
|
return orig_file;
|
|
|
|
|
else if (status == IDENTICAL_CONTENTS)
|
|
|
|
|
conversion_needed = false;
|
2003-09-03 17:23:38 +00:00
|
|
|
|
|
2004-05-05 15:37:36 +00:00
|
|
|
|
if (zipped) {
|
|
|
|
|
if (params().noUnzip) {
|
2002-06-18 20:47:49 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
2004-05-05 15:37:36 +00:00
|
|
|
|
<< "\tpass zipped file to LaTeX.\n";
|
|
|
|
|
// LaTeX needs the bounding box file in the tmp dir
|
|
|
|
|
string bb_file;
|
|
|
|
|
boost::tie(status, bb_file) =
|
|
|
|
|
copyFileIfNeeded(ChangeExtension(orig_file, "bb"),
|
|
|
|
|
ChangeExtension(temp_file, "bb"));
|
|
|
|
|
if (status == FAILURE)
|
|
|
|
|
return orig_file;
|
|
|
|
|
return temp_file;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string const unzipped_temp_file = unzippedFileName(temp_file);
|
|
|
|
|
if (compare_timestamps(unzipped_temp_file, temp_file) > 0) {
|
|
|
|
|
// temp_file has been unzipped already and
|
|
|
|
|
// orig_file has not changed in the meantime.
|
|
|
|
|
temp_file = unzipped_temp_file;
|
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
|
<< "\twas already unzipped to " << temp_file
|
|
|
|
|
<< endl;
|
|
|
|
|
} else {
|
|
|
|
|
// unzipped_temp_file does not exist or is too old
|
|
|
|
|
temp_file = unzipFile(temp_file);
|
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
|
<< "\tunzipped to " << temp_file << endl;
|
2003-09-03 17:23:38 +00:00
|
|
|
|
}
|
2002-06-18 20:47:49 +00:00
|
|
|
|
}
|
2003-09-09 17:25:35 +00:00
|
|
|
|
|
2004-05-05 15:37:36 +00:00
|
|
|
|
string const from = getExtFromContents(temp_file);
|
2003-05-22 18:59:10 +00:00
|
|
|
|
string const to = findTargetFormat(from, runparams);
|
2002-07-18 14:01:42 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
|
<< "\t we have: from " << from << " to " << to << '\n';
|
2002-04-24 10:53:55 +00:00
|
|
|
|
|
|
|
|
|
// We're going to be running the exported buffer through the LaTeX
|
|
|
|
|
// compiler, so must ensure that LaTeX can cope with the graphics
|
|
|
|
|
// file format.
|
|
|
|
|
|
2002-06-18 20:47:49 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
2003-06-03 15:10:14 +00:00
|
|
|
|
<< "\tthe orig file is: " << orig_file << endl;
|
2002-06-18 20:47:49 +00:00
|
|
|
|
|
2003-09-03 17:23:38 +00:00
|
|
|
|
if (from == to)
|
|
|
|
|
return stripExtensionIfPossible(temp_file, to);
|
|
|
|
|
|
|
|
|
|
string const to_file_base = RemoveExtension(temp_file);
|
|
|
|
|
string const to_file = ChangeExtension(to_file_base, to);
|
|
|
|
|
|
|
|
|
|
// Do we need to perform the conversion?
|
|
|
|
|
// Yes if to_file does not exist or if temp_file is newer than to_file
|
|
|
|
|
if (!conversion_needed ||
|
2004-05-05 15:37:36 +00:00
|
|
|
|
compare_timestamps(temp_file, to_file) < 0) {
|
2003-09-03 17:23:38 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
|
<< bformat(_("No conversion of %1$s is needed after all"),
|
|
|
|
|
rel_file)
|
|
|
|
|
<< std::endl;
|
|
|
|
|
return to_file_base;
|
2002-02-27 09:59:52 +00:00
|
|
|
|
}
|
2003-03-03 15:59:08 +00:00
|
|
|
|
|
2002-04-24 10:53:55 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
2002-06-18 20:47:49 +00:00
|
|
|
|
<< "\tThe original file is " << orig_file << "\n"
|
|
|
|
|
<< "\tA copy has been made and convert is to be called with:\n"
|
2002-04-24 10:53:55 +00:00
|
|
|
|
<< "\tfile to convert = " << temp_file << '\n'
|
2003-09-03 17:23:38 +00:00
|
|
|
|
<< "\tto_file_base = " << to_file_base << '\n'
|
2002-04-24 10:53:55 +00:00
|
|
|
|
<< "\t from " << from << " to " << to << '\n';
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
2004-02-25 12:00:53 +00:00
|
|
|
|
// if no special converter defined, then we take the default one
|
2002-06-18 20:47:49 +00:00
|
|
|
|
// from ImageMagic: convert from:inname.from to:outname.to
|
2003-09-03 17:23:38 +00:00
|
|
|
|
if (!converters.convert(&buf, temp_file, to_file_base, from, to)) {
|
2002-06-24 20:28:12 +00:00
|
|
|
|
string const command =
|
2003-08-28 12:45:51 +00:00
|
|
|
|
"sh " + LibFileSearch("scripts", "convertDefault.sh") +
|
2002-07-22 12:36:41 +00:00
|
|
|
|
' ' + from + ':' + temp_file + ' ' +
|
2003-09-03 17:23:38 +00:00
|
|
|
|
to + ':' + to_file_base + '.' + to;
|
2002-06-24 20:28:12 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
2002-07-22 12:36:41 +00:00
|
|
|
|
<< "No converter defined! I use convertDefault.sh:\n\t"
|
2002-06-18 20:47:49 +00:00
|
|
|
|
<< command << endl;
|
|
|
|
|
Systemcall one;
|
|
|
|
|
one.startscript(Systemcall::Wait, command);
|
2003-09-03 17:23:38 +00:00
|
|
|
|
if (!IsFileReadable(ChangeExtension(to_file_base, to))) {
|
2003-05-19 17:03:12 +00:00
|
|
|
|
string str = bformat(_("No information for converting %1$s "
|
2003-05-30 02:00:31 +00:00
|
|
|
|
"format files to %2$s.\n"
|
2003-05-19 17:03:12 +00:00
|
|
|
|
"Try defining a convertor in the preferences."), from, to);
|
2003-03-31 01:15:44 +00:00
|
|
|
|
Alert::error(_("Could not convert image"), str);
|
|
|
|
|
}
|
2002-06-18 20:47:49 +00:00
|
|
|
|
}
|
2002-06-24 20:28:12 +00:00
|
|
|
|
|
2003-09-03 17:23:38 +00:00
|
|
|
|
return to_file_base;
|
2001-02-08 13:06:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int InsetGraphics::latex(Buffer const & buf, ostream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const & runparams) const
|
2000-02-29 02:19:17 +00:00
|
|
|
|
{
|
2004-03-25 10:12:44 +00:00
|
|
|
|
// The master buffer. This is useful when there are multiple levels
|
|
|
|
|
// of include files
|
|
|
|
|
Buffer const * m_buffer = buf.getMasterBuffer();
|
|
|
|
|
|
2002-04-06 13:05:46 +00:00
|
|
|
|
// If there is no file specified or not existing,
|
2002-04-02 12:48:41 +00:00
|
|
|
|
// just output a message about it in the latex output.
|
2002-04-24 10:53:55 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
2002-04-29 09:24:19 +00:00
|
|
|
|
<< "insetgraphics::latex: Filename = "
|
2003-07-22 20:42:40 +00:00
|
|
|
|
<< params().filename.absFilename() << endl;
|
2002-04-24 10:53:55 +00:00
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
|
string const relative_file =
|
2003-08-28 07:41:31 +00:00
|
|
|
|
params().filename.relFilename(buf.filePath());
|
2003-06-03 15:10:14 +00:00
|
|
|
|
|
2003-07-22 20:42:40 +00:00
|
|
|
|
string const file_ = params().filename.absFilename();
|
2004-04-29 09:24:29 +00:00
|
|
|
|
bool const file_exists = !file_.empty() && IsFileReadable(file_);
|
2002-05-21 23:50:36 +00:00
|
|
|
|
string const message = file_exists ?
|
2002-09-09 09:49:47 +00:00
|
|
|
|
string() : string("bb = 0 0 200 100, draft, type=eps");
|
2002-04-29 09:24:19 +00:00
|
|
|
|
// if !message.empty() than there was no existing file
|
2004-04-29 09:24:29 +00:00
|
|
|
|
// "filename" found. In this case LaTeX
|
2002-04-29 09:24:19 +00:00
|
|
|
|
// draws only a rectangle with the above bb and the
|
|
|
|
|
// not found filename in it.
|
2002-04-24 10:53:55 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
2002-06-18 20:47:49 +00:00
|
|
|
|
<< "\tMessage = \"" << message << '\"' << endl;
|
2002-03-26 18:08:07 +00:00
|
|
|
|
|
2002-02-13 18:53:36 +00:00
|
|
|
|
// These variables collect all the latex code that should be before and
|
2001-02-08 13:06:55 +00:00
|
|
|
|
// after the actual includegraphics command.
|
|
|
|
|
string before;
|
|
|
|
|
string after;
|
2000-08-14 09:44:53 +00:00
|
|
|
|
// Do we want subcaptions?
|
2002-02-27 09:59:52 +00:00
|
|
|
|
if (params().subcaption) {
|
|
|
|
|
before += "\\subfigure[" + params().subcaptionText + "]{";
|
2002-02-13 18:53:36 +00:00
|
|
|
|
after = '}';
|
2000-08-14 09:44:53 +00:00
|
|
|
|
}
|
2001-02-08 13:06:55 +00:00
|
|
|
|
// We never use the starred form, we use the "clip" option instead.
|
2002-02-13 18:53:36 +00:00
|
|
|
|
before += "\\includegraphics";
|
2002-04-02 12:48:41 +00:00
|
|
|
|
|
2001-02-08 13:06:55 +00:00
|
|
|
|
// Write the options if there are any.
|
|
|
|
|
string const opts = createLatexOptions();
|
2002-06-18 20:47:49 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS] << "\tOpts = " << opts << endl;
|
2002-04-24 10:53:55 +00:00
|
|
|
|
|
2002-04-02 12:48:41 +00:00
|
|
|
|
if (!opts.empty() && !message.empty())
|
2002-09-09 09:49:47 +00:00
|
|
|
|
before += ("[%\n" + opts + ',' + message + ']');
|
|
|
|
|
else if (!opts.empty() || !message.empty())
|
|
|
|
|
before += ("[%\n" + opts + message + ']');
|
2002-04-24 10:53:55 +00:00
|
|
|
|
|
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
2002-06-18 20:47:49 +00:00
|
|
|
|
<< "\tBefore = " << before
|
|
|
|
|
<< "\n\tafter = " << after << endl;
|
2002-04-02 12:48:41 +00:00
|
|
|
|
|
2002-07-18 14:01:42 +00:00
|
|
|
|
|
2004-03-25 10:12:44 +00:00
|
|
|
|
string latex_str = before + '{';
|
2002-07-18 14:01:42 +00:00
|
|
|
|
// "nice" means that the buffer is exported to LaTeX format but not
|
|
|
|
|
// run through the LaTeX compiler.
|
2003-05-22 21:10:22 +00:00
|
|
|
|
if (runparams.nice) {
|
2004-03-25 10:12:44 +00:00
|
|
|
|
// a relative filename should be relative to the master
|
|
|
|
|
// buffer.
|
2004-04-26 11:05:19 +00:00
|
|
|
|
string basename = params().filename.outputFilename(m_buffer->filePath());
|
|
|
|
|
// Remove the extension so the LaTeX will use whatever
|
|
|
|
|
// is appropriate (when there are several versions in
|
|
|
|
|
// different formats)
|
2004-04-29 09:24:29 +00:00
|
|
|
|
basename = RemoveExtension(basename);
|
|
|
|
|
if(params().filename.isZipped())
|
2004-04-26 11:05:19 +00:00
|
|
|
|
basename = RemoveExtension(basename);
|
|
|
|
|
// This works only if the filename contains no dots besides
|
|
|
|
|
// the just removed one. We can fool here by replacing all
|
|
|
|
|
// dots with a macro whose definition is just a dot ;-)
|
|
|
|
|
latex_str += subst(basename, ".", "\\lyxdot ");
|
2004-03-25 10:12:44 +00:00
|
|
|
|
} else if (file_exists) {
|
|
|
|
|
// Make the filename relative to the lyx file
|
|
|
|
|
// and remove the extension so the LaTeX will use whatever
|
|
|
|
|
// is appropriate (when there are several versions in
|
|
|
|
|
// different formats)
|
|
|
|
|
latex_str += os::external_path(prepareFile(buf, runparams));
|
|
|
|
|
} else
|
|
|
|
|
latex_str += relative_file + " not found!";
|
2002-07-18 14:01:42 +00:00
|
|
|
|
|
2004-03-25 10:12:44 +00:00
|
|
|
|
latex_str += '}' + after;
|
2002-02-13 18:53:36 +00:00
|
|
|
|
os << latex_str;
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
2003-06-07 17:45:43 +00:00
|
|
|
|
lyxerr[Debug::GRAPHICS] << "InsetGraphics::latex outputting:\n"
|
|
|
|
|
<< latex_str << endl;
|
2001-02-08 13:06:55 +00:00
|
|
|
|
// Return how many newlines we issued.
|
2003-02-26 16:05:35 +00:00
|
|
|
|
return int(lyx::count(latex_str.begin(), latex_str.end(),'\n') + 1);
|
2000-02-29 02:19:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-05 12:06:20 +00:00
|
|
|
|
int InsetGraphics::plaintext(Buffer const &, ostream & os,
|
|
|
|
|
OutputParams const &) const
|
2000-04-24 20:58:23 +00:00
|
|
|
|
{
|
2001-02-08 13:06:55 +00:00
|
|
|
|
// No graphics in ascii output. Possible to use gifscii to convert
|
|
|
|
|
// images to ascii approximation.
|
|
|
|
|
// 1. Convert file to ascii using gifscii
|
|
|
|
|
// 2. Read ascii output file and add it to the output stream.
|
2002-01-31 14:20:09 +00:00
|
|
|
|
// at least we send the filename
|
2003-07-22 20:42:40 +00:00
|
|
|
|
os << '<' << bformat(_("Graphics file: %1$s"),
|
|
|
|
|
params().filename.absFilename()) << ">\n";
|
2000-04-24 20:58:23 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-31 18:45:43 +00:00
|
|
|
|
int InsetGraphics::linuxdoc(Buffer const & buf, ostream & os,
|
2004-01-21 17:52:07 +00:00
|
|
|
|
OutputParams const & runparams) const
|
2000-03-06 02:42:40 +00:00
|
|
|
|
{
|
2004-01-21 17:52:07 +00:00
|
|
|
|
string const file_name = runparams.nice ?
|
2003-08-28 07:41:31 +00:00
|
|
|
|
params().filename.relFilename(buf.filePath()):
|
2003-07-28 14:40:29 +00:00
|
|
|
|
params().filename.absFilename();
|
2003-07-26 21:53:54 +00:00
|
|
|
|
|
|
|
|
|
os << "<eps file=\"" << file_name << "\">\n";
|
|
|
|
|
os << "<img src=\"" << file_name << "\">";
|
2000-03-06 02:42:40 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
|
2001-02-08 13:06:55 +00:00
|
|
|
|
// For explanation on inserting graphics into DocBook checkout:
|
2003-06-12 08:52:36 +00:00
|
|
|
|
// http://en.tldp.org/LDP/LDP-Author-Guide/inserting-pictures.html
|
2001-02-08 13:06:55 +00:00
|
|
|
|
// See also the docbook guide at http://www.docbook.org/
|
2003-08-28 07:41:31 +00:00
|
|
|
|
int InsetGraphics::docbook(Buffer const &, ostream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const
|
2000-03-06 02:42:40 +00:00
|
|
|
|
{
|
2002-03-21 17:09:55 +00:00
|
|
|
|
// In DocBook v5.0, the graphic tag will be eliminated from DocBook, will
|
|
|
|
|
// need to switch to MediaObject. However, for now this is sufficient and
|
2001-02-08 13:06:55 +00:00
|
|
|
|
// easier to use.
|
2002-02-20 09:04:56 +00:00
|
|
|
|
os << "<graphic fileref=\"&" << graphic_label << ";\">";
|
2000-03-06 02:42:40 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void InsetGraphics::validate(LaTeXFeatures & features) const
|
2000-02-29 02:19:17 +00:00
|
|
|
|
{
|
2000-08-14 09:44:53 +00:00
|
|
|
|
// If we have no image, we should not require anything.
|
2002-02-27 09:59:52 +00:00
|
|
|
|
if (params().filename.empty())
|
2003-02-26 16:05:35 +00:00
|
|
|
|
return;
|
2000-07-31 12:30:10 +00:00
|
|
|
|
|
2003-07-22 20:42:40 +00:00
|
|
|
|
features.includeFile(graphic_label,
|
|
|
|
|
RemoveExtension(params().filename.absFilename()));
|
2002-02-20 09:04:56 +00:00
|
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
|
features.require("graphicx");
|
2000-07-31 12:30:10 +00:00
|
|
|
|
|
2004-04-26 11:05:19 +00:00
|
|
|
|
if (features.nice()) {
|
|
|
|
|
Buffer const * m_buffer = features.buffer().getMasterBuffer();
|
|
|
|
|
string basename =
|
|
|
|
|
params().filename.outputFilename(m_buffer->filePath());
|
|
|
|
|
string const file_ = params().filename.absFilename();
|
|
|
|
|
if (!(IsFileReadable(file_ + ".eps") || IsFileReadable(file_ + ".ps")))
|
|
|
|
|
basename = RemoveExtension(basename);
|
|
|
|
|
if (contains(basename, "."))
|
|
|
|
|
features.require("lyxdot");
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
|
if (params().subcaption)
|
2001-11-19 15:34:11 +00:00
|
|
|
|
features.require("subfigure");
|
2000-02-29 02:19:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
|
2003-06-03 15:10:14 +00:00
|
|
|
|
bool InsetGraphics::setParams(InsetGraphicsParams const & p)
|
2000-02-29 02:19:17 +00:00
|
|
|
|
{
|
2000-08-08 09:18:39 +00:00
|
|
|
|
// If nothing is changed, just return and say so.
|
2003-02-26 16:05:35 +00:00
|
|
|
|
if (params() == p && !p.filename.empty())
|
2000-08-14 09:44:53 +00:00
|
|
|
|
return false;
|
2000-07-31 12:30:10 +00:00
|
|
|
|
|
2000-08-14 09:44:53 +00:00
|
|
|
|
// Copy the new parameters.
|
2002-02-27 09:59:52 +00:00
|
|
|
|
params_ = p;
|
2000-07-31 12:30:10 +00:00
|
|
|
|
|
2003-06-30 23:56:22 +00:00
|
|
|
|
// Update the display using the new parameters.
|
|
|
|
|
graphic_->update(params().as_grfxParams());
|
2000-08-14 09:44:53 +00:00
|
|
|
|
|
|
|
|
|
// We have changed data, report it.
|
|
|
|
|
return true;
|
2000-02-29 02:19:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
|
InsetGraphicsParams const & InsetGraphics::params() const
|
2000-07-31 12:30:10 +00:00
|
|
|
|
{
|
2002-02-27 09:59:52 +00:00
|
|
|
|
return params_;
|
2000-07-31 12:30:10 +00:00
|
|
|
|
}
|
2003-03-07 18:44:57 +00:00
|
|
|
|
|
|
|
|
|
|
2004-04-13 10:36:09 +00:00
|
|
|
|
void InsetGraphics::editGraphics(InsetGraphicsParams const & p, Buffer const & buffer) const
|
|
|
|
|
{
|
|
|
|
|
string const file_with_path = p.filename.absFilename();
|
|
|
|
|
formats.edit(buffer, file_with_path, getExtFromContents(file_with_path));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-07 18:44:57 +00:00
|
|
|
|
string const InsetGraphicsMailer::name_("graphics");
|
|
|
|
|
|
|
|
|
|
InsetGraphicsMailer::InsetGraphicsMailer(InsetGraphics & inset)
|
|
|
|
|
: inset_(inset)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2003-07-23 09:54:21 +00:00
|
|
|
|
string const InsetGraphicsMailer::inset2string(Buffer const & buffer) const
|
2003-03-07 18:44:57 +00:00
|
|
|
|
{
|
2003-07-23 09:54:21 +00:00
|
|
|
|
return params2string(inset_.params(), buffer);
|
2003-03-07 18:44:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetGraphicsMailer::string2params(string const & in,
|
2003-07-23 09:54:21 +00:00
|
|
|
|
Buffer const & buffer,
|
2003-07-25 17:11:25 +00:00
|
|
|
|
InsetGraphicsParams & params)
|
2003-03-07 18:44:57 +00:00
|
|
|
|
{
|
|
|
|
|
params = InsetGraphicsParams();
|
2003-04-24 20:02:49 +00:00
|
|
|
|
if (in.empty())
|
|
|
|
|
return;
|
|
|
|
|
|
2003-09-15 11:00:00 +00:00
|
|
|
|
istringstream data(in);
|
2003-03-07 18:44:57 +00:00
|
|
|
|
LyXLex lex(0,0);
|
|
|
|
|
lex.setStream(data);
|
|
|
|
|
|
2003-12-11 15:23:15 +00:00
|
|
|
|
string name;
|
|
|
|
|
lex >> name;
|
|
|
|
|
if (!lex || name != name_)
|
|
|
|
|
return print_mailer_error("InsetGraphicsMailer", in, 1, name_);
|
2003-03-07 18:44:57 +00:00
|
|
|
|
|
2003-12-11 15:23:15 +00:00
|
|
|
|
InsetGraphics inset;
|
|
|
|
|
inset.readInsetGraphics(lex, buffer.filePath());
|
|
|
|
|
params = inset.params();
|
2003-03-07 18:44:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string const
|
2003-07-21 21:51:17 +00:00
|
|
|
|
InsetGraphicsMailer::params2string(InsetGraphicsParams const & params,
|
2003-07-23 09:54:21 +00:00
|
|
|
|
Buffer const & buffer)
|
2003-03-07 18:44:57 +00:00
|
|
|
|
{
|
|
|
|
|
ostringstream data;
|
|
|
|
|
data << name_ << ' ';
|
2003-07-23 09:54:21 +00:00
|
|
|
|
params.Write(data, buffer.filePath());
|
2003-03-07 18:44:57 +00:00
|
|
|
|
data << "\\end_inset\n";
|
2003-09-15 11:00:00 +00:00
|
|
|
|
return data.str();
|
2003-03-07 18:44:57 +00:00
|
|
|
|
}
|