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"
|
|
|
|
#include "graphics/GraphicsCache.h"
|
|
|
|
#include "graphics/GraphicsCacheItem.h"
|
2000-08-14 09:44:53 +00:00
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
#include "frontends/Dialogs.h"
|
2002-02-08 10:47:02 +00:00
|
|
|
#include "frontends/Alert.h"
|
2000-07-31 12:30:10 +00:00
|
|
|
#include "LyXView.h"
|
|
|
|
#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-02-11 12:41:42 +00:00
|
|
|
#include "frontends/support/LyXImage.h"
|
2000-02-29 02:19:17 +00:00
|
|
|
#include "Painter.h"
|
2000-03-09 23:58:55 +00:00
|
|
|
#include "lyx_gui_misc.h"
|
|
|
|
#include "support/FileInfo.h"
|
|
|
|
#include "support/filetools.h"
|
2002-02-13 18:53:36 +00:00
|
|
|
#include "support/lyxalgo.h" // lyx::count
|
2001-02-08 13:06:55 +00:00
|
|
|
#include "support/lyxlib.h"
|
2002-02-13 18:53:36 +00:00
|
|
|
#include "frontends/controllers/helper_funcs.h"
|
2000-08-10 13:15:05 +00:00
|
|
|
#include "lyxtext.h"
|
2001-02-08 13:06:55 +00:00
|
|
|
#include "lyxrc.h"
|
2000-10-12 10:46:06 +00:00
|
|
|
#include "font.h" // For the lyxfont class.
|
2001-07-30 13:35:08 +00:00
|
|
|
#include "fstream" // for ifstream in isEPS
|
2000-10-12 10:46:06 +00:00
|
|
|
#include <algorithm> // For the std::max
|
2001-02-08 13:06:55 +00:00
|
|
|
#include "support/lyxmanip.h"
|
2000-07-31 12:30:10 +00:00
|
|
|
#include "debug.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
#include "gettext.h"
|
2000-03-09 23:58:55 +00:00
|
|
|
|
2001-02-08 13:06:55 +00:00
|
|
|
extern string system_tempdir;
|
2000-03-09 23:58:55 +00:00
|
|
|
|
2001-07-30 13:35:08 +00:00
|
|
|
using std::ifstream;
|
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
|
|
|
|
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-11 12:41:42 +00:00
|
|
|
// Initialize only those variables that do not have a constructor.
|
2000-03-09 23:58:55 +00:00
|
|
|
InsetGraphics::InsetGraphics()
|
2002-02-11 12:41:42 +00:00
|
|
|
: cacheHandle(0), imageLoaded(false)
|
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-11 12:41:42 +00:00
|
|
|
: Inset(), SigC::Object()
|
|
|
|
, cacheHandle(ig.cacheHandle)
|
|
|
|
, imageLoaded(ig.imageLoaded)
|
2001-07-14 20:11:35 +00:00
|
|
|
{
|
|
|
|
setParams(ig.getParams());
|
|
|
|
if (same_id)
|
|
|
|
id_ = ig.id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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-11 12:41:42 +00:00
|
|
|
if (cacheHandle.get()) {
|
|
|
|
switch (cacheHandle->getImageStatus()) {
|
|
|
|
case GraphicsCacheItem::UnknownError:
|
|
|
|
msg = _("Unknown Error");
|
|
|
|
break;
|
|
|
|
case GraphicsCacheItem::Loading:
|
|
|
|
msg = _("Loading...");
|
|
|
|
break;
|
|
|
|
case GraphicsCacheItem::ErrorReading:
|
|
|
|
msg = _("Error reading");
|
|
|
|
break;
|
|
|
|
case GraphicsCacheItem::Converting:
|
|
|
|
msg = _("Converting Image");
|
|
|
|
break;
|
|
|
|
case GraphicsCacheItem::ErrorConverting:
|
|
|
|
msg = _("Error converting");
|
|
|
|
break;
|
|
|
|
case GraphicsCacheItem::Loaded:
|
|
|
|
// No message to write.
|
|
|
|
break;
|
|
|
|
}
|
2000-10-12 10:46:06 +00:00
|
|
|
}
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
2001-05-08 10:50:09 +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-02-11 12:41:42 +00:00
|
|
|
LyXImage * pixmap = 0;
|
|
|
|
if (cacheHandle.get() && (pixmap = cacheHandle->getImage()))
|
|
|
|
return pixmap->getHeight();
|
2000-08-08 09:18:39 +00:00
|
|
|
else
|
|
|
|
return 50;
|
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
|
|
|
{
|
|
|
|
// this is not true if viewport is used and clip is not.
|
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-11 12:41:42 +00:00
|
|
|
LyXImage * pixmap = 0;
|
|
|
|
|
|
|
|
if (cacheHandle.get() && (pixmap = cacheHandle->getImage()))
|
|
|
|
return pixmap->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);
|
|
|
|
|
|
|
|
string const justname = OnlyFilename (params.filename);
|
|
|
|
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);
|
|
|
|
font_width = std::max(font_width, msg_width);
|
|
|
|
}
|
2000-10-12 10:46:06 +00:00
|
|
|
|
2001-03-18 17:48:56 +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
|
|
|
{
|
2000-07-31 12:30:10 +00:00
|
|
|
Painter & paint = bv->painter();
|
2000-06-21 15:07:57 +00:00
|
|
|
|
2000-08-14 09:44:53 +00:00
|
|
|
int ldescent = descent(bv, font);
|
2002-02-11 12:41:42 +00:00
|
|
|
int lascent = ascent(bv, font);
|
|
|
|
int lwidth = width(bv, font);
|
2001-02-08 13:06:55 +00:00
|
|
|
|
|
|
|
// Make sure 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
|
|
|
|
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-11 12:41:42 +00:00
|
|
|
if (imageLoaded) {
|
2000-08-08 09:18:39 +00:00
|
|
|
|
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,
|
|
|
|
cacheHandle->getImage());
|
2002-01-31 14:20:09 +00:00
|
|
|
} else {
|
2002-02-11 12:41:42 +00:00
|
|
|
// Get the image status, default to unknown error.
|
|
|
|
GraphicsCacheItem::ImageStatus status = GraphicsCacheItem::UnknownError;
|
|
|
|
if (lyxrc.use_gui && params.display != InsetGraphicsParams::NONE &&
|
|
|
|
cacheHandle.get())
|
|
|
|
status = cacheHandle->getImageStatus();
|
|
|
|
// Check if the image is now ready.
|
|
|
|
if (status == GraphicsCacheItem::Loaded) {
|
|
|
|
imageLoaded = true;
|
|
|
|
// Tell BufferView we need to be updated!
|
|
|
|
bv->text->status(bv, LyXText::CHANGED_IN_DRAW);
|
|
|
|
return;
|
|
|
|
}
|
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);
|
2001-09-24 17:12:27 +00:00
|
|
|
// Print the file name.
|
|
|
|
LyXFont msgFont(font);
|
|
|
|
msgFont.setFamily(LyXFont::SANS_FAMILY);
|
|
|
|
string const justname = OnlyFilename (params.filename);
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
// 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
|
|
|
}
|
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';
|
2000-08-14 09:44:53 +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
|
2001-07-29 06:04:20 +00:00
|
|
|
lyxerr[Debug::INFO] << "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();
|
2001-06-27 14:10:35 +00:00
|
|
|
lyxerr[Debug::INFO] << "Token: '" << token << '\''
|
|
|
|
<< 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."
|
2001-03-18 17:48:56 +00:00
|
|
|
<< std::endl;
|
2000-08-14 09:44:53 +00:00
|
|
|
// TODO: Possibly open up a dialog?
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (! params.Read(buf, lex, token))
|
2001-03-18 17:48:56 +00:00
|
|
|
lyxerr << "Unknown token, " << token << ", skipping."
|
|
|
|
<< 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-01-29 09:26:24 +00:00
|
|
|
std::vector<string> const oldUnits =
|
|
|
|
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")
|
|
|
|
params.display = InsetGraphicsParams::MONOCHROME;
|
|
|
|
else if (lyxrc.display_graphics == "gray")
|
|
|
|
params.display = InsetGraphicsParams::GRAYSCALE;
|
|
|
|
else if (lyxrc.display_graphics == "color")
|
|
|
|
params.display = InsetGraphicsParams::COLOR;
|
|
|
|
else
|
|
|
|
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();
|
2001-07-28 12:24:16 +00:00
|
|
|
lyxerr[Debug::INFO] << "Token: " << token << endl;
|
|
|
|
|
|
|
|
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();
|
2001-07-28 12:24:16 +00:00
|
|
|
params.filename = MakeAbsPath(name, path);
|
|
|
|
}
|
|
|
|
} 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())
|
|
|
|
params.subcaptionText = lex.getString();
|
2002-01-29 09:26:24 +00:00
|
|
|
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-05 18:43:28 +00:00
|
|
|
params.rotate = true;
|
2001-08-06 19:13:25 +00:00
|
|
|
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())
|
|
|
|
params.lyxwidth = LyXLength(lex.getString()+"pt");
|
|
|
|
if (lex.next())
|
|
|
|
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-01 09:57:44 +00:00
|
|
|
case 1: params.display = InsetGraphicsParams::MONOCHROME;
|
|
|
|
break;
|
|
|
|
case 2: params.display = InsetGraphicsParams::GRAYSCALE;
|
|
|
|
break;
|
|
|
|
case 3: params.display = InsetGraphicsParams::COLOR;
|
|
|
|
break;
|
2001-07-28 12:24:16 +00:00
|
|
|
}
|
|
|
|
} else if (token == "subfigure") {
|
|
|
|
params.subcaption = true;
|
|
|
|
} 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) {
|
|
|
|
params.scale = lex.getInteger();
|
|
|
|
params.size_type = InsetGraphicsParams::SCALE;
|
|
|
|
} else {
|
|
|
|
params.width = 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
|
|
|
} 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-01-29 09:26:24 +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-01-29 09:26:24 +00:00
|
|
|
if (!params.bb.empty())
|
2002-02-07 19:37:34 +00:00
|
|
|
options << " bb=" << strip(params.bb) << ",\n";
|
2002-01-29 09:26:24 +00:00
|
|
|
if (params.draft)
|
2002-02-07 19:37:34 +00:00
|
|
|
options << " draft,\n";
|
2002-01-29 09:26:24 +00:00
|
|
|
if (params.clip)
|
2002-02-07 19:37:34 +00:00
|
|
|
options << " clip,\n";
|
2002-01-29 09:26:24 +00:00
|
|
|
if (params.size_type == InsetGraphicsParams::WH) {
|
|
|
|
if (!params.width.zero())
|
2002-02-07 19:37:34 +00:00
|
|
|
options << " width=" << params.width.asLatexString() << ",\n";
|
2002-01-29 09:26:24 +00:00
|
|
|
if (!params.height.zero())
|
2002-02-07 19:37:34 +00:00
|
|
|
options << " height=" << params.height.asLatexString() << ",\n";
|
2002-01-29 09:26:24 +00:00
|
|
|
} else if (params.size_type == InsetGraphicsParams::SCALE) {
|
|
|
|
if (params.scale > 0)
|
2002-02-07 19:37:34 +00:00
|
|
|
options << " scale=" << double(params.scale)/100.0 << ",\n";
|
2002-01-29 09:26:24 +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-05 18:43:28 +00:00
|
|
|
if (!lyx::float_equal(params.rotateAngle, 0, 0.001) && params.rotate) {
|
2002-02-07 19:37:34 +00:00
|
|
|
options << " angle=" << params.rotateAngle << ",\n";
|
2002-01-29 09:26:24 +00:00
|
|
|
if (!params.rotateOrigin.empty()) {
|
2002-02-05 18:43:28 +00:00
|
|
|
options << " origin=" << params.rotateOrigin[0];
|
2002-01-29 09:26:24 +00:00
|
|
|
if (contains(params.rotateOrigin,"Top"))
|
|
|
|
options << 't';
|
|
|
|
else if (contains(params.rotateOrigin,"Bottom"))
|
|
|
|
options << 'b';
|
|
|
|
else if (contains(params.rotateOrigin,"Baseline"))
|
|
|
|
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-01-29 09:26:24 +00:00
|
|
|
if (!params.special.empty())
|
2002-02-07 19:37:34 +00:00
|
|
|
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-01-31 14:20:09 +00:00
|
|
|
string decideOutputImageFormat(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-01-31 14:20:09 +00:00
|
|
|
lyxerr << "decideOutput::lyxrc.pdf_mode = " << lyxrc.pdf_mode << "\n";
|
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-01-31 14:20:09 +00:00
|
|
|
lyxerr << "decideOutput: we have PostScript mode\n";
|
|
|
|
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-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-07 19:37:34 +00:00
|
|
|
// first check if file is viewed in LyX. First local
|
|
|
|
// than global
|
2002-02-04 15:36:45 +00:00
|
|
|
// if it's a zipped one, than let LaTeX do the rest!!!
|
2002-02-11 13:04:38 +00:00
|
|
|
if ((zippedFile(params.filename) && params.noUnzip) || buf->niceFile) {
|
|
|
|
lyxerr << "don't unzip file or export latex"
|
2002-02-07 19:37:34 +00:00
|
|
|
<< params.filename << endl;
|
2002-02-05 12:19:32 +00:00
|
|
|
return params.filename;
|
2002-02-07 19:37:34 +00:00
|
|
|
}
|
2002-02-11 13:04:38 +00:00
|
|
|
string filename_ = params.filename;
|
|
|
|
if (zippedFile(filename_))
|
|
|
|
filename_ = unzipFile(filename_);
|
2002-02-04 15:36:45 +00:00
|
|
|
// now we have unzipped files
|
2002-02-07 19:37:34 +00:00
|
|
|
// Get the extension (format) of the original file.
|
|
|
|
// we handle it like a virtual one, so we can have
|
|
|
|
// different extensions with the same type.
|
2002-02-11 13:04:38 +00:00
|
|
|
string const extension = getExtFromContents(filename_);
|
|
|
|
// are we usind latex ((e)ps) or pdflatex (pdf,jpg,png)
|
2002-01-31 14:20:09 +00:00
|
|
|
string const image_target = decideOutputImageFormat(extension);
|
2002-02-11 13:04:38 +00:00
|
|
|
if (extension == image_target) // :-)
|
|
|
|
return filename_;
|
|
|
|
if (!IsFileReadable(filename_)) { // :-(
|
2002-02-08 10:47:02 +00:00
|
|
|
Alert::alert(_("File") + params.filename,
|
|
|
|
_("isn't readable or doesn't exists!"));
|
2002-02-11 13:04:38 +00:00
|
|
|
return filename_;
|
2002-02-08 10:47:02 +00:00
|
|
|
}
|
2001-02-08 13:06:55 +00:00
|
|
|
string outfile;
|
2002-02-11 13:04:38 +00:00
|
|
|
string const temp = AddName(buf->tmppath, filename_);
|
|
|
|
outfile = RemoveExtension(temp);
|
|
|
|
lyxerr << "tempname = " << temp << "\n";
|
2002-01-31 14:20:09 +00:00
|
|
|
lyxerr << "buf::tmppath = " << buf->tmppath << "\n";
|
2002-02-11 13:04:38 +00:00
|
|
|
lyxerr << "filename_ = " << filename_ << "\n";
|
2002-01-31 14:20:09 +00:00
|
|
|
lyxerr << "outfile = " << outfile << endl;
|
2002-02-11 13:04:38 +00:00
|
|
|
converters.convert(buf, filename_, outfile, extension, image_target);
|
2001-02-08 13:06:55 +00:00
|
|
|
return outfile;
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
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?
|
|
|
|
if (params.subcaption) {
|
2001-02-08 13:06:55 +00:00
|
|
|
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;
|
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);
|
|
|
|
// 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
|
|
|
|
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/
|
2001-09-04 11:02:09 +00:00
|
|
|
int InsetGraphics::docbook(Buffer const * buf, ostream & os) const
|
2000-03-06 02:42:40 +00:00
|
|
|
{
|
2001-02-08 13:06:55 +00:00
|
|
|
// Change the path to be relative to the main file.
|
2002-01-14 23:31:23 +00:00
|
|
|
string const buffer_dir = buf->filePath();
|
2002-01-16 12:04:16 +00:00
|
|
|
string filename = RemoveExtension(
|
|
|
|
MakeRelPath(params.filename, buffer_dir));
|
|
|
|
|
|
|
|
if (suffixIs(filename, ".eps"))
|
|
|
|
filename.erase(filename.length() - 4);
|
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.
|
|
|
|
os << "<graphic fileref=\"" << filename << "\"></graphic>";
|
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.
|
|
|
|
if (params.filename.empty())
|
|
|
|
return ;
|
2000-07-31 12:30:10 +00:00
|
|
|
|
2001-11-19 15:34:11 +00:00
|
|
|
features.require("graphicx");
|
2000-07-31 12:30:10 +00:00
|
|
|
|
2000-08-14 09:44:53 +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-02-11 12:41:42 +00:00
|
|
|
// Update the inset after parameters changed (read from file or changed in
|
|
|
|
// dialog.
|
|
|
|
void InsetGraphics::updateInset() const
|
|
|
|
{
|
|
|
|
GraphicsCache & gc = GraphicsCache::getInstance();
|
|
|
|
boost::shared_ptr<GraphicsCacheItem> temp(0);
|
|
|
|
|
|
|
|
// We do it this way so that in the face of some error, we will still
|
|
|
|
// be in a valid state.
|
|
|
|
InsetGraphicsParams::DisplayType local_display = params.display;
|
|
|
|
if (local_display == InsetGraphicsParams::DEFAULT) {
|
|
|
|
if (lyxrc.display_graphics == "mono")
|
|
|
|
local_display = InsetGraphicsParams::MONOCHROME;
|
|
|
|
else if (lyxrc.display_graphics == "gray")
|
|
|
|
local_display = InsetGraphicsParams::GRAYSCALE;
|
|
|
|
else if (lyxrc.display_graphics == "color")
|
|
|
|
local_display = InsetGraphicsParams::COLOR;
|
|
|
|
else
|
|
|
|
local_display = InsetGraphicsParams::NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!params.filename.empty() && lyxrc.use_gui &&
|
|
|
|
local_display != InsetGraphicsParams::NONE) {
|
|
|
|
temp = gc.addFile(params.filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark the image as unloaded so that it gets updated.
|
|
|
|
imageLoaded = false;
|
|
|
|
|
|
|
|
cacheHandle = temp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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.
|
2001-06-27 14:10:35 +00:00
|
|
|
if (params == p)
|
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.
|
2001-06-27 14:10:35 +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
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
InsetGraphicsParams InsetGraphics::getParams() const
|
|
|
|
{
|
2000-08-14 09:44:53 +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
|
|
|
}
|
2002-01-29 09:26:24 +00:00
|
|
|
|