]> git.lyx.org Git - lyx.git/blob - src/insets/insetgraphics.C
* John's maths patch,
[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 (cacheHandle.get())
295                         status = cacheHandle->getImageStatus();
296                 
297                 // Check if the image is now ready.
298                 if (status == GraphicsCacheItem::Loaded) {
299                         imageLoaded = true;
300
301                         // Tell BufferView we need to be updated!
302                         bv->text->status(bv, LyXText::CHANGED_IN_DRAW);
303                         return;
304                 }
305
306                 
307                 paint.rectangle(old_x + 2, baseline - lascent,
308                                 lwidth - 4,
309                                 lascent + ldescent);
310
311                 string const msg = statusMessage();
312                 if (!msg.empty()) {
313                         // Print the message.
314                         LyXFont msgFont(font);
315                         msgFont.setFamily(LyXFont::SANS_FAMILY);
316                         msgFont.setSize(LyXFont::SIZE_FOOTNOTE);
317                         string const justname = OnlyFilename (params.filename);
318                         paint.text(old_x + 8, 
319                                    baseline - lyxfont::maxAscent(msgFont) - 4,
320                                    justname, msgFont);
321
322                         msgFont.setSize(LyXFont::SIZE_TINY);
323                         paint.text(old_x + 8, baseline - 4, msg, msgFont);
324                 }
325         }
326 }
327
328
329 void InsetGraphics::edit(BufferView *bv, int, int, unsigned int)
330 {
331         bv->owner()->getDialogs()->showGraphics(this);
332 }
333
334
335 void InsetGraphics::edit(BufferView * bv, bool)
336 {
337         edit(bv, 0, 0, 0);
338 }
339
340
341 Inset::EDITABLE InsetGraphics::editable() const
342 {
343         return IS_EDITABLE;
344 }
345
346
347 void InsetGraphics::write(Buffer const * buf, ostream & os) const
348 {
349         os << "Graphics FormatVersion 1\n";
350
351         params.Write(buf, os);
352 }
353
354
355 void InsetGraphics::read(Buffer const * buf, LyXLex & lex)
356 {
357         string const token = lex.GetString();
358
359         if (token == "Graphics")
360                 readInsetGraphics(buf, lex);
361         else if (token == "Figure") // Compatibility reading of FigInset figures.
362                 readFigInset(buf, lex);
363         else
364                 lyxerr[Debug::INFO] << "Not a Graphics or Figure inset!\n";
365
366         updateInset();
367 }
368
369 void InsetGraphics::readInsetGraphics(Buffer const * buf, LyXLex & lex)
370 {
371         bool finished = false;
372
373         while (lex.IsOK() && !finished) {
374                 lex.next();
375
376                 string const token = lex.GetString();
377                 lyxerr[Debug::INFO] << "Token: '" << token << '\'' 
378                                     << std::endl;
379
380                 if (token.empty()) {
381                         continue;
382                 } else if (token == "\\end_inset") {
383                         finished = true;
384                 } else if (token == "FormatVersion") {
385                         lex.next();
386                         int version = lex.GetInteger();
387                         if (version > 1)
388                                 lyxerr
389                                 << "This document was created with a newer Graphics widget"
390                                 ", You should use a newer version of LyX to read this"
391                                 " file."
392                                 << std::endl;
393                         // TODO: Possibly open up a dialog?
394                 }
395                 else {
396                         if (! params.Read(buf, lex, token))
397                                 lyxerr << "Unknown token, " << token << ", skipping." 
398                                         << std::endl;
399                 }
400         }
401 }
402
403
404 void InsetGraphics::readFigInset(Buffer const * buf, LyXLex & lex)
405 {
406         bool finished = false;
407         
408         while (lex.IsOK() && !finished) {
409                 lex.next();
410
411                 string const token = lex.GetString();
412                 lyxerr[Debug::INFO] << "Token: " << token << endl;
413                 
414                 if (token.empty())
415                         continue;
416                 else if (token == "\\end_inset") {
417                         finished = true;
418                 } else if (token == "file") {
419                         if (lex.next()) {
420                                 string const name = lex.GetString();
421                                 string const path = OnlyPath(buf->fileName());
422                                 params.filename = MakeAbsPath(name, path);
423                         }
424                 } else if (token == "extra") {
425                         if (lex.next());
426                         // kept for backwards compability. Delete in 0.13.x
427                 } else if (token == "subcaption") {
428                         if (lex.EatLine())
429                                 params.subcaptionText = lex.GetString();
430                 } else if (token == "label") {
431                         if (lex.next());
432                         // kept for backwards compability. Delete in 0.13.x
433                 } else if (token == "angle") {
434                         if (lex.next())
435                                 params.rotateAngle = lex.GetFloat();
436                 } else if (token == "size") {
437                         // Size of image on screen is ignored in InsetGraphics, just eat
438                         // the input.
439                         if (lex.next())
440                                 lex.GetInteger();
441                         if (lex.next())
442                                 lex.GetInteger();
443                 } else if (token == "flags") {
444                         InsetGraphicsParams::DisplayType tmp = InsetGraphicsParams::COLOR;
445                         if (lex.next())
446                                 switch (lex.GetInteger()) {
447                                 case 1: tmp = InsetGraphicsParams::MONOCHROME; break;
448                                 case 2: tmp = InsetGraphicsParams::GRAYSCALE; break;
449                                 }
450                         params.display = tmp;
451                 } else if (token == "subfigure") {
452                         params.subcaption = true;
453                 } else if (token == "width") {
454                         if (lex.next())
455                                 params.widthResize = static_cast<InsetGraphicsParams::Resize>(lex.GetInteger());
456                         if (lex.next())
457                                 params.widthSize = lex.GetFloat();
458                 } else if (token == "height") {
459                         if (lex.next())
460                                 params.heightResize = static_cast<InsetGraphicsParams::Resize>(lex.GetInteger());
461                         if (lex.next())
462                                 params.heightSize = lex.GetFloat();
463                 }
464         }
465 }
466
467
468 namespace {
469
470 void formatResize(ostream & os, string const & key,
471                   InsetGraphicsParams::Resize resizeType, double size)
472 {
473         switch (resizeType) {
474         case InsetGraphicsParams::DEFAULT_SIZE:
475                 break;
476
477         case InsetGraphicsParams::CM:
478                 os << key << '=' << size << "cm,";
479                 break;
480
481         case InsetGraphicsParams::INCH:
482                 os << key << '=' << size << "in,";
483                 break;
484
485         case InsetGraphicsParams::PERCENT_PAGE:
486                 os << key << '=' << size / 100 << "\\text" << key << ',';
487                 break;
488
489         case InsetGraphicsParams::PERCENT_COLUMN:
490                 os << key << '=' << size / 100 << "\\column" << key << ',';
491                 break;
492
493         case InsetGraphicsParams::SCALE:
494                 os << "scale" << '=' << size << ',';
495         }
496 }
497
498 } // namespace anon
499
500
501 string const
502 InsetGraphics::createLatexOptions() const
503 {
504         // Calculate the options part of the command, we must do it to a string
505         // stream since we might have a trailing comma that we would like to remove
506         // before writing it to the output stream.
507         ostringstream options;
508
509         formatResize(options, "width", params.widthResize, params.widthSize);
510         formatResize(options, "height", params.heightResize, params.heightSize);
511
512         // Make sure it's not very close to zero, a float can be effectively
513         // zero but not exactly zero.
514         if (lyx::float_equal(params.rotateAngle, 0, 0.001)) {
515                 options << "angle="
516                         << params.rotateAngle << ',';
517         }
518
519         string opts = options.str().c_str();
520         opts = strip(opts, ',');
521
522         return opts;
523 }
524
525 namespace {
526
527 enum FileType {
528         EPS,
529         PNG,
530         JPEG,
531         GIF,
532         PDF,
533         UNKNOWN
534 };
535
536 bool isEPS(string const & filename)
537 {
538         if (filename.empty() || !IsFileReadable(filename)) return false;
539
540         ifstream ifs(filename.c_str());
541
542         if (!ifs) return false; // Couldn't open file...
543
544         bool is_eps = false; // Have we recognized the file as EPS?
545         string to_find = "%!PS-Adobe-"; // The string we use to recognize
546         int const max_attempts = 500; // Maximum strings to read to attempt recognition
547         int count = 0; // Counter of attempts.
548         string str;
549         for (; count < max_attempts; ++count) {
550                 if (ifs.eof()) {
551                         lyxerr[Debug::INFO] << "InsetGraphics (isEPS)"
552                                 " End of file reached and it wasn't found to be EPS!" << endl;
553                         break;
554                 }
555
556                 ifs >> str;
557                 if (str.find(to_find)) {
558                         is_eps = true;
559                         break;
560                 }
561         }
562
563         return is_eps;
564 }
565
566 enum FileType classifyFileType(string const & filename, string const & suffix)
567 {
568         if (suffix == "png")
569                 return PNG;
570         else if (suffix == "jpg" || suffix == "jpeg")
571                 return JPEG;
572         else if (suffix == "gif")
573                 return GIF;
574         else if (suffix == "pdf")
575                 return PDF;
576         else if (isEPS(filename))
577                 return EPS;
578
579         return UNKNOWN;
580 }
581
582 string decideOutputImageFormat(string const & suffix, enum FileType type)
583 {
584         // lyxrc.pdf_mode means:
585         // Are we creating a PDF or a PS file?
586         // (Should actually mean, are we using latex or pdflatex).
587         
588         if (lyxrc.pdf_mode) {
589                 if (type == EPS || type == EPS || type == PDF)
590                         return "pdf";
591                 else if (type == JPEG)
592                         return suffix;
593                 else
594                         return "png";
595         }
596
597         // If it's postscript, we always do eps.
598         // There are many suffixes that are actually EPS (ask Garst for example)
599         // so we detect if it's an EPS by looking in the file, if it is, we return
600         // the same suffix of the file so it won't be converted.
601         if (type == EPS)
602                 return suffix;
603         
604         return "eps";
605 }
606
607 } // Anon. namespace
608
609 string const 
610 InsetGraphics::prepareFile(Buffer const *buf) const
611 {
612
613         // do_convert = Do we need to convert the file?
614         // nice = Do we create a nice version?
615         //        This is used when exporting the latex file only.
616         // 
617         // 
618         // if (!do_convert)
619         //   return original filename
620         // 
621         // if (!nice)
622         //   convert_place = temp directory
623         //   return new filename in temp directory
624         // else
625         //   convert_place = original file directory
626         //   return original filename without the extension
627         //
628         
629         // Get the extension (format) of the original file.
630         string const extension = GetExtension(params.filename);
631         FileType type = classifyFileType(params.filename, extension);
632         
633         // Are we creating a PDF or a PS file?
634         // (Should actually mean, are we usind latex or pdflatex).
635         string const image_target = decideOutputImageFormat(extension, type);
636
637         if (extension == image_target)
638                 return params.filename;
639
640         string outfile;
641         if (!buf->niceFile) {
642                 string const temp = AddName(buf->tmppath, params.filename);
643                 outfile = RemoveExtension(temp);
644                 
645                 //lyxerr << "buf::tmppath = " << buf->tmppath << "\n";
646                 //lyxerr << "filename = " << params.filename << "\n";
647                 //lyxerr << "temp = " << temp << "\n";
648                 //lyxerr << "outfile = " << outfile << endl;
649         } else {
650                 string const path = OnlyPath(buf->fileName());
651                 string const relname = MakeRelPath(params.filename, path);
652                 outfile = RemoveExtension(relname);
653         }
654
655         converters.convert(buf, params.filename, outfile, extension, image_target);
656         
657         return outfile;
658 }
659
660
661 int InsetGraphics::latex(Buffer const *buf, ostream & os,
662                          bool /*fragile*/, bool/*fs*/) const
663 {
664         // MISSING: We have to decide how to do the order of the options
665         // that is dependent of order, like width, height, angle. Should
666         // we rotate before scale? Should we let the user decide?
667         // bool rot_before_scale; ?
668
669         // (BE) As a first step we should do a scale before rotate since this is
670         // more like the natural thought of how to do it.
671         // (BE) I believe that a priority list presented to the user with
672         // a default order would be the best, though it would be better to
673         // hide such a thing in an "Advanced options" dialog.
674         // (BE) This should go an advanced LaTeX options dialog.
675
676         // If there is no file specified, just output a message about it in
677         // the latex output.
678         if (params.filename.empty()) {
679                 os  << "\\fbox{\\rule[-0.5in]{0pt}{1in}"
680                         << _("empty figure path")
681                         << "}\n";
682
683                 return 1; // One end of line marker added to the stream.
684         }
685
686         // Keep count of newlines that we issued.
687         int newlines = 0;
688
689         // This variables collect all the latex code that should be before and
690         // after the actual includegraphics command.
691         string before;
692         string after;
693
694         // Do we want subcaptions?
695         if (params.subcaption) {
696                 before += "\\subfigure[" + params.subcaptionText + "]{";
697                 after = '}' + after;
698         }
699
700         // We never use the starred form, we use the "clip" option instead.
701         os << before << "\\includegraphics";
702
703         // Write the options if there are any.
704         string const opts = createLatexOptions();
705         if (!opts.empty()) {
706                 os << '[' << opts << ']';
707         }
708
709         // Make the filename relative to the lyx file
710         // and remove the extension so the LaTeX will use whatever is
711         // appropriate (when there are several versions in different formats)
712         string const filename = prepareFile(buf);
713         
714         os << '{' << filename << '}' << after;
715
716         // Return how many newlines we issued.
717         return newlines;
718 }
719
720
721 int InsetGraphics::ascii(Buffer const *, ostream &, int) const
722 {
723         // No graphics in ascii output. Possible to use gifscii to convert
724         // images to ascii approximation.
725         
726         // 1. Convert file to ascii using gifscii
727         // 2. Read ascii output file and add it to the output stream.
728         
729         return 0;
730 }
731
732
733 int InsetGraphics::linuxdoc(Buffer const *, ostream &) const
734 {
735         // No graphics in LinuxDoc output. Should check how/what to add.
736         return 0;
737 }
738
739
740 // For explanation on inserting graphics into DocBook checkout:
741 // http://linuxdoc.org/LDP/LDP-Author-Guide/inserting-pictures.html
742 // See also the docbook guide at http://www.docbook.org/
743 int InsetGraphics::docBook(Buffer const * buf, ostream & os) const
744 {
745         // Change the path to be relative to the main file.
746         string const buffer_dir = OnlyPath(buf->fileName());
747         string const filename = RemoveExtension(
748                                    MakeRelPath(params.filename, buffer_dir));
749
750         // In DocBook v5.0, the graphic tag will be eliminated from DocBook, will 
751         // need to switch to MediaObject. However, for now this is sufficient and 
752         // easier to use.
753         os << "<graphic fileref=\"" << filename << "\"></graphic>";
754         return 0;
755 }
756
757
758 void InsetGraphics::validate(LaTeXFeatures & features) const
759 {
760         // If we have no image, we should not require anything.
761         if (params.filename.empty())
762                 return ;
763
764         features.graphicx = true;
765
766         if (params.subcaption)
767                 features.subfigure = true;
768 }
769
770
771 // Update the inset after parameters changed (read from file or changed in
772 // dialog.
773 void InsetGraphics::updateInset() const
774 {
775         GraphicsCache & gc = GraphicsCache::getInstance();
776         boost::shared_ptr<GraphicsCacheItem> temp(0);
777
778         // We do it this way so that in the face of some error, we will still
779         // be in a valid state.
780         if (!params.filename.empty()) {
781                 temp = gc.addFile(params.filename);
782         }
783
784         // Mark the image as unloaded so that it gets updated.
785         imageLoaded = false;
786
787         cacheHandle = temp;
788 }
789
790
791 bool InsetGraphics::setParams(InsetGraphicsParams const & p)
792 {
793         // If nothing is changed, just return and say so.
794         if (params == p)
795                 return false;
796
797         // Copy the new parameters.
798         params = p;
799
800         // Update the inset with the new parameters.
801         updateInset();
802
803         // We have changed data, report it.
804         return true;
805 }
806
807
808 InsetGraphicsParams InsetGraphics::getParams() const
809 {
810         return params;
811 }
812
813
814 Inset * InsetGraphics::clone(Buffer const &, bool same_id) const
815 {
816         return new InsetGraphics(*this, same_id);
817 }