]> git.lyx.org Git - lyx.git/blob - src/insets/insetgraphics.C
72944c62b62ed3bbf88221386f4995684141ad7c
[lyx.git] / src / insets / insetgraphics.C
1 /* This file is part of
2  * ====================================================== 
3  * 
4  *           LyX, The Document Processor
5  *       
6  *           Copyright 1995-2001 the LyX Team.
7  *           
8  *           This file Copyright 2000 Baruch Even.
9  * ====================================================== */
10
11 /*
12 Major tasks:
13         * Switch to convert the images in the background, this requires work on
14                 the converter, the systemcontroller and the graphics cache.
15
16 Minor tasks:
17     * Pop up a dialog if the widget version is higher than what we accept.
18         * Provide sed/awk/C code to downgrade from InsetGraphics to FigInset(?)
19         
20 */
21
22 /*
23 Known BUGS:
24     
25     * If the image is from the clipart, and the document is moved to another
26        directory, the user is screwed. Need a way to handle it.
27        This amounts to a problem of when to use relative or absolute file paths
28        We should probably use what the user asks to use... but when he chooses
29        by the file dialog we normally get an absolute path and this may not be 
30        what the user meant.
31     * Bug in FileDlg class (src/filedlg.[hC]) when selecting a file and then
32         pressing ok, it counts as if no real selection done. Apparently
33         when choosing a file it doesn't update the select file input line.
34                 
35         * If we are trying to create a file in a read-only directory and there
36                 are graphics that need converting, the converting will fail because
37                 it is done in-place, into the same directory as the original image.
38                 This needs to be fixed in the src/converter.C file
39                 [ This is presumed to be fixed, needs testing.]
40
41         * We do not dither or resize the image in a WYSIWYM way, we load it at
42                 its original size and color, resizing is done in the final output,
43                 but not in the LyX window.
44
45         * The scale option is only handled for the horizontal part, the vertical
46                 part will not work. For now it is also shown only for horizontal
47                 resizing on the form.
48
49         * EPS figures are not fully detected, they may have a lot of possible
50                 suffixes so we need to read the file and detect if it's EPS or not.
51                 [Implemented, need testing]
52                 
53 TODO Before initial production release:
54     * Replace insetfig everywhere
55         * Search for comments of the form
56             // INSET_GRAPHICS: remove this when InsetFig is thrown.
57           And act upon them. Make sure not to remove InsetFig code for the 
58                   1.2.0 release, only afterwards, after deployment shows InsetGraphics
59                   to be ok.
60  
61 TODO Extended features:
62  
63     * Advanced Latex tab folder.
64     * Add support for more features so that it will be better than insetfig.
65         * Keep aspect ratio radio button
66         * Support for complete control over the latex parameters for TeXperts
67         * What advanced features the users want to do?
68             Implement them in a non latex dependent way, but a logical way.
69             LyX should translate it to latex or any other fitting format.
70     * Add a way to roll the image file into the file format.
71     * When loading, if the image is not found in the expected place, try
72        to find it in the clipart, or in the same directory with the image.
73     * Keep a tab on the image file, if it changes, update the lyx view.
74         * The image choosing dialog could show thumbnails of the image formats
75                 it knows of, thus selection based on the image instead of based on
76                 filename.
77         * Add support for the 'picins' package.
78         * Add support for the 'picinpar' package.
79         * Improve support for 'subfigure' - Allow to set the various options
80                 that are possible.
81         * Add resizing by percentage of image size (50%, 150%) - usefull for two
82                 images of different size to be resized where they both should have
83                 the same scale compared to each other.
84  */
85
86 /* NOTES:
87  *
88  * Intentions:
89  *  This is currently a moving target, I'm trying stuff and learning what
90  *  is needed and how to accomplish it, since there is no predefined goal or
91  *  way to go I invent it as I go.
92  *
93  *  My current intention is for seperation from LaTeX, the basic needs are 
94  *  resizing and rotating, displaying on screen in various depths and printing
95  *  conversion of depths (independent of the display depth). For this I'll 
96  *  provide a simple interface.
97  *
98  *  The medium level includes clipping of the image, but in a limited way.
99  *
100  *  For the LaTeX gurus I'll provide a complete control over the output, but
101  *  this is latex dependent and guru dependent so I'd rather avoid doing this
102  *  for the normal user. This stuff includes clipping, special image size
103  *  specifications (\textwidth\minus 2in) which I see no way to generalize
104  *  to non-latex specific way.
105  *
106  * Used packages:
107  *  'graphicx' for the graphics inclusion.
108  *  'subfigure' for the subfigures.
109  *
110  * Fileformat:
111  *
112  * Current version is 1 (inset file format version), when changing it
113  * it should be changed in the Write() function when writing in one place
114  * and when reading one should change the version check and the error message.
115  *
116  * The filename is kept in  the lyx file in a relative way, so as to allow
117  * moving the document file and its images with no problem.
118  *
119  * Conversions:
120  *   Postscript output means EPS figures.
121  *
122  *   PDF output is best done with PDF figures if it's a direct conversion
123  *   or PNG figures otherwise.
124  *      Image format
125  *      from        to
126  *      EPS         epstopdf
127  *      JPG/PNG     direct
128  *      PDF         direct
129  *      others      PNG
130  */
131
132 #include <config.h> 
133
134 #ifdef __GNUG__
135 #pragma implementation
136 #endif 
137
138 #include "insets/insetgraphics.h"
139 #include "insets/insetgraphicsParams.h"
140 #include "graphics/GraphicsCache.h"
141 #include "graphics/GraphicsCacheItem.h"
142
143 #include "frontends/Dialogs.h"
144 #include "LyXView.h"
145 #include "buffer.h"
146 #include "BufferView.h"
147 #include "converter.h"
148 #include "frontends/support/LyXImage.h"
149 #include "Painter.h"
150 #include "lyx_gui_misc.h"
151 #include "support/FileInfo.h"
152 #include "support/filetools.h"
153 #include "support/lyxlib.h"
154 #include "lyxtext.h"
155 #include "lyxrc.h"
156 #include "font.h" // For the lyxfont class.
157 #include "fstream" // for ifstream in isEPS
158 #include <algorithm> // For the std::max
159 #include "support/lyxmanip.h"
160 #include "debug.h"
161 #include "gettext.h"
162
163 extern string system_tempdir;
164
165 using std::ifstream;
166 using std::ostream;
167 using std::endl;
168
169
170 // This function is a utility function
171 inline
172 string const RemoveExtension(string const & filename)
173 {
174         return ChangeExtension(filename, string());
175 }
176
177
178 // Initialize only those variables that do not have a constructor.
179 InsetGraphics::InsetGraphics()
180         : cacheHandle(0), imageLoaded(false)
181 {}
182
183
184 InsetGraphics::InsetGraphics(InsetGraphics const & ig, bool same_id)
185         : Inset(), SigC::Object()
186         , cacheHandle(ig.cacheHandle)
187         , imageLoaded(ig.imageLoaded)
188 {
189         setParams(ig.getParams());
190         if (same_id)
191                 id_ = ig.id_;
192 }
193
194
195 InsetGraphics::~InsetGraphics()
196 {
197         // Emits the hide signal to the dialog connected (if any)
198         hideDialog();
199 }
200
201
202 string const
203 InsetGraphics::statusMessage() const
204 {
205         string msg;
206
207         if (cacheHandle.get()) {
208                 switch (cacheHandle->getImageStatus()) {
209                 case GraphicsCacheItem::UnknownError:
210                         msg = _("Unknown Error");
211                         break;
212
213                 case GraphicsCacheItem::Loading:
214                         msg = _("Loading...");
215                         break;
216
217                 case GraphicsCacheItem::ErrorReading:
218                         msg = _("Error reading");
219                         break;
220
221                 case GraphicsCacheItem::ErrorConverting:
222                         msg = _("Error converting");
223                         break;
224
225                 case GraphicsCacheItem::Loaded:
226                         // No message to write.
227                         break;
228                 }
229         }
230
231         return msg;
232 }
233
234
235 int InsetGraphics::ascent(BufferView *, LyXFont const &) const
236 {
237         LyXImage * pixmap = 0;
238         if (cacheHandle.get() && (pixmap = cacheHandle->getImage()))
239                 return pixmap->getHeight();
240         else
241                 return 50;
242 }
243
244
245 int InsetGraphics::descent(BufferView *, LyXFont const &) const
246 {
247         // this is not true if viewport is used and clip is not.
248         return 0;
249 }
250
251
252 int InsetGraphics::width(BufferView *, LyXFont const & font) const
253 {
254         LyXImage * pixmap = 0;
255         
256         if (cacheHandle.get() && (pixmap = cacheHandle->getImage()))
257                 return pixmap->getWidth();
258         else {
259                 string const msg = statusMessage();
260                 int font_width = 0;
261                 
262                 if (!msg.empty())
263                         font_width = lyxfont::width(msg, font);
264                 
265                 return std::max(50, font_width + 15);
266         }
267 }
268
269
270 void InsetGraphics::draw(BufferView * bv, LyXFont const & font,
271                          int baseline, float & x, bool) const
272 {
273         Painter & paint = bv->painter();
274
275         int ldescent = descent(bv, font);
276         int lascent = ascent(bv, font);
277         int lwidth = width(bv, font);
278
279         // Make sure x is updated upon exit from this routine
280         int old_x = int(x);
281         x += lwidth;
282
283         // This will draw the graphics. If the graphics has not been loaded yet,
284         // we draw just a rectangle.
285         if (imageLoaded) {
286
287                 paint.image(old_x + 2, baseline - lascent,
288                             lwidth - 4, lascent + ldescent,
289                             cacheHandle->getImage());
290         } else {
291                 
292                 // Get the image status, default to unknown error.
293                 GraphicsCacheItem::ImageStatus status = GraphicsCacheItem::UnknownError;
294                 if (params.display != InsetGraphicsParams::NONE &&
295                     cacheHandle.get())
296                         status = cacheHandle->getImageStatus();
297                 
298                 // Check if the image is now ready.
299                 if (status == GraphicsCacheItem::Loaded) {
300                         imageLoaded = true;
301
302                         // Tell BufferView we need to be updated!
303                         bv->text->status(bv, LyXText::CHANGED_IN_DRAW);
304                         return;
305                 }
306
307                 
308                 paint.rectangle(old_x + 2, baseline - lascent,
309                                 lwidth - 4,
310                                 lascent + ldescent);
311
312                 string const msg = statusMessage();
313                 if (!msg.empty()) {
314                         // Print the message.
315                         LyXFont msgFont(font);
316                         msgFont.setFamily(LyXFont::SANS_FAMILY);
317                         msgFont.setSize(LyXFont::SIZE_FOOTNOTE);
318                         string const justname = OnlyFilename (params.filename);
319                         paint.text(old_x + 8, 
320                                    baseline - lyxfont::maxAscent(msgFont) - 4,
321                                    justname, msgFont);
322
323                         msgFont.setSize(LyXFont::SIZE_TINY);
324                         paint.text(old_x + 8, baseline - 4, msg, msgFont);
325                 }
326         }
327 }
328
329
330 void InsetGraphics::edit(BufferView *bv, int, int, unsigned int)
331 {
332         bv->owner()->getDialogs()->showGraphics(this);
333 }
334
335
336 void InsetGraphics::edit(BufferView * bv, bool)
337 {
338         edit(bv, 0, 0, 0);
339 }
340
341
342 Inset::EDITABLE InsetGraphics::editable() const
343 {
344         return IS_EDITABLE;
345 }
346
347
348 void InsetGraphics::write(Buffer const * buf, ostream & os) const
349 {
350         os << "Graphics FormatVersion 1\n";
351
352         params.Write(buf, os);
353 }
354
355
356 void InsetGraphics::read(Buffer const * buf, LyXLex & lex)
357 {
358         string const token = lex.getString();
359
360         if (token == "Graphics")
361                 readInsetGraphics(buf, lex);
362         else if (token == "Figure") // Compatibility reading of FigInset figures.
363                 readFigInset(buf, lex);
364         else
365                 lyxerr[Debug::INFO] << "Not a Graphics or Figure inset!\n";
366
367         updateInset();
368 }
369
370 void InsetGraphics::readInsetGraphics(Buffer const * buf, LyXLex & lex)
371 {
372         bool finished = false;
373
374         while (lex.isOK() && !finished) {
375                 lex.next();
376
377                 string const token = lex.getString();
378                 lyxerr[Debug::INFO] << "Token: '" << token << '\'' 
379                                     << std::endl;
380
381                 if (token.empty()) {
382                         continue;
383                 } else if (token == "\\end_inset") {
384                         finished = true;
385                 } else if (token == "FormatVersion") {
386                         lex.next();
387                         int version = lex.getInteger();
388                         if (version > 1)
389                                 lyxerr
390                                 << "This document was created with a newer Graphics widget"
391                                 ", You should use a newer version of LyX to read this"
392                                 " file."
393                                 << std::endl;
394                         // TODO: Possibly open up a dialog?
395                 }
396                 else {
397                         if (! params.Read(buf, lex, token))
398                                 lyxerr << "Unknown token, " << token << ", skipping." 
399                                         << std::endl;
400                 }
401         }
402 }
403
404
405 void InsetGraphics::readFigInset(Buffer const * buf, LyXLex & lex)
406 {
407         bool finished = false;
408         
409         while (lex.isOK() && !finished) {
410                 lex.next();
411
412                 string const token = lex.getString();
413                 lyxerr[Debug::INFO] << "Token: " << token << endl;
414                 
415                 if (token.empty())
416                         continue;
417                 else if (token == "\\end_inset") {
418                         finished = true;
419                 } else if (token == "file") {
420                         if (lex.next()) {
421                                 string const name = lex.getString();
422                                 string const path = OnlyPath(buf->fileName());
423                                 params.filename = MakeAbsPath(name, path);
424                         }
425                 } else if (token == "extra") {
426                         if (lex.next());
427                         // kept for backwards compability. Delete in 0.13.x
428                 } else if (token == "subcaption") {
429                         if (lex.eatLine())
430                                 params.subcaptionText = lex.getString();
431                 } else if (token == "label") {
432                         if (lex.next());
433                         // kept for backwards compability. Delete in 0.13.x
434                 } else if (token == "angle") {
435                         if (lex.next())
436                                 params.rotateAngle = lex.getFloat();
437                 } else if (token == "size") {
438                         // Size of image on screen is ignored in InsetGraphics, just eat
439                         // the input.
440                         if (lex.next()) {
441                                 lex.getInteger();
442                         }
443                         if (lex.next()) {
444                                 lex.getInteger();
445                         }
446                 } else if (token == "flags") {
447                         InsetGraphicsParams::DisplayType tmp = InsetGraphicsParams::COLOR;
448                         if (lex.next())
449                                 switch (lex.getInteger()) {
450                                 case 1: tmp = InsetGraphicsParams::MONOCHROME; break;
451                                 case 2: tmp = InsetGraphicsParams::GRAYSCALE; break;
452                                 }
453                         params.display = tmp;
454                 } else if (token == "subfigure") {
455                         params.subcaption = true;
456                 } else if (token == "width") {
457                         if (lex.next()) {
458                                 params.widthResize = static_cast<InsetGraphicsParams::Resize>(lex.getInteger());
459                         }
460                         if (lex.next()) {
461                                 params.widthSize = lex.getFloat();
462                         }
463                 } else if (token == "height") {
464                         if (lex.next()) {
465                                 params.heightResize = static_cast<InsetGraphicsParams::Resize>(lex.getInteger());
466                         }
467                         if (lex.next()) {
468                                 params.heightSize = lex.getFloat();
469                         }
470                 }
471         }
472 }
473
474
475 namespace {
476
477 void formatResize(ostream & os, string const & key,
478                   InsetGraphicsParams::Resize resizeType, double size)
479 {
480         switch (resizeType) {
481         case InsetGraphicsParams::DEFAULT_SIZE:
482                 break;
483
484         case InsetGraphicsParams::CM:
485                 os << key << '=' << size << "cm,";
486                 break;
487
488         case InsetGraphicsParams::INCH:
489                 os << key << '=' << size << "in,";
490                 break;
491
492         case InsetGraphicsParams::PERCENT_PAGE:
493                 os << key << '=' << size / 100 << "\\text" << key << ',';
494                 break;
495
496         case InsetGraphicsParams::PERCENT_COLUMN:
497                 os << key << '=' << size / 100 << "\\column" << key << ',';
498                 break;
499
500         case InsetGraphicsParams::SCALE:
501                 os << "scale" << '=' << size << ',';
502         }
503 }
504
505 } // namespace anon
506
507
508 string const
509 InsetGraphics::createLatexOptions() const
510 {
511         // Calculate the options part of the command, we must do it to a string
512         // stream since we might have a trailing comma that we would like to remove
513         // before writing it to the output stream.
514         ostringstream options;
515
516         formatResize(options, "width", params.widthResize, params.widthSize);
517         formatResize(options, "height", params.heightResize, params.heightSize);
518
519         // Make sure it's not very close to zero, a float can be effectively
520         // zero but not exactly zero.
521         if (lyx::float_equal(params.rotateAngle, 0, 0.001)) {
522                 options << "angle="
523                         << params.rotateAngle << ',';
524         }
525
526         string opts = options.str().c_str();
527         opts = strip(opts, ',');
528
529         return opts;
530 }
531
532 namespace {
533
534 enum FileType {
535         EPS,
536         PNG,
537         JPEG,
538         GIF,
539         PDF,
540         UNKNOWN
541 };
542
543 bool isEPS(string const & filename)
544 {
545         if (filename.empty() || !IsFileReadable(filename)) return false;
546
547         ifstream ifs(filename.c_str());
548
549         if (!ifs) return false; // Couldn't open file...
550
551         bool is_eps = false; // Have we recognized the file as EPS?
552         string to_find = "%!PS-Adobe-"; // The string we use to recognize
553         int const max_attempts = 500; // Maximum strings to read to attempt recognition
554         int count = 0; // Counter of attempts.
555         string str;
556         for (; count < max_attempts; ++count) {
557                 if (ifs.eof()) {
558                         lyxerr[Debug::INFO] << "InsetGraphics (isEPS)"
559                                 " End of file reached and it wasn't found to be EPS!" << endl;
560                         break;
561                 }
562
563                 ifs >> str;
564                 if (str.find(to_find)) {
565                         is_eps = true;
566                         break;
567                 }
568         }
569
570         return is_eps;
571 }
572
573 enum FileType classifyFileType(string const & filename, string const & suffix)
574 {
575         if (suffix == "png")
576                 return PNG;
577         else if (suffix == "jpg" || suffix == "jpeg")
578                 return JPEG;
579         else if (suffix == "gif")
580                 return GIF;
581         else if (suffix == "pdf")
582                 return PDF;
583         else if (isEPS(filename))
584                 return EPS;
585
586         return UNKNOWN;
587 }
588
589 string decideOutputImageFormat(string const & suffix, enum FileType type)
590 {
591         // lyxrc.pdf_mode means:
592         // Are we creating a PDF or a PS file?
593         // (Should actually mean, are we using latex or pdflatex).
594         
595         if (lyxrc.pdf_mode) {
596                 if (type == EPS || type == EPS || type == PDF)
597                         return "pdf";
598                 else if (type == JPEG)
599                         return suffix;
600                 else
601                         return "png";
602         }
603
604         // If it's postscript, we always do eps.
605         // There are many suffixes that are actually EPS (ask Garst for example)
606         // so we detect if it's an EPS by looking in the file, if it is, we return
607         // the same suffix of the file so it won't be converted.
608         if (type == EPS)
609                 return suffix;
610         
611         return "eps";
612 }
613
614 } // Anon. namespace
615
616 string const 
617 InsetGraphics::prepareFile(Buffer const *buf) const
618 {
619
620         // do_convert = Do we need to convert the file?
621         // nice = Do we create a nice version?
622         //        This is used when exporting the latex file only.
623         // 
624         // 
625         // if (!do_convert)
626         //   return original filename
627         // 
628         // if (!nice)
629         //   convert_place = temp directory
630         //   return new filename in temp directory
631         // else
632         //   convert_place = original file directory
633         //   return original filename without the extension
634         //
635         
636         // Get the extension (format) of the original file.
637         string const extension = GetExtension(params.filename);
638         FileType type = classifyFileType(params.filename, extension);
639         
640         // Are we creating a PDF or a PS file?
641         // (Should actually mean, are we usind latex or pdflatex).
642         string const image_target = decideOutputImageFormat(extension, type);
643
644         if (extension == image_target)
645                 return params.filename;
646
647         string outfile;
648         if (!buf->niceFile) {
649                 string const temp = AddName(buf->tmppath, params.filename);
650                 outfile = RemoveExtension(temp);
651                 
652                 //lyxerr << "buf::tmppath = " << buf->tmppath << "\n";
653                 //lyxerr << "filename = " << params.filename << "\n";
654                 //lyxerr << "temp = " << temp << "\n";
655                 //lyxerr << "outfile = " << outfile << endl;
656         } else {
657                 string const path = OnlyPath(buf->fileName());
658                 string const relname = MakeRelPath(params.filename, path);
659                 outfile = RemoveExtension(relname);
660         }
661
662         converters.convert(buf, params.filename, outfile, extension, image_target);
663         
664         return outfile;
665 }
666
667
668 int InsetGraphics::latex(Buffer const *buf, ostream & os,
669                          bool /*fragile*/, bool/*fs*/) const
670 {
671         // MISSING: We have to decide how to do the order of the options
672         // that is dependent of order, like width, height, angle. Should
673         // we rotate before scale? Should we let the user decide?
674         // bool rot_before_scale; ?
675
676         // (BE) As a first step we should do a scale before rotate since this is
677         // more like the natural thought of how to do it.
678         // (BE) I believe that a priority list presented to the user with
679         // a default order would be the best, though it would be better to
680         // hide such a thing in an "Advanced options" dialog.
681         // (BE) This should go an advanced LaTeX options dialog.
682
683         // If there is no file specified, just output a message about it in
684         // the latex output.
685         if (params.filename.empty()) {
686                 os  << "\\fbox{\\rule[-0.5in]{0pt}{1in}"
687                         << _("empty figure path")
688                         << "}\n";
689
690                 return 1; // One end of line marker added to the stream.
691         }
692
693         // Keep count of newlines that we issued.
694         int newlines = 0;
695
696         // This variables collect all the latex code that should be before and
697         // after the actual includegraphics command.
698         string before;
699         string after;
700
701         // Do we want subcaptions?
702         if (params.subcaption) {
703                 before += "\\subfigure[" + params.subcaptionText + "]{";
704                 after = '}' + after;
705         }
706
707         // We never use the starred form, we use the "clip" option instead.
708         os << before << "\\includegraphics";
709
710         // Write the options if there are any.
711         string const opts = createLatexOptions();
712         if (!opts.empty()) {
713                 os << '[' << opts << ']';
714         }
715
716         // Make the filename relative to the lyx file
717         // and remove the extension so the LaTeX will use whatever is
718         // appropriate (when there are several versions in different formats)
719         string const filename = prepareFile(buf);
720         
721         os << '{' << filename << '}' << after;
722
723         // Return how many newlines we issued.
724         return newlines;
725 }
726
727
728 int InsetGraphics::ascii(Buffer const *, ostream &, int) const
729 {
730         // No graphics in ascii output. Possible to use gifscii to convert
731         // images to ascii approximation.
732         
733         // 1. Convert file to ascii using gifscii
734         // 2. Read ascii output file and add it to the output stream.
735         
736         return 0;
737 }
738
739
740 int InsetGraphics::linuxdoc(Buffer const *, ostream &) const
741 {
742         // No graphics in LinuxDoc output. Should check how/what to add.
743         return 0;
744 }
745
746
747 // For explanation on inserting graphics into DocBook checkout:
748 // http://linuxdoc.org/LDP/LDP-Author-Guide/inserting-pictures.html
749 // See also the docbook guide at http://www.docbook.org/
750 int InsetGraphics::docbook(Buffer const * buf, ostream & os) const
751 {
752         // Change the path to be relative to the main file.
753         string const buffer_dir = OnlyPath(buf->fileName());
754         string const filename = RemoveExtension(
755                                    MakeRelPath(params.filename, buffer_dir));
756
757         // In DocBook v5.0, the graphic tag will be eliminated from DocBook, will 
758         // need to switch to MediaObject. However, for now this is sufficient and 
759         // easier to use.
760         os << "<graphic fileref=\"" << filename << "\"></graphic>";
761         return 0;
762 }
763
764
765 void InsetGraphics::validate(LaTeXFeatures & features) const
766 {
767         // If we have no image, we should not require anything.
768         if (params.filename.empty())
769                 return ;
770
771         features.graphicx = true;
772
773         if (params.subcaption)
774                 features.subfigure = true;
775 }
776
777
778 // Update the inset after parameters changed (read from file or changed in
779 // dialog.
780 void InsetGraphics::updateInset() const
781 {
782         GraphicsCache & gc = GraphicsCache::getInstance();
783         boost::shared_ptr<GraphicsCacheItem> temp(0);
784
785         // We do it this way so that in the face of some error, we will still
786         // be in a valid state.
787         if (!params.filename.empty()) {
788                 temp = gc.addFile(params.filename);
789         }
790
791         // Mark the image as unloaded so that it gets updated.
792         imageLoaded = false;
793
794         cacheHandle = temp;
795 }
796
797
798 bool InsetGraphics::setParams(InsetGraphicsParams const & p)
799 {
800         // If nothing is changed, just return and say so.
801         if (params == p)
802                 return false;
803
804         // Copy the new parameters.
805         params = p;
806
807         // Update the inset with the new parameters.
808         updateInset();
809
810         // We have changed data, report it.
811         return true;
812 }
813
814
815 InsetGraphicsParams InsetGraphics::getParams() const
816 {
817         return params;
818 }
819
820
821 Inset * InsetGraphics::clone(Buffer const &, bool same_id) const
822 {
823         return new InsetGraphics(*this, same_id);
824 }