2000-02-29 02:19:17 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2002-01-29 09:26:24 +00:00
|
|
|
* Copyright 1995-2002 the LyX Team.
|
2000-07-31 12:30:10 +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:
|
|
|
|
|
|
|
|
* If the image is from the clipart, and the document is moved to another
|
|
|
|
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
|
|
|
|
by the file dialog we normally get an absolute path and this may not be
|
|
|
|
what the user meant.
|
2002-01-14 23:31:23 +00:00
|
|
|
[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,
|
|
|
|
MakeAbsPath(filename, buf->filePath())
|
|
|
|
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]
|
|
|
|
|
2001-02-08 13:06:55 +00:00
|
|
|
* If we are trying to create a file in a read-only directory and there
|
|
|
|
are graphics that need converting, the converting will fail because
|
|
|
|
it is done in-place, into the same directory as the original image.
|
2001-02-20 09:08:56 +00:00
|
|
|
This needs to be fixed in the src/converter.C file
|
2001-03-18 17:48:56 +00:00
|
|
|
[ This is presumed to be fixed, needs testing.]
|
2001-04-02 19:57:35 +00:00
|
|
|
|
|
|
|
* We do not dither or resize the image in a WYSIWYM way, we load it at
|
|
|
|
its original size and color, resizing is done in the final output,
|
|
|
|
but not in the LyX window.
|
2001-07-30 13:35:08 +00:00
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
TODO Before initial production release:
|
|
|
|
* Replace insetfig everywhere
|
|
|
|
* Search for comments of the form
|
|
|
|
// INSET_GRAPHICS: remove this when InsetFig is thrown.
|
2001-07-29 06:04:20 +00:00
|
|
|
And act upon them. Make sure not to remove InsetFig code for the
|
|
|
|
1.2.0 release, only afterwards, after deployment shows InsetGraphics
|
|
|
|
to be ok.
|
2000-07-31 12:30:10 +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.
|
|
|
|
* 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
|
2000-07-31 12:30:10 +00:00
|
|
|
to find it in the clipart, or in the same directory with the image.
|
|
|
|
* Keep a tab on the image file, if it changes, update the lyx view.
|
2000-08-08 09:18:39 +00:00
|
|
|
* The image choosing dialog could show thumbnails of the image formats
|
2002-01-14 23:31:23 +00:00
|
|
|
it knows of, thus selection based on the image instead of based on
|
|
|
|
filename.
|
2000-10-12 10:46:06 +00:00
|
|
|
* 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-01-29 09:26:24 +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.
|
|
|
|
* Image format
|
|
|
|
* from to
|
|
|
|
* EPS epstopdf
|
2002-01-31 14:20:09 +00:00
|
|
|
* PS ps2pdf
|
2001-07-29 06:04:20 +00:00
|
|
|
* JPG/PNG direct
|
|
|
|
* PDF direct
|
|
|
|
* others PNG
|
2000-07-31 12:30:10 +00:00
|
|
|
*/
|
|
|
|
|
2000-08-14 09:44:53 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
2000-08-14 09:44:53 +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
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
#include "graphics/GraphicsCache.h"
|
2002-02-27 09:59:52 +00:00
|
|
|
#include "graphics/GraphicsImage.h"
|
2000-08-14 09:44:53 +00:00
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
#include "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"
|
2000-02-29 02:19:17 +00:00
|
|
|
#include "Painter.h"
|
2001-02-08 13:06:55 +00:00
|
|
|
#include "lyxrc.h"
|
2002-02-27 09:59:52 +00:00
|
|
|
#include "font.h" // For the lyxfont class.
|
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-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
|
2000-03-09 23:58:55 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
#include <algorithm> // For the std::max
|
2002-02-16 15:59:55 +00:00
|
|
|
|
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-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 {
|
|
|
|
|
|
|
|
string const unique_id()
|
|
|
|
{
|
|
|
|
static unsigned int seed = 1000;
|
|
|
|
|
|
|
|
ostringstream ost;
|
|
|
|
ost << "graph" << ++seed;
|
|
|
|
|
|
|
|
// Needed if we use lyxstring.
|
|
|
|
return ost.str().c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
2000-03-09 23:58:55 +00:00
|
|
|
InsetGraphics::InsetGraphics()
|
2002-02-28 13:10:26 +00:00
|
|
|
: graphic_label(unique_id()),
|
2002-03-11 13:52:19 +00:00
|
|
|
cached_status_(grfx::ErrorUnknown), cache_filled_(false), old_asc(0)
|
2002-02-28 13:10:26 +00:00
|
|
|
|
2000-03-09 23:58:55 +00:00
|
|
|
{}
|
2000-02-29 02:19:17 +00:00
|
|
|
|
2001-05-08 10:50:09 +00:00
|
|
|
|
2001-07-14 20:11:35 +00:00
|
|
|
InsetGraphics::InsetGraphics(InsetGraphics const & ig, bool same_id)
|
2002-02-28 13:10:26 +00:00
|
|
|
: Inset(ig, same_id),
|
|
|
|
SigC::Object(),
|
|
|
|
graphic_label(unique_id()),
|
2002-03-11 13:52:19 +00:00
|
|
|
cached_status_(grfx::ErrorUnknown), cache_filled_(false), old_asc(0)
|
2001-07-14 20:11:35 +00:00
|
|
|
{
|
2002-02-27 09:59:52 +00:00
|
|
|
setParams(ig.params());
|
2001-07-14 20:11:35 +00:00
|
|
|
if (same_id)
|
|
|
|
id_ = ig.id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
InsetGraphics::~InsetGraphics()
|
|
|
|
{
|
2002-02-27 09:59:52 +00:00
|
|
|
cached_image_.reset(0);
|
|
|
|
grfx::GCache & gc = grfx::GCache::get();
|
|
|
|
gc.remove(*this);
|
|
|
|
|
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
|
|
|
|
|
|
|
switch (cached_status_) {
|
|
|
|
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;
|
|
|
|
case grfx::ScalingEtc:
|
|
|
|
msg = _("Loaded. Scaling etc...");
|
|
|
|
break;
|
|
|
|
case grfx::ErrorNoFile:
|
|
|
|
msg = _("No file found!");
|
|
|
|
break;
|
|
|
|
case grfx::ErrorLoading:
|
|
|
|
msg = _("Error loading file into memory");
|
|
|
|
break;
|
|
|
|
case grfx::ErrorConverting:
|
|
|
|
msg = _("Error converting to loadable format");
|
|
|
|
break;
|
|
|
|
case grfx::ErrorScalingEtc:
|
|
|
|
msg = _("Error scaling etc");
|
|
|
|
break;
|
|
|
|
case grfx::ErrorUnknown:
|
|
|
|
msg = _("No image associated with this inset is in the cache!");
|
|
|
|
break;
|
|
|
|
case grfx::Loaded:
|
|
|
|
msg = _("Loaded but not displaying");
|
|
|
|
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-02-27 09:59:52 +00:00
|
|
|
void InsetGraphics::setCache() const
|
|
|
|
{
|
|
|
|
if (cache_filled_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
grfx::GCache & gc = grfx::GCache::get();
|
|
|
|
cached_status_ = gc.status(*this);
|
|
|
|
cached_image_ = gc.image(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetGraphics::drawImage() const
|
|
|
|
{
|
|
|
|
setCache();
|
|
|
|
Pixmap const pixmap =
|
|
|
|
(cached_status_ == grfx::Loaded && cached_image_.get() != 0) ?
|
|
|
|
cached_image_->getPixmap() : 0;
|
|
|
|
|
|
|
|
return pixmap != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-14 09:44:53 +00:00
|
|
|
int InsetGraphics::ascent(BufferView *, LyXFont const &) const
|
2000-02-29 02:19:17 +00:00
|
|
|
{
|
2002-03-11 13:52:19 +00:00
|
|
|
old_asc = 50;
|
2002-02-27 09:59:52 +00:00
|
|
|
if (drawImage())
|
2002-03-11 13:52:19 +00:00
|
|
|
old_asc = cached_image_->getHeight();
|
|
|
|
return old_asc;
|
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-02-27 09:59:52 +00:00
|
|
|
if (drawImage())
|
|
|
|
return cached_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);
|
|
|
|
font_width = lyxfont::width(justname, msgFont);
|
|
|
|
}
|
|
|
|
|
|
|
|
string const msg = statusMessage();
|
|
|
|
if (!msg.empty()) {
|
|
|
|
msgFont.setSize(LyXFont::SIZE_TINY);
|
|
|
|
int const msg_width = lyxfont::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
|
|
|
}
|
2000-10-12 10:46:06 +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,
|
2000-08-14 09:44:53 +00:00
|
|
|
int baseline, float & x, bool) const
|
2000-02-29 02:19:17 +00:00
|
|
|
{
|
2002-03-11 13:52:19 +00:00
|
|
|
int oasc = old_asc;
|
|
|
|
|
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) {
|
|
|
|
// lyxerr << "IG(" << this << "): " << x << endl;
|
|
|
|
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-02-27 09:59:52 +00:00
|
|
|
// Initiate the loading of the graphics file
|
|
|
|
if (cached_status_ == grfx::WaitingToLoad) {
|
|
|
|
grfx::GCache & gc = grfx::GCache::get();
|
|
|
|
gc.startLoading(*this);
|
|
|
|
}
|
|
|
|
|
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-11 14:04:41 +00:00
|
|
|
grfx::ImageStatus old_status_ = cached_status_;
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
if (drawImage()) {
|
2002-03-11 13:52:19 +00:00
|
|
|
// lyxerr << "IG(" << this << "): " << old_x << endl;
|
2001-07-16 14:42:40 +00:00
|
|
|
paint.image(old_x + 2, baseline - lascent,
|
2002-02-11 12:41:42 +00:00
|
|
|
lwidth - 4, lascent + ldescent,
|
2002-02-27 09:59:52 +00:00
|
|
|
*cached_image_.get());
|
|
|
|
|
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,
|
2000-10-12 10:46:06 +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);
|
2001-07-16 14:42:40 +00:00
|
|
|
paint.text(old_x + 8,
|
2001-09-24 17:12:27 +00:00
|
|
|
baseline - lyxfont::maxAscent(msgFont) - 4,
|
|
|
|
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
|
|
|
|
if (old_status_ != cached_status_) {
|
|
|
|
bv->getLyXText()->status(bv, LyXText::CHANGED_IN_DRAW);
|
|
|
|
}
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
// Reset the cache, ready for the next draw request
|
|
|
|
cached_status_ = grfx::ErrorUnknown;
|
|
|
|
cached_image_.reset(0);
|
|
|
|
cache_filled_ = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Update the inset after parameters changed (read from file or changed in
|
|
|
|
// dialog. The grfx::GCache makes the decisions about whether or not to draw
|
|
|
|
// (interogates lyxrc, ascertains whether file exists etc)
|
|
|
|
void InsetGraphics::updateInset() const
|
|
|
|
{
|
|
|
|
grfx::GCache & gc = grfx::GCache::get();
|
|
|
|
gc.update(*this);
|
2000-02-29 02:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetGraphics::edit(BufferView *bv, int, int, unsigned int)
|
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)
|
|
|
|
{
|
|
|
|
edit(bv, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetGraphics::write(Buffer const * buf, 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-02-27 09:59:52 +00:00
|
|
|
params().Write(buf, 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")
|
2001-07-28 12:24:16 +00:00
|
|
|
readInsetGraphics(buf, lex);
|
|
|
|
else if (token == "Figure") // Compatibility reading of FigInset figures.
|
|
|
|
readFigInset(buf, lex);
|
|
|
|
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
|
|
|
|
|
|
|
updateInset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InsetGraphics::readInsetGraphics(Buffer const * buf, 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-02-20 16:34:53 +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-02-27 09:59:52 +00:00
|
|
|
if (! params_.Read(buf, lex, token))
|
2001-03-18 17:48:56 +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)
|
2001-07-28 12:24:16 +00:00
|
|
|
void InsetGraphics::readFigInset(Buffer const * buf, LyXLex & lex)
|
|
|
|
{
|
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-02-01 09:57:44 +00:00
|
|
|
// set the display default
|
|
|
|
if (lyxrc.display_graphics == "mono")
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.display = InsetGraphicsParams::MONOCHROME;
|
2002-02-01 09:57:44 +00:00
|
|
|
else if (lyxrc.display_graphics == "gray")
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.display = InsetGraphicsParams::GRAYSCALE;
|
2002-02-01 09:57:44 +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;
|
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()) {
|
2001-08-06 19:13:25 +00:00
|
|
|
string const name = lex.getString();
|
2002-01-14 23:31:23 +00:00
|
|
|
string const path = buf->filePath();
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.filename = MakeAbsPath(name, path);
|
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();
|
|
|
|
params_.subcaption = true;
|
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") {
|
|
|
|
if (lex.next())
|
2002-02-27 09:59:52 +00:00
|
|
|
params_.rotate = true;
|
|
|
|
params_.rotateAngle = lex.getFloat();
|
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-02-27 09:59:52 +00:00
|
|
|
params_.lyxheight = LyXLength(lex.getString()+"pt");
|
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-02-27 09:59:52 +00:00
|
|
|
case 1: params_.display = InsetGraphicsParams::MONOCHROME;
|
2002-02-01 09:57:44 +00:00
|
|
|
break;
|
2002-02-27 09:59:52 +00:00
|
|
|
case 2: params_.display = InsetGraphicsParams::GRAYSCALE;
|
2002-02-01 09:57:44 +00:00
|
|
|
break;
|
2002-02-27 09:59:52 +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-01-29 09:26:24 +00:00
|
|
|
// (Should actually mean, are we using latex or pdflatex).
|
2002-02-27 09:59:52 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "decideOutput: lyxrc.pdf_mode = "
|
|
|
|
<< lyxrc.pdf_mode << std::endl;
|
2001-07-29 06:04:20 +00:00
|
|
|
if (lyxrc.pdf_mode) {
|
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-01-31 14:20:09 +00:00
|
|
|
else if (suffix == "jpg")
|
2001-07-30 13:35:08 +00:00
|
|
|
return suffix;
|
2001-07-29 06:04:20 +00:00
|
|
|
else
|
|
|
|
return "png";
|
|
|
|
}
|
|
|
|
// If it's postscript, we always do eps.
|
2002-02-20 16:34:53 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "decideOutput: we have PostScript mode\n";
|
2002-01-31 14:20:09 +00:00
|
|
|
if (suffix != "ps")
|
|
|
|
return "eps";
|
|
|
|
else
|
|
|
|
return "ps";
|
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
|
|
|
{
|
|
|
|
// do_convert = Do we need to convert the file?
|
|
|
|
// nice = Do we create a nice version?
|
|
|
|
// This is used when exporting the latex file only.
|
|
|
|
// if (!do_convert)
|
|
|
|
// return original filename
|
|
|
|
// if (!nice)
|
|
|
|
// convert_place = temp directory
|
|
|
|
// return new filename in temp directory
|
|
|
|
// else
|
|
|
|
// convert_place = original file directory
|
|
|
|
// return original filename without the extension
|
|
|
|
//
|
2002-02-04 15:36:45 +00:00
|
|
|
// if it's a zipped one, than let LaTeX do the rest!!!
|
2002-02-27 09:59:52 +00:00
|
|
|
string filename_ = params().filename;
|
|
|
|
bool const zipped = zippedFile(filename_);
|
|
|
|
|
|
|
|
if ((zipped && params().noUnzip) || buf->niceFile) {
|
|
|
|
lyxerr[Debug::GRAPHICS] << "don't unzip file or export latex"
|
|
|
|
<< filename_ << endl;
|
|
|
|
return filename_;
|
2002-02-07 19:37:34 +00:00
|
|
|
}
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
|
|
if (zipped)
|
|
|
|
filename_ = unzipFile(filename_);
|
|
|
|
|
|
|
|
string const from = getExtFromContents(filename_);
|
|
|
|
string const to = findTargetFormat(from);
|
|
|
|
|
|
|
|
if (from == to) {
|
|
|
|
// No conversion needed!
|
2002-02-11 13:04:38 +00:00
|
|
|
return filename_;
|
2002-02-27 09:59:52 +00:00
|
|
|
}
|
|
|
|
|
2002-02-11 13:04:38 +00:00
|
|
|
string const temp = AddName(buf->tmppath, filename_);
|
2002-02-27 09:59:52 +00:00
|
|
|
string const outfile_base = RemoveExtension(temp);
|
|
|
|
|
2002-02-20 16:34:53 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "tempname = " << temp << "\n";
|
|
|
|
lyxerr[Debug::GRAPHICS] << "buf::tmppath = " << buf->tmppath << "\n";
|
|
|
|
lyxerr[Debug::GRAPHICS] << "filename_ = " << filename_ << "\n";
|
2002-02-27 09:59:52 +00:00
|
|
|
lyxerr[Debug::GRAPHICS] << "outfile_base = " << outfile_base << endl;
|
|
|
|
|
|
|
|
converters.convert(buf, filename_, outfile_base, from, to);
|
|
|
|
return outfile_base;
|
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
|
|
|
{
|
2000-08-14 09:44:53 +00:00
|
|
|
// If there is no file specified, just output a message about it in
|
|
|
|
// the latex output.
|
2002-02-27 09:59:52 +00:00
|
|
|
if (params().filename.empty()) {
|
2001-02-08 13:06:55 +00:00
|
|
|
os << "\\fbox{\\rule[-0.5in]{0pt}{1in}"
|
2002-01-29 09:26:24 +00:00
|
|
|
<< _("empty figure path") << "}\n";
|
2001-02-08 13:06:55 +00:00
|
|
|
return 1; // One end of line marker added to the stream.
|
2000-08-14 09:44:53 +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";
|
2001-02-08 13:06:55 +00:00
|
|
|
// Write the options if there are any.
|
|
|
|
string const opts = createLatexOptions();
|
2000-02-29 02:19:17 +00:00
|
|
|
if (!opts.empty()) {
|
2002-02-13 18:53:36 +00:00
|
|
|
before += ("[%\n" + opts +']');
|
2000-02-29 02:19:17 +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-02-13 18:53:36 +00:00
|
|
|
string const latex_str = before + '{' + prepareFile(buf) + '}' + after;
|
|
|
|
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-02-27 09:59:52 +00:00
|
|
|
|
2002-02-13 18:53:36 +00:00
|
|
|
// lyxerr << "includegraphics: " << newlines << " lines of text"
|
|
|
|
// << endl;
|
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-02-27 09:59:52 +00:00
|
|
|
os << '<' << _("Graphicfile:") << 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-02-20 09:04:56 +00:00
|
|
|
int InsetGraphics::docbook(Buffer const *, ostream & os) const
|
2000-03-06 02:42:40 +00:00
|
|
|
{
|
2001-02-08 13:06: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
|
|
|
|
// 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-02-27 09:59:52 +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
|
|
|
|
2001-06-27 14:10:35 +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.
|
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.
|
|
|
|
updateInset();
|
|
|
|
|
|
|
|
// 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
|
|
|
|
2001-07-14 20:11:35 +00:00
|
|
|
Inset * InsetGraphics::clone(Buffer const &, bool same_id) const
|
2000-07-31 12:30:10 +00:00
|
|
|
{
|
2001-07-14 20:11:35 +00:00
|
|
|
return new InsetGraphics(*this, same_id);
|
2000-07-31 12:30:10 +00:00
|
|
|
}
|