2000-02-29 02:19:17 +00:00
|
|
|
/* This file is part of
|
2002-03-21 17:09:55 +00:00
|
|
|
* ======================================================
|
|
|
|
*
|
2000-02-29 02:19:17 +00:00
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2002-01-29 09:26:24 +00:00
|
|
|
* Copyright 1995-2002 the LyX Team.
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2002-01-29 09:26:24 +00:00
|
|
|
* \author Baruch Even
|
|
|
|
* \author Herbert Voss <voss@lyx.org>
|
2000-02-29 02:19:17 +00:00
|
|
|
* ====================================================== */
|
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
/*
|
|
|
|
Known BUGS:
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
* If the image is from the clipart, and the document is moved to another
|
2002-03-18 17:37:08 +00:00
|
|
|
directory, the user is screwed. Need a way to handle it.
|
|
|
|
This amounts to a problem of when to use relative or absolute file paths
|
|
|
|
We should probably use what the user asks to use... but when he chooses
|
2002-03-21 17:09:55 +00:00
|
|
|
by the file dialog we normally get an absolute path and this may not be
|
2002-03-18 17:37:08 +00:00
|
|
|
what the user meant.
|
|
|
|
|
|
|
|
Note that browseRelFile in helper_funcs.* provides a file name
|
|
|
|
which is relative if it is at reference path (here puffer path)
|
|
|
|
level or below, and an absolute path if the file name is not a
|
|
|
|
`natural' relative file name. In any case,
|
2002-03-21 17:09:55 +00:00
|
|
|
MakeAbsPath(filename, buf->filePath())
|
2002-03-18 17:37:08 +00:00
|
|
|
is guaranteed to provide the correct absolute path. This is what is
|
|
|
|
done know for include insets. Feel free to ask me -- JMarc
|
|
|
|
14/01/2002
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
TODO Before initial production release:
|
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.
|
2000-07-31 12:30:10 +00:00
|
|
|
* Keep a tab on the image file, if it changes, update the lyx view.
|
2002-03-18 17:37:08 +00:00
|
|
|
* 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:
|
|
|
|
* Current version is 1 (inset file format version), when changing it
|
|
|
|
* it should be changed in the Write() function when writing in one place
|
|
|
|
* and when reading one should change the version check and the error message.
|
|
|
|
* 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
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
2002-03-21 17:09:55 +00:00
|
|
|
#endif
|
2000-02-29 02:19:17 +00:00
|
|
|
|
|
|
|
#include "insets/insetgraphics.h"
|
2000-07-31 12:30:10 +00:00
|
|
|
#include "insets/insetgraphicsParams.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
|
2002-06-26 14:15:08 +00:00
|
|
|
#include "graphics/GraphicsLoader.h"
|
2002-02-27 09:59:52 +00:00
|
|
|
#include "graphics/GraphicsImage.h"
|
2002-06-28 11:22:56 +00:00
|
|
|
#include "graphics/GraphicsParams.h"
|
2000-08-14 09:44:53 +00:00
|
|
|
|
2002-05-23 12:08:47 +00:00
|
|
|
#include "frontends/LyXView.h"
|
2002-03-11 13:52:19 +00:00
|
|
|
#include "lyxtext.h"
|
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"
|
2002-05-23 09:21:32 +00:00
|
|
|
#include "frontends/Painter.h"
|
2001-02-08 13:06:55 +00:00
|
|
|
#include "lyxrc.h"
|
2002-05-24 14:34:32 +00:00
|
|
|
#include "frontends/font_metrics.h"
|
2000-07-31 12:30:10 +00:00
|
|
|
#include "debug.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
#include "gettext.h"
|
2002-02-27 09:59:52 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
|
|
|
|
#include "frontends/Dialogs.h"
|
2002-04-24 10:53:55 +00:00
|
|
|
#include "frontends/Alert.h"
|
2002-02-27 09:59:52 +00:00
|
|
|
#include "frontends/controllers/helper_funcs.h" // getVectorFromString
|
2002-02-16 15:59:55 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
#include "support/LAssert.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-03-26 18:08:07 +00:00
|
|
|
#include "support/path.h"
|
2002-06-18 20:47:49 +00:00
|
|
|
#include "support/systemcall.h"
|
2002-06-26 11:55:40 +00:00
|
|
|
#include "support/os.h"
|
2000-03-09 23:58:55 +00:00
|
|
|
|
2002-06-25 15:59:10 +00:00
|
|
|
#include <boost/bind.hpp>
|
2002-06-26 14:15:08 +00:00
|
|
|
#include <boost/signals/trackable.hpp>
|
2002-06-25 15:59:10 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
#include <algorithm> // For the std::max
|
2002-02-16 15:59:55 +00:00
|
|
|
|
2002-06-25 15:59:10 +00:00
|
|
|
// Very, Very UGLY!
|
|
|
|
extern BufferView * current_view;
|
|
|
|
|
2001-02-08 13:06:55 +00:00
|
|
|
extern string system_tempdir;
|
2000-03-09 23:58:55 +00:00
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
using std::ostream;
|
2001-07-28 12:24:16 +00:00
|
|
|
using std::endl;
|
2000-03-09 23:58:55 +00:00
|
|
|
|
2002-01-29 09:26:24 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2002-02-05 12:19:32 +00:00
|
|
|
int const VersionNumber = 1;
|
2002-01-29 09:26:24 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2001-07-29 06:04:20 +00:00
|
|
|
|
2002-02-27 09:59:52 +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-27 09:59:52 +00:00
|
|
|
} // namespace anon
|
2001-02-08 13:06:55 +00:00
|
|
|
|
|
|
|
|
2002-02-20 09:04:56 +00:00
|
|
|
namespace {
|
|
|
|
|
2002-06-05 15:07:44 +00:00
|
|
|
string const uniqueID()
|
2002-02-20 09:04:56 +00:00
|
|
|
{
|
|
|
|
static unsigned int seed = 1000;
|
|
|
|
|
|
|
|
ostringstream ost;
|
|
|
|
ost << "graph" << ++seed;
|
|
|
|
|
|
|
|
// Needed if we use lyxstring.
|
|
|
|
return ost.str().c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
2002-06-26 14:15:08 +00:00
|
|
|
struct InsetGraphics::Cache : boost::signals::trackable
|
2002-06-25 15:59:10 +00:00
|
|
|
{
|
|
|
|
///
|
|
|
|
Cache(InsetGraphics &);
|
|
|
|
///
|
|
|
|
void update(string const & file_with_path);
|
|
|
|
|
|
|
|
///
|
|
|
|
int old_ascent;
|
|
|
|
///
|
2002-06-26 14:15:08 +00:00
|
|
|
grfx::Loader loader;
|
2002-06-25 15:59:10 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
InsetGraphics & parent_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
InsetGraphics::Cache::Cache(InsetGraphics & p)
|
2002-06-26 14:15:08 +00:00
|
|
|
: old_ascent(0), parent_(p)
|
2002-06-25 15:59:10 +00:00
|
|
|
{
|
2002-06-26 14:15:08 +00:00
|
|
|
loader.statusChanged.connect(
|
|
|
|
boost::bind(&InsetGraphics::statusChanged, &parent_));
|
2002-06-25 15:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetGraphics::Cache::update(string const & file_with_path)
|
|
|
|
{
|
|
|
|
lyx::Assert(!file_with_path.empty());
|
|
|
|
|
2002-06-26 14:15:08 +00:00
|
|
|
string const path = OnlyPath(file_with_path);
|
2002-06-28 11:22:56 +00:00
|
|
|
loader.reset(file_with_path, parent_.params().as_grfxParams(path));
|
2002-06-25 15:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-09 23:58:55 +00:00
|
|
|
InsetGraphics::InsetGraphics()
|
2002-06-05 15:07:44 +00:00
|
|
|
: graphic_label(uniqueID()),
|
2002-06-25 15:59:10 +00:00
|
|
|
cache_(new Cache(*this))
|
2000-03-09 23:58:55 +00:00
|
|
|
{}
|
2000-02-29 02:19:17 +00:00
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
2002-03-22 16:37:52 +00:00
|
|
|
InsetGraphics::InsetGraphics(InsetGraphics const & ig,
|
|
|
|
string const & filepath,
|
|
|
|
bool same_id)
|
2002-02-28 13:10:26 +00:00
|
|
|
: Inset(ig, same_id),
|
2002-06-05 15:07:44 +00:00
|
|
|
graphic_label(uniqueID()),
|
2002-06-25 15:59:10 +00:00
|
|
|
cache_(new Cache(*this))
|
2001-07-14 20:11:35 +00:00
|
|
|
{
|
2002-03-22 16:37:52 +00:00
|
|
|
setParams(ig.params(), filepath);
|
2001-07-14 20:11:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
InsetGraphics::~InsetGraphics()
|
|
|
|
{
|
2000-08-14 09:44:53 +00:00
|
|
|
// Emits the hide signal to the dialog connected (if any)
|
2001-02-19 16:01:31 +00:00
|
|
|
hideDialog();
|
2000-07-31 12:30:10 +00:00
|
|
|
}
|
2000-02-29 02:19:17 +00:00
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
2002-01-31 14:20:09 +00:00
|
|
|
string const InsetGraphics::statusMessage() const
|
2000-10-12 10:46:06 +00:00
|
|
|
{
|
2001-05-31 02:23:46 +00:00
|
|
|
string msg;
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2002-06-26 14:15:08 +00:00
|
|
|
switch (cache_->loader.status()) {
|
2002-02-27 09:59:52 +00:00
|
|
|
case grfx::WaitingToLoad:
|
|
|
|
msg = _("Waiting for draw request to start loading...");
|
|
|
|
break;
|
|
|
|
case grfx::Loading:
|
|
|
|
msg = _("Loading...");
|
|
|
|
break;
|
|
|
|
case grfx::Converting:
|
|
|
|
msg = _("Converting to loadable format...");
|
|
|
|
break;
|
2002-06-26 14:15:08 +00:00
|
|
|
case grfx::Loaded:
|
|
|
|
msg = _("Loaded into memory. Must now generate pixmap.");
|
|
|
|
break;
|
2002-02-27 09:59:52 +00:00
|
|
|
case grfx::ScalingEtc:
|
2002-06-25 15:59:10 +00:00
|
|
|
msg = _("Scaling etc...");
|
|
|
|
break;
|
2002-06-26 14:15:08 +00:00
|
|
|
case grfx::Ready:
|
|
|
|
msg = _("Ready to display");
|
2002-02-27 09:59:52 +00:00
|
|
|
break;
|
|
|
|
case grfx::ErrorNoFile:
|
|
|
|
msg = _("No file found!");
|
|
|
|
break;
|
|
|
|
case grfx::ErrorConverting:
|
|
|
|
msg = _("Error converting to loadable format");
|
|
|
|
break;
|
2002-06-26 14:15:08 +00:00
|
|
|
case grfx::ErrorLoading:
|
|
|
|
msg = _("Error loading file into memory");
|
|
|
|
break;
|
|
|
|
case grfx::ErrorGeneratingPixmap:
|
|
|
|
msg = _("Error generating the pixmap");
|
2002-02-27 09:59:52 +00:00
|
|
|
break;
|
|
|
|
case grfx::ErrorUnknown:
|
2002-03-19 09:47:34 +00:00
|
|
|
msg = _("No image");
|
2002-02-27 09:59:52 +00:00
|
|
|
break;
|
2000-10-12 10:46:06 +00:00
|
|
|
}
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2000-10-12 10:46:06 +00:00
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
2002-06-25 15:59:10 +00:00
|
|
|
bool InsetGraphics::imageIsDrawable() const
|
2002-02-27 09:59:52 +00:00
|
|
|
{
|
2002-06-26 14:15:08 +00:00
|
|
|
if (!cache_->loader.image() || cache_->loader.status() != grfx::Ready)
|
2002-06-25 15:59:10 +00:00
|
|
|
return false;
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2002-07-15 17:17:57 +00:00
|
|
|
return cache_->loader.image()->isDrawable();
|
2002-02-27 09:59:52 +00:00
|
|
|
}
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2000-08-14 09:44:53 +00:00
|
|
|
int InsetGraphics::ascent(BufferView *, LyXFont const &) const
|
2000-02-29 02:19:17 +00:00
|
|
|
{
|
2002-06-25 15:59:10 +00:00
|
|
|
cache_->old_ascent = 50;
|
|
|
|
if (imageIsDrawable())
|
2002-06-26 14:15:08 +00:00
|
|
|
cache_->old_ascent = cache_->loader.image()->getHeight();
|
2002-06-25 15:59:10 +00:00
|
|
|
return cache_->old_ascent;
|
2000-02-29 02:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-14 09:44:53 +00:00
|
|
|
int InsetGraphics::descent(BufferView *, LyXFont const &) const
|
2000-02-29 02:19:17 +00:00
|
|
|
{
|
2000-08-08 09:18:39 +00:00
|
|
|
return 0;
|
2000-02-29 02:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-12 10:46:06 +00:00
|
|
|
int InsetGraphics::width(BufferView *, LyXFont const & font) const
|
2000-02-29 02:19:17 +00:00
|
|
|
{
|
2002-06-25 15:59:10 +00:00
|
|
|
if (imageIsDrawable())
|
2002-06-26 14:15:08 +00:00
|
|
|
return cache_->loader.image()->getWidth();
|
2000-10-12 10:46:06 +00:00
|
|
|
else {
|
2001-02-08 13:06:55 +00:00
|
|
|
int font_width = 0;
|
2001-09-24 17:12:27 +00:00
|
|
|
|
|
|
|
LyXFont msgFont(font);
|
|
|
|
msgFont.setFamily(LyXFont::SANS_FAMILY);
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
string const justname = OnlyFilename (params().filename);
|
2001-09-24 17:12:27 +00:00
|
|
|
if (!justname.empty()) {
|
|
|
|
msgFont.setSize(LyXFont::SIZE_FOOTNOTE);
|
2002-05-24 14:34:32 +00:00
|
|
|
font_width = font_metrics::width(justname, msgFont);
|
2001-09-24 17:12:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
string const msg = statusMessage();
|
|
|
|
if (!msg.empty()) {
|
|
|
|
msgFont.setSize(LyXFont::SIZE_TINY);
|
2002-05-24 14:34:32 +00:00
|
|
|
int const msg_width = font_metrics::width(msg, msgFont);
|
2002-02-27 09:59:52 +00:00
|
|
|
font_width = std::max(font_width, msg_width);
|
2001-09-24 17:12:27 +00:00
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
return std::max(50, font_width + 15);
|
2000-10-12 10:46:06 +00:00
|
|
|
}
|
2000-02-29 02:19:17 +00:00
|
|
|
}
|
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
2000-06-21 15:07:57 +00:00
|
|
|
void InsetGraphics::draw(BufferView * bv, LyXFont const & font,
|
2002-03-21 17:09:55 +00:00
|
|
|
int baseline, float & x, bool) const
|
2000-02-29 02:19:17 +00:00
|
|
|
{
|
2002-06-25 15:59:10 +00:00
|
|
|
int oasc = cache_->old_ascent;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2000-08-14 09:44:53 +00:00
|
|
|
int ldescent = descent(bv, font);
|
2002-02-27 09:59:52 +00:00
|
|
|
int lascent = ascent(bv, font);
|
|
|
|
int lwidth = width(bv, font);
|
2001-02-08 13:06:55 +00:00
|
|
|
|
2002-03-11 13:52:19 +00:00
|
|
|
// we may have changed while someone other was drawing us so better
|
|
|
|
// to not draw anything as we surely call to redraw ourself soon.
|
|
|
|
// This is not a nice thing to do and should be fixed properly somehow.
|
|
|
|
// But I still don't know the best way to go. So let's do this like this
|
|
|
|
// for now (Jug 20020311)
|
|
|
|
if (lascent != oasc) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
// Make sure now that x is updated upon exit from this routine
|
2001-07-27 20:27:56 +00:00
|
|
|
int old_x = int(x);
|
2001-02-08 13:06:55 +00:00
|
|
|
x += lwidth;
|
2000-08-14 09:44:53 +00:00
|
|
|
|
2002-06-26 14:15:08 +00:00
|
|
|
if (cache_->loader.status() == grfx::WaitingToLoad) {
|
2002-07-15 11:08:46 +00:00
|
|
|
cache_->loader.startLoading(*this, *bv);
|
2002-02-27 09:59:52 +00:00
|
|
|
}
|
|
|
|
|
2000-08-10 13:15:05 +00:00
|
|
|
// This will draw the graphics. If the graphics has not been loaded yet,
|
|
|
|
// we draw just a rectangle.
|
2002-02-27 09:59:52 +00:00
|
|
|
Painter & paint = bv->painter();
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2002-06-25 15:59:10 +00:00
|
|
|
if (imageIsDrawable()) {
|
2001-07-16 14:42:40 +00:00
|
|
|
paint.image(old_x + 2, baseline - lascent,
|
2002-03-21 17:09:55 +00:00
|
|
|
lwidth - 4, lascent + ldescent,
|
2002-06-26 14:15:08 +00:00
|
|
|
*cache_->loader.image());
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2002-03-11 13:52:19 +00:00
|
|
|
} else {
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2001-07-16 14:42:40 +00:00
|
|
|
paint.rectangle(old_x + 2, baseline - lascent,
|
2002-03-21 17:09:55 +00:00
|
|
|
lwidth - 4,
|
|
|
|
lascent + ldescent);
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2001-09-24 17:12:27 +00:00
|
|
|
// Print the file name.
|
|
|
|
LyXFont msgFont(font);
|
|
|
|
msgFont.setFamily(LyXFont::SANS_FAMILY);
|
2002-02-27 09:59:52 +00:00
|
|
|
string const justname = OnlyFilename (params().filename);
|
2001-09-24 17:12:27 +00:00
|
|
|
if (!justname.empty()) {
|
2000-10-12 10:46:06 +00:00
|
|
|
msgFont.setSize(LyXFont::SIZE_FOOTNOTE);
|
2002-05-29 16:21:03 +00:00
|
|
|
paint.text(old_x + 8,
|
2002-05-24 14:34:32 +00:00
|
|
|
baseline - font_metrics::maxAscent(msgFont) - 4,
|
2001-09-24 17:12:27 +00:00
|
|
|
justname, msgFont);
|
|
|
|
}
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2001-09-24 17:12:27 +00:00
|
|
|
// Print the message.
|
|
|
|
string const msg = statusMessage();
|
|
|
|
if (!msg.empty()) {
|
2000-10-12 10:46:06 +00:00
|
|
|
msgFont.setSize(LyXFont::SIZE_TINY);
|
2001-07-16 14:42:40 +00:00
|
|
|
paint.text(old_x + 8, baseline - 4, msg, msgFont);
|
2000-08-10 13:15:05 +00:00
|
|
|
}
|
2000-08-08 09:18:39 +00:00
|
|
|
}
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2002-03-11 14:04:41 +00:00
|
|
|
// the status message may mean we changed size, so indicate
|
|
|
|
// we need a row redraw
|
2002-06-25 15:59:10 +00:00
|
|
|
#if 0
|
2002-03-20 10:36:03 +00:00
|
|
|
if (old_status_ != grfx::ErrorUnknown && old_status_ != cached_status_) {
|
2002-03-11 14:04:41 +00:00
|
|
|
bv->getLyXText()->status(bv, LyXText::CHANGED_IN_DRAW);
|
|
|
|
}
|
2002-06-25 15:59:10 +00:00
|
|
|
#endif
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
// Reset the cache, ready for the next draw request
|
2002-06-25 15:59:10 +00:00
|
|
|
#if 0
|
2002-02-27 09:59:52 +00:00
|
|
|
cached_status_ = grfx::ErrorUnknown;
|
2002-05-21 23:50:36 +00:00
|
|
|
cached_image_.reset();
|
2002-02-27 09:59:52 +00:00
|
|
|
cache_filled_ = false;
|
2002-06-25 15:59:10 +00:00
|
|
|
#endif
|
2000-02-29 02:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-26 17:33:14 +00:00
|
|
|
void InsetGraphics::edit(BufferView *bv, int, int, mouse_button::state)
|
2000-02-29 02:19:17 +00:00
|
|
|
{
|
2001-02-08 13:06:55 +00:00
|
|
|
bv->owner()->getDialogs()->showGraphics(this);
|
2000-02-29 02:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
void InsetGraphics::edit(BufferView * bv, bool)
|
|
|
|
{
|
2002-05-26 17:33:14 +00:00
|
|
|
edit(bv, 0, 0, mouse_button::none);
|
2001-07-20 14:18:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
Inset::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
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-25 11:04:34 +00:00
|
|
|
void InsetGraphics::write(Buffer const *, ostream & os) const
|
2000-02-29 02:19:17 +00:00
|
|
|
{
|
2002-01-29 09:26:24 +00:00
|
|
|
os << "Graphics FormatVersion " << VersionNumber << '\n';
|
2002-03-25 11:04:34 +00:00
|
|
|
params().Write(os);
|
2000-02-29 02:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +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")
|
2002-03-22 16:37:52 +00:00
|
|
|
readInsetGraphics(lex);
|
2001-07-28 12:24:16 +00:00
|
|
|
else if (token == "Figure") // Compatibility reading of FigInset figures.
|
2002-03-22 16:37:52 +00:00
|
|
|
readFigInset(lex);
|
2001-07-28 12:24:16 +00:00
|
|
|
else
|
2002-02-20 16:34:53 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "Not a Graphics or Figure inset!\n";
|
2001-07-28 12:24:16 +00:00
|
|
|
|
2002-06-25 15:59:10 +00:00
|
|
|
cache_->update(MakeAbsPath(params().filename, buf->filePath()));
|
2001-07-28 12:24:16 +00:00
|
|
|
}
|
|
|
|
|
2002-03-25 11:04:34 +00:00
|
|
|
|
2002-03-22 16:37:52 +00:00
|
|
|
void InsetGraphics::readInsetGraphics(LyXLex & lex)
|
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 << '\''
|
2002-02-27 09:59:52 +00:00
|
|
|
<< std::endl;
|
2000-08-14 09:44:53 +00:00
|
|
|
|
|
|
|
if (token.empty()) {
|
|
|
|
continue;
|
|
|
|
} else if (token == "\\end_inset") {
|
|
|
|
finished = true;
|
|
|
|
} else if (token == "FormatVersion") {
|
|
|
|
lex.next();
|
2001-08-06 19:13:25 +00:00
|
|
|
int version = lex.getInteger();
|
2002-01-29 09:26:24 +00:00
|
|
|
if (version > VersionNumber)
|
2000-08-14 09:44:53 +00:00
|
|
|
lyxerr
|
|
|
|
<< "This document was created with a newer Graphics widget"
|
|
|
|
", You should use a newer version of LyX to read this"
|
|
|
|
" file."
|
2002-02-27 09:59:52 +00:00
|
|
|
<< std::endl;
|
2000-08-14 09:44:53 +00:00
|
|
|
// TODO: Possibly open up a dialog?
|
|
|
|
}
|
|
|
|
else {
|
2002-03-22 16:37:52 +00:00
|
|
|
if (! params_.Read(lex, token))
|
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
|
|
|
|
2002-02-04 15:36:45 +00:00
|
|
|
// FormatVersion < 1.0 (LyX < 1.2)
|
2002-03-22 16:37:52 +00:00
|
|
|
void InsetGraphics::readFigInset(LyXLex & lex)
|
2001-07-28 12:24:16 +00:00
|
|
|
{
|
2002-02-27 09:59:52 +00:00
|
|
|
std::vector<string> const oldUnits =
|
2002-01-29 09:26:24 +00:00
|
|
|
getVectorFromString("pt,cm,in,p%,c%");
|
2001-07-28 12:24:16 +00:00
|
|
|
bool finished = false;
|
2002-03-21 17:09:55 +00:00
|
|
|
// set the display default
|
|
|
|
if (lyxrc.display_graphics == "mono")
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.display = InsetGraphicsParams::MONOCHROME;
|
2002-03-21 17:09:55 +00:00
|
|
|
else if (lyxrc.display_graphics == "gray")
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.display = InsetGraphicsParams::GRAYSCALE;
|
2002-03-21 17:09:55 +00:00
|
|
|
else if (lyxrc.display_graphics == "color")
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.display = InsetGraphicsParams::COLOR;
|
2002-02-01 09:57:44 +00:00
|
|
|
else
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.display = InsetGraphicsParams::NONE;
|
2001-08-06 19:13:25 +00:00
|
|
|
while (lex.isOK() && !finished) {
|
2001-07-28 12:24:16 +00:00
|
|
|
lex.next();
|
|
|
|
|
2001-08-06 19:13:25 +00:00
|
|
|
string const token = lex.getString();
|
2002-02-20 16:34:53 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "Token: " << token << endl;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-07-28 12:24:16 +00:00
|
|
|
if (token.empty())
|
|
|
|
continue;
|
|
|
|
else if (token == "\\end_inset") {
|
|
|
|
finished = true;
|
|
|
|
} else if (token == "file") {
|
|
|
|
if (lex.next()) {
|
2002-03-22 16:37:52 +00:00
|
|
|
params_.filename = lex.getString();
|
2001-07-28 12:24:16 +00:00
|
|
|
}
|
|
|
|
} else if (token == "extra") {
|
|
|
|
if (lex.next());
|
|
|
|
// kept for backwards compability. Delete in 0.13.x
|
|
|
|
} else if (token == "subcaption") {
|
2001-08-06 19:13:25 +00:00
|
|
|
if (lex.eatLine())
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.subcaptionText = lex.getString();
|
2001-07-28 12:24:16 +00:00
|
|
|
} else if (token == "label") {
|
|
|
|
if (lex.next());
|
|
|
|
// kept for backwards compability. Delete in 0.13.x
|
|
|
|
} else if (token == "angle") {
|
2002-04-08 17:26:33 +00:00
|
|
|
if (lex.next()) {
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.rotate = true;
|
|
|
|
params_.rotateAngle = lex.getFloat();
|
2002-04-08 17:26:33 +00:00
|
|
|
}
|
2001-07-28 12:24:16 +00:00
|
|
|
} else if (token == "size") {
|
2002-01-29 09:26:24 +00:00
|
|
|
if (lex.next())
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.lyxwidth = LyXLength(lex.getString()+"pt");
|
2002-01-29 09:26:24 +00:00
|
|
|
if (lex.next())
|
2002-04-06 13:05:46 +00:00
|
|
|
params_.lyxheight = LyXLength(lex.getString()+"pt");
|
2002-03-26 18:20:11 +00:00
|
|
|
params_.lyxsize_type = InsetGraphicsParams::WH;
|
2001-07-28 12:24:16 +00:00
|
|
|
} else if (token == "flags") {
|
|
|
|
if (lex.next())
|
2001-08-06 19:13:25 +00:00
|
|
|
switch (lex.getInteger()) {
|
2002-03-21 17:09:55 +00:00
|
|
|
case 1: params_.display = InsetGraphicsParams::MONOCHROME;
|
2002-02-01 09:57:44 +00:00
|
|
|
break;
|
2002-03-21 17:09:55 +00:00
|
|
|
case 2: params_.display = InsetGraphicsParams::GRAYSCALE;
|
2002-02-01 09:57:44 +00:00
|
|
|
break;
|
2002-03-21 17:09:55 +00:00
|
|
|
case 3: params_.display = InsetGraphicsParams::COLOR;
|
2002-02-01 09:57:44 +00:00
|
|
|
break;
|
2001-07-28 12:24:16 +00:00
|
|
|
}
|
|
|
|
} else if (token == "subfigure") {
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.subcaption = true;
|
2001-07-28 12:24:16 +00:00
|
|
|
} else if (token == "width") {
|
2002-01-29 09:26:24 +00:00
|
|
|
if (lex.next()) {
|
|
|
|
int i = lex.getInteger();
|
2001-08-06 19:13:25 +00:00
|
|
|
if (lex.next()) {
|
2002-01-29 09:26:24 +00:00
|
|
|
if (i == 5) {
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.scale = lex.getInteger();
|
|
|
|
params_.size_type = InsetGraphicsParams::SCALE;
|
2002-01-29 09:26:24 +00:00
|
|
|
} else {
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.width = LyXLength(lex.getString()+oldUnits[i]);
|
|
|
|
params_.size_type = InsetGraphicsParams::WH;
|
2002-01-29 09:26:24 +00:00
|
|
|
}
|
2001-08-06 19:13:25 +00:00
|
|
|
}
|
2002-01-29 09:26:24 +00:00
|
|
|
}
|
2001-07-28 12:24:16 +00:00
|
|
|
} else if (token == "height") {
|
2002-01-29 09:26:24 +00:00
|
|
|
if (lex.next()) {
|
|
|
|
int i = lex.getInteger();
|
2001-08-06 19:13:25 +00:00
|
|
|
if (lex.next()) {
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.height = LyXLength(lex.getString()+oldUnits[i]);
|
|
|
|
params_.size_type = InsetGraphicsParams::WH;
|
2001-08-06 19:13:25 +00:00
|
|
|
}
|
2002-01-29 09:26:24 +00:00
|
|
|
}
|
2001-07-28 12:24:16 +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())
|
|
|
|
options << " bb=" << strip(params().bb) << ",\n";
|
|
|
|
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";
|
2002-02-27 09:59:52 +00:00
|
|
|
if (params().size_type == InsetGraphicsParams::WH) {
|
|
|
|
if (!params().width.zero())
|
|
|
|
options << " width=" << params().width.asLatexString() << ",\n";
|
|
|
|
if (!params().height.zero())
|
|
|
|
options << " height=" << params().height.asLatexString() << ",\n";
|
|
|
|
} else if (params().size_type == InsetGraphicsParams::SCALE) {
|
|
|
|
if (params().scale > 0)
|
|
|
|
options << " scale=" << double(params().scale)/100.0 << ",\n";
|
2002-01-29 09:26:24 +00:00
|
|
|
}
|
2002-02-27 09:59:52 +00:00
|
|
|
if (params().keepAspectRatio)
|
2002-02-07 19:37:34 +00:00
|
|
|
options << " keepaspectratio,\n";
|
2001-07-28 12:24:16 +00:00
|
|
|
// Make sure it's not very close to zero, a float can be effectively
|
|
|
|
// zero but not exactly zero.
|
2002-02-27 09:59:52 +00:00
|
|
|
if (!lyx::float_equal(params().rotateAngle, 0, 0.001) && params().rotate) {
|
|
|
|
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-02-27 09:59:52 +00:00
|
|
|
if (!params().special.empty())
|
|
|
|
options << params().special << ",\n";
|
2001-02-08 13:06:55 +00:00
|
|
|
string opts = options.str().c_str();
|
2002-02-07 19:37:34 +00:00
|
|
|
return opts.substr(0,opts.size()-2); // delete last ",\n"
|
2001-02-08 13:06:55 +00:00
|
|
|
}
|
|
|
|
|
2001-07-29 06:04:20 +00:00
|
|
|
namespace {
|
2002-02-27 09:59:52 +00:00
|
|
|
string findTargetFormat(string const & suffix)
|
2001-07-29 06:04:20 +00:00
|
|
|
{
|
|
|
|
// lyxrc.pdf_mode means:
|
|
|
|
// Are we creating a PDF or a PS file?
|
2002-03-21 17:09:55 +00:00
|
|
|
// (Should actually mean, are we using latex or pdflatex).
|
2001-07-29 06:04:20 +00:00
|
|
|
if (lyxrc.pdf_mode) {
|
2002-05-14 09:19:05 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "findTargetFormat: PDF mode\n";
|
2002-01-31 14:20:09 +00:00
|
|
|
if (contains(suffix,"ps") || suffix == "pdf")
|
2001-07-29 06:04:20 +00:00
|
|
|
return "pdf";
|
2002-05-14 09:19:05 +00:00
|
|
|
else if (suffix == "jpg") // pdflatex can use jpeg
|
2001-07-30 13:35:08 +00:00
|
|
|
return suffix;
|
2001-07-29 06:04:20 +00:00
|
|
|
else
|
2002-05-14 09:19:05 +00:00
|
|
|
return "png"; // and also png
|
2001-07-29 06:04:20 +00:00
|
|
|
}
|
|
|
|
// If it's postscript, we always do eps.
|
2002-04-24 10:53:55 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "findTargetFormat: PostScript mode\n";
|
2002-05-14 09:19:05 +00:00
|
|
|
if (suffix != "ps") // any other than ps
|
|
|
|
return "eps"; // is changed to eps
|
2002-01-31 14:20:09 +00:00
|
|
|
else
|
2002-05-14 09:19:05 +00:00
|
|
|
return suffix; // let ps untouched
|
2001-07-29 06:04:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // Anon. namespace
|
2001-02-08 13:06:55 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2002-01-29 09:26:24 +00:00
|
|
|
string const InsetGraphics::prepareFile(Buffer const *buf) const
|
2001-02-08 13:06:55 +00:00
|
|
|
{
|
2002-04-24 10:53:55 +00:00
|
|
|
// LaTeX can cope if the graphics file doesn't exist, so just return the
|
|
|
|
// filename.
|
|
|
|
string const orig_file = params().filename;
|
2002-06-18 20:47:49 +00:00
|
|
|
string orig_file_with_path =
|
2002-04-24 10:53:55 +00:00
|
|
|
MakeAbsPath(orig_file, buf->filePath());
|
2002-06-24 20:28:12 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "[InsetGraphics::prepareFile] orig_file = "
|
|
|
|
<< orig_file << "\n\twith path: "
|
2002-06-18 20:47:49 +00:00
|
|
|
<< orig_file_with_path << endl;
|
2002-04-24 10:53:55 +00:00
|
|
|
|
|
|
|
if (!IsFileReadable(orig_file_with_path))
|
|
|
|
return orig_file;
|
|
|
|
|
|
|
|
// 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!
|
2002-06-18 20:47:49 +00:00
|
|
|
|
|
|
|
// maybe that other zip extensions also be useful, especially the
|
|
|
|
// ones that may be declared in texmf/tex/latex/config/graphics.cfg.
|
|
|
|
// for example:
|
|
|
|
/* -----------snip-------------
|
|
|
|
{\DeclareGraphicsRule{.pz}{eps}{.bb}{}%
|
|
|
|
\DeclareGraphicsRule{.eps.Z}{eps}{.eps.bb}{}%
|
|
|
|
\DeclareGraphicsRule{.ps.Z}{eps}{.ps.bb}{}%
|
|
|
|
\DeclareGraphicsRule{.ps.gz}{eps}{.ps.bb}{}%
|
|
|
|
\DeclareGraphicsRule{.eps.gz}{eps}{.eps.bb}{}}}%
|
|
|
|
-----------snip-------------*/
|
|
|
|
|
2002-05-14 09:19:05 +00:00
|
|
|
bool const zipped = zippedFile(orig_file_with_path);
|
|
|
|
if (zipped)
|
2002-06-18 20:47:49 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "\twe have a zipped file ("
|
|
|
|
<< getExtFromContents(orig_file_with_path) << ")\n";
|
|
|
|
if (params().noUnzip && zipped) {
|
2002-06-24 20:28:12 +00:00
|
|
|
lyxerr[Debug::GRAPHICS]
|
2002-06-18 20:47:49 +00:00
|
|
|
<< "\tpass file unzipped to LaTeX but with full path.\n";
|
|
|
|
// latex needs an absolue path, otherwise the coresponding
|
|
|
|
// *.eps.bb file isn't found
|
|
|
|
return orig_file_with_path;
|
2002-02-07 19:37:34 +00:00
|
|
|
}
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-06-18 20:47:49 +00:00
|
|
|
string temp_file(orig_file);
|
|
|
|
// Uncompress the file if necessary. If it has been uncompressed in
|
|
|
|
// a previous call to prepareFile, do nothing.
|
|
|
|
if (zipped) {
|
|
|
|
temp_file = MakeAbsPath(OnlyFilename(temp_file), buf->tmppath);
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
<< "\ttemp_file: " << temp_file << endl;
|
|
|
|
if (!IsFileReadable(temp_file)) {
|
|
|
|
bool const success = lyx::copy(orig_file_with_path, temp_file);
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
<< "\tCopying zipped file from "
|
|
|
|
<< orig_file_with_path << " to " << temp_file
|
|
|
|
<< (success ? " succeeded\n" : " failed\n");
|
|
|
|
} else
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
2002-06-24 20:28:12 +00:00
|
|
|
<< "\tzipped file " << temp_file
|
2002-06-18 20:47:49 +00:00
|
|
|
<< " exists! Maybe no tempdir ...\n";
|
|
|
|
orig_file_with_path = unzipFile(temp_file);
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
<< "\tunzipped to " << orig_file_with_path << endl;
|
|
|
|
}
|
|
|
|
string const from = getExtFromContents(orig_file_with_path);
|
2002-04-24 10:53:55 +00:00
|
|
|
|
|
|
|
// "nice" means that the buffer is exported to LaTeX format but not
|
|
|
|
// run through the LaTeX compiler.
|
|
|
|
// if (nice)
|
2002-07-16 22:12:25 +00:00
|
|
|
// no conversion needed!
|
|
|
|
// Return the original filename as is, because we do not know
|
|
|
|
// what the user decide.
|
2002-04-19 17:16:00 +00:00
|
|
|
if (buf->niceFile)
|
2002-07-16 22:12:25 +00:00
|
|
|
return orig_file;
|
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.
|
|
|
|
|
|
|
|
// Perform all these manipulations on a temporary file if possible.
|
|
|
|
// If we are not using a temp dir, then temp_file contains the
|
2002-05-21 23:50:36 +00:00
|
|
|
// original file.
|
2002-05-14 09:19:05 +00:00
|
|
|
// to allow files with the same name in different dirs
|
2002-05-21 23:50:36 +00:00
|
|
|
// we manipulate the original file "any.dir/file.ext"
|
|
|
|
// to "any_dir_file.ext"! changing the dots in the
|
2002-05-14 09:19:05 +00:00
|
|
|
// dirname is important for the use of ChangeExtension
|
2002-06-18 20:47:49 +00:00
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
<< "\tthe orig file is: " << orig_file_with_path << endl;
|
|
|
|
|
2002-05-14 09:19:05 +00:00
|
|
|
if (lyxrc.use_tempdir) {
|
2002-06-18 20:47:49 +00:00
|
|
|
string const ext_tmp = GetExtension(orig_file_with_path);
|
2002-05-14 09:19:05 +00:00
|
|
|
// without ext and /
|
2002-05-21 23:50:36 +00:00
|
|
|
temp_file = subst(
|
2002-06-18 20:47:49 +00:00
|
|
|
ChangeExtension(orig_file_with_path, string()), "/", "_");
|
|
|
|
// without dots and again with ext
|
2002-05-21 23:50:36 +00:00
|
|
|
temp_file = ChangeExtension(
|
2002-05-14 09:19:05 +00:00
|
|
|
subst(temp_file, ".", "_"), ext_tmp);
|
|
|
|
// now we have any_dir_file.ext
|
|
|
|
temp_file = MakeAbsPath(temp_file, buf->tmppath);
|
2002-04-24 10:53:55 +00:00
|
|
|
lyxerr[Debug::GRAPHICS]
|
2002-06-18 20:47:49 +00:00
|
|
|
<< "\tchanged to: " << temp_file << endl;
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-06-18 20:47:49 +00:00
|
|
|
// if the file doen't exists, copy it into the tempdi
|
|
|
|
if (!IsFileReadable(temp_file)) {
|
|
|
|
bool const success = lyx::copy(orig_file_with_path, temp_file);
|
2002-04-24 10:53:55 +00:00
|
|
|
lyxerr[Debug::GRAPHICS]
|
2002-06-24 20:28:12 +00:00
|
|
|
<< "\tcopying from " << orig_file_with_path << " to "
|
2002-06-18 20:47:49 +00:00
|
|
|
<< temp_file
|
|
|
|
<< (success ? " succeeded\n" : " failed\n");
|
|
|
|
if (!success) {
|
|
|
|
Alert::alert(_("Cannot copy file"), orig_file_with_path,
|
|
|
|
_("into tempdir"));
|
|
|
|
return orig_file;
|
|
|
|
}
|
2002-04-24 10:53:55 +00:00
|
|
|
}
|
|
|
|
}
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2002-06-18 20:47:49 +00:00
|
|
|
string const to = findTargetFormat(from);
|
|
|
|
lyxerr[Debug::GRAPHICS]
|
|
|
|
<< "\t we have: from " << from << " to " << to << '\n';
|
2002-02-27 09:59:52 +00:00
|
|
|
if (from == to) {
|
2002-06-18 20:47:49 +00:00
|
|
|
// No conversion is needed. LaTeX can handle the graphic file as is.
|
|
|
|
// This is true even if the orig_file is compressed. We have to return
|
|
|
|
// the orig_file_with_path, maybe it is a zipped one
|
2002-07-03 14:18:32 +00:00
|
|
|
if (lyxrc.use_tempdir)
|
|
|
|
return RemoveExtension(temp_file);
|
|
|
|
return RemoveExtension(orig_file_with_path);
|
2002-02-27 09:59:52 +00:00
|
|
|
}
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-04-24 10:53:55 +00:00
|
|
|
string const outfile_base = RemoveExtension(temp_file);
|
|
|
|
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'
|
|
|
|
<< "\toutfile_base = " << outfile_base << '\n'
|
|
|
|
<< "\t from " << from << " to " << to << '\n';
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2002-06-18 20:47:49 +00:00
|
|
|
// if no special converter defined, than we take the default one
|
|
|
|
// from ImageMagic: convert from:inname.from to:outname.to
|
|
|
|
if (!converters.convert(buf, temp_file, outfile_base, from, to)) {
|
2002-06-24 20:28:12 +00:00
|
|
|
string const command =
|
2002-06-18 20:47:49 +00:00
|
|
|
"convert " +
|
|
|
|
from + ':' + temp_file + ' ' +
|
|
|
|
to + ':' + outfile_base + '.' + to;
|
2002-06-24 20:28:12 +00:00
|
|
|
lyxerr[Debug::GRAPHICS]
|
2002-06-18 20:47:49 +00:00
|
|
|
<< "No converter defined! I use convert from ImageMagic:\n\t"
|
|
|
|
<< command << endl;
|
|
|
|
Systemcall one;
|
|
|
|
one.startscript(Systemcall::Wait, command);
|
|
|
|
if (!IsFileReadable(ChangeExtension(outfile_base, to)))
|
2002-06-24 20:28:12 +00:00
|
|
|
Alert::alert(_("Cannot convert Image (not existing file?)"),
|
2002-06-18 20:47:49 +00:00
|
|
|
_("No information for converting from ")
|
|
|
|
+ from + _(" to ") + to);
|
|
|
|
}
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-04-24 10:53:55 +00:00
|
|
|
return RemoveExtension(temp_file);
|
2001-02-08 13:06:55 +00:00
|
|
|
}
|
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetGraphics::latex(Buffer const *buf, ostream & os,
|
|
|
|
bool /*fragile*/, bool/*fs*/) const
|
2000-02-29 02:19:17 +00:00
|
|
|
{
|
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 = "
|
2002-04-24 10:53:55 +00:00
|
|
|
<< params().filename << endl;
|
|
|
|
|
2002-04-29 09:24:19 +00:00
|
|
|
// A missing (e)ps-extension is no problem for LaTeX, so
|
|
|
|
// we have to test three different cases
|
|
|
|
string const file_(MakeAbsPath(params().filename, buf->filePath()));
|
2002-05-21 23:50:36 +00:00
|
|
|
bool const file_exists =
|
|
|
|
!file_.empty() &&
|
2002-04-29 09:24:19 +00:00
|
|
|
(IsFileReadable(file_) || // original
|
2002-05-21 23:50:36 +00:00
|
|
|
IsFileReadable(file_ + ".eps") || // original.eps
|
2002-04-29 09:24:19 +00:00
|
|
|
IsFileReadable(file_ + ".ps")); // original.ps
|
2002-05-21 23:50:36 +00:00
|
|
|
string const message = file_exists ?
|
2002-04-29 09:24:19 +00:00
|
|
|
string() : string("bb = 0 0 200 100, draft, type=eps]");
|
|
|
|
// if !message.empty() than there was no existing file
|
|
|
|
// "filename(.(e)ps)" found. In this case LaTeX
|
|
|
|
// 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-06-18 20:47:49 +00:00
|
|
|
before += ("[%\n" + opts + ',' + message);
|
2002-04-02 12:48:41 +00:00
|
|
|
else if (!message.empty())
|
2002-06-18 20:47:49 +00:00
|
|
|
before += ("[%\n" + message);
|
2002-04-02 12:48:41 +00:00
|
|
|
else if (!opts.empty())
|
2002-06-18 20:47:49 +00:00
|
|
|
before += ("[%\n" + opts + ']');
|
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
|
|
|
|
2000-08-14 09:44:53 +00:00
|
|
|
// 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)
|
2002-04-06 13:05:46 +00:00
|
|
|
string const latex_str = message.empty() ?
|
2002-06-26 11:55:40 +00:00
|
|
|
(before + '{' + os::external_path(prepareFile(buf)) + '}' + after) :
|
2002-04-02 12:48:41 +00:00
|
|
|
(before + '{' + params().filename + " not found!}" + after);
|
2002-02-13 18:53:36 +00:00
|
|
|
os << latex_str;
|
2002-02-27 09:59:52 +00:00
|
|
|
|
2001-02-08 13:06:55 +00:00
|
|
|
// Return how many newlines we issued.
|
2002-02-13 18:53:36 +00:00
|
|
|
int const newlines =
|
|
|
|
int(lyx::count(latex_str.begin(), latex_str.end(),'\n') + 1);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-02-08 13:06:55 +00:00
|
|
|
return newlines;
|
2000-02-29 02:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-01-31 14:20:09 +00:00
|
|
|
int InsetGraphics::ascii(Buffer const *, ostream & os, int) 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
|
2002-03-19 09:47:34 +00:00
|
|
|
os << '<' << _("Graphic file:") << params().filename << ">\n";
|
2000-04-24 20:58:23 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetGraphics::linuxdoc(Buffer const *, ostream &) const
|
2000-03-06 02:42:40 +00:00
|
|
|
{
|
2000-08-14 09:44:53 +00:00
|
|
|
// No graphics in LinuxDoc output. Should check how/what to add.
|
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:
|
|
|
|
// http://linuxdoc.org/LDP/LDP-Author-Guide/inserting-pictures.html
|
|
|
|
// See also the docbook guide at http://www.docbook.org/
|
2002-06-24 20:28:12 +00:00
|
|
|
int InsetGraphics::docbook(Buffer const *, ostream & os,
|
|
|
|
bool /*mixcont*/) 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())
|
2000-08-14 09:44:53 +00:00
|
|
|
return ;
|
2000-07-31 12:30:10 +00:00
|
|
|
|
2002-05-03 11:56:49 +00:00
|
|
|
features.includeFile(graphic_label, RemoveExtension(params().filename));
|
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
|
|
|
|
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
|
|
|
|
2002-06-25 15:59:10 +00:00
|
|
|
void InsetGraphics::statusChanged()
|
|
|
|
{
|
|
|
|
current_view->updateInset(this, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-22 16:37:52 +00:00
|
|
|
bool InsetGraphics::setParams(InsetGraphicsParams const & p,
|
|
|
|
string const & filepath)
|
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.
|
2002-02-27 09:59:52 +00:00
|
|
|
if (params() == p && !p.filename.empty()) {
|
2000-08-14 09:44:53 +00:00
|
|
|
return false;
|
2002-02-27 09:59:52 +00:00
|
|
|
}
|
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
|
|
|
|
2000-08-14 09:44:53 +00:00
|
|
|
// Update the inset with the new parameters.
|
2002-06-25 15:59:10 +00:00
|
|
|
cache_->update(MakeAbsPath(params().filename, filepath));
|
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
|
|
|
}
|
2000-02-29 02:19:17 +00:00
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
2002-03-22 16:37:52 +00:00
|
|
|
Inset * InsetGraphics::clone(Buffer const & buffer, bool same_id) const
|
2000-07-31 12:30:10 +00:00
|
|
|
{
|
2002-03-22 16:37:52 +00:00
|
|
|
return new InsetGraphics(*this, buffer.filePath(), same_id);
|
2000-07-31 12:30:10 +00:00
|
|
|
}
|