]> git.lyx.org Git - lyx.git/blob - src/insets/insetgraphics.C
7db9d2a8789759fbff4cd85f58520235e379078b
[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                         }
442                         if (lex.next()) {
443                                 lex.getInteger();
444                         }
445                 } else if (token == "flags") {
446                         InsetGraphicsParams::DisplayType tmp = InsetGraphicsParams::COLOR;
447                         if (lex.next())
448                                 switch (lex.getInteger()) {
449                                 case 1: tmp = InsetGraphicsParams::MONOCHROME; break;
450                                 case 2: tmp = InsetGraphicsParams::GRAYSCALE; break;
451                                 }
452                         params.display = tmp;
453                 } else if (token == "subfigure") {
454                         params.subcaption = true;
455                 } else if (token == "width") {
456                         if (lex.next()) {
457                                 params.widthResize = static_cast<InsetGraphicsParams::Resize>(lex.getInteger());
458                         }
459                         if (lex.next()) {
460                                 params.widthSize = lex.getFloat();
461                         }
462                 } else if (token == "height") {
463                         if (lex.next()) {
464                                 params.heightResize = static_cast<InsetGraphicsParams::Resize>(lex.getInteger());
465                         }
466                         if (lex.next()) {
467                                 params.heightSize = lex.getFloat();
468                         }
469                 }
470         }
471 }
472
473
474 namespace {
475
476 void formatResize(ostream & os, string const & key,
477                   InsetGraphicsParams::Resize resizeType, double size)
478 {
479         switch (resizeType) {
480         case InsetGraphicsParams::DEFAULT_SIZE:
481                 break;
482
483         case InsetGraphicsParams::CM:
484                 os << key << '=' << size << "cm,";
485                 break;
486
487         case InsetGraphicsParams::INCH:
488                 os << key << '=' << size << "in,";
489                 break;
490
491         case InsetGraphicsParams::PERCENT_PAGE:
492                 os << key << '=' << size / 100 << "\\text" << key << ',';
493                 break;
494
495         case InsetGraphicsParams::PERCENT_COLUMN:
496                 os << key << '=' << size / 100 << "\\column" << key << ',';
497                 break;
498
499         case InsetGraphicsParams::SCALE:
500                 os << "scale" << '=' << size << ',';
501         }
502 }
503
504 } // namespace anon
505
506
507 string const
508 InsetGraphics::createLatexOptions() const
509 {
510         // Calculate the options part of the command, we must do it to a string
511         // stream since we might have a trailing comma that we would like to remove
512         // before writing it to the output stream.
513         ostringstream options;
514
515         formatResize(options, "width", params.widthResize, params.widthSize);
516         formatResize(options, "height", params.heightResize, params.heightSize);
517
518         // Make sure it's not very close to zero, a float can be effectively
519         // zero but not exactly zero.
520         if (lyx::float_equal(params.rotateAngle, 0, 0.001)) {
521                 options << "angle="
522                         << params.rotateAngle << ',';
523         }
524
525         string opts = options.str().c_str();
526         opts = strip(opts, ',');
527
528         return opts;
529 }
530
531 namespace {
532
533 enum FileType {
534         EPS,
535         PNG,
536         JPEG,
537         GIF,
538         PDF,
539         UNKNOWN
540 };
541
542 bool isEPS(string const & filename)
543 {
544         if (filename.empty() || !IsFileReadable(filename)) return false;
545
546         ifstream ifs(filename.c_str());
547
548         if (!ifs) return false; // Couldn't open file...
549
550         bool is_eps = false; // Have we recognized the file as EPS?
551         string to_find = "%!PS-Adobe-"; // The string we use to recognize
552         int const max_attempts = 500; // Maximum strings to read to attempt recognition
553         int count = 0; // Counter of attempts.
554         string str;
555         for (; count < max_attempts; ++count) {
556                 if (ifs.eof()) {
557                         lyxerr[Debug::INFO] << "InsetGraphics (isEPS)"
558                                 " End of file reached and it wasn't found to be EPS!" << endl;
559                         break;
560                 }
561
562                 ifs >> str;
563                 if (str.find(to_find)) {
564                         is_eps = true;
565                         break;
566                 }
567         }
568
569         return is_eps;
570 }
571
572 enum FileType classifyFileType(string const & filename, string const & suffix)
573 {
574         if (suffix == "png")
575                 return PNG;
576         else if (suffix == "jpg" || suffix == "jpeg")
577                 return JPEG;
578         else if (suffix == "gif")
579                 return GIF;
580         else if (suffix == "pdf")
581                 return PDF;
582         else if (isEPS(filename))
583                 return EPS;
584
585         return UNKNOWN;
586 }
587
588 string decideOutputImageFormat(string const & suffix, enum FileType type)
589 {
590         // lyxrc.pdf_mode means:
591         // Are we creating a PDF or a PS file?
592         // (Should actually mean, are we using latex or pdflatex).
593         
594         if (lyxrc.pdf_mode) {
595                 if (type == EPS || type == EPS || type == PDF)
596                         return "pdf";
597                 else if (type == JPEG)
598                         return suffix;
599                 else
600                         return "png";
601         }
602
603         // If it's postscript, we always do eps.
604         // There are many suffixes that are actually EPS (ask Garst for example)
605         // so we detect if it's an EPS by looking in the file, if it is, we return
606         // the same suffix of the file so it won't be converted.
607         if (type == EPS)
608                 return suffix;
609         
610         return "eps";
611 }
612
613 } // Anon. namespace
614
615 string const 
616 InsetGraphics::prepareFile(Buffer const *buf) const
617 {
618
619         // do_convert = Do we need to convert the file?
620         // nice = Do we create a nice version?
621         //        This is used when exporting the latex file only.
622         // 
623         // 
624         // if (!do_convert)
625         //   return original filename
626         // 
627         // if (!nice)
628         //   convert_place = temp directory
629         //   return new filename in temp directory
630         // else
631         //   convert_place = original file directory
632         //   return original filename without the extension
633         //
634         
635         // Get the extension (format) of the original file.
636         string const extension = GetExtension(params.filename);
637         FileType type = classifyFileType(params.filename, extension);
638         
639         // Are we creating a PDF or a PS file?
640         // (Should actually mean, are we usind latex or pdflatex).
641         string const image_target = decideOutputImageFormat(extension, type);
642
643         if (extension == image_target)
644                 return params.filename;
645
646         string outfile;
647         if (!buf->niceFile) {
648                 string const temp = AddName(buf->tmppath, params.filename);
649                 outfile = RemoveExtension(temp);
650                 
651                 //lyxerr << "buf::tmppath = " << buf->tmppath << "\n";
652                 //lyxerr << "filename = " << params.filename << "\n";
653                 //lyxerr << "temp = " << temp << "\n";
654                 //lyxerr << "outfile = " << outfile << endl;
655         } else {
656                 string const path = OnlyPath(buf->fileName());
657                 string const relname = MakeRelPath(params.filename, path);
658                 outfile = RemoveExtension(relname);
659         }
660
661         converters.convert(buf, params.filename, outfile, extension, image_target);
662         
663         return outfile;
664 }
665
666
667 int InsetGraphics::latex(Buffer const *buf, ostream & os,
668                          bool /*fragile*/, bool/*fs*/) const
669 {
670         // MISSING: We have to decide how to do the order of the options
671         // that is dependent of order, like width, height, angle. Should
672         // we rotate before scale? Should we let the user decide?
673         // bool rot_before_scale; ?
674
675         // (BE) As a first step we should do a scale before rotate since this is
676         // more like the natural thought of how to do it.
677         // (BE) I believe that a priority list presented to the user with
678         // a default order would be the best, though it would be better to
679         // hide such a thing in an "Advanced options" dialog.
680         // (BE) This should go an advanced LaTeX options dialog.
681
682         // If there is no file specified, just output a message about it in
683         // the latex output.
684         if (params.filename.empty()) {
685                 os  << "\\fbox{\\rule[-0.5in]{0pt}{1in}"
686                         << _("empty figure path")
687                         << "}\n";
688
689                 return 1; // One end of line marker added to the stream.
690         }
691
692         // Keep count of newlines that we issued.
693         int newlines = 0;
694
695         // This variables collect all the latex code that should be before and
696         // after the actual includegraphics command.
697         string before;
698         string after;
699
700         // Do we want subcaptions?
701         if (params.subcaption) {
702                 before += "\\subfigure[" + params.subcaptionText + "]{";
703                 after = '}' + after;
704         }
705
706         // We never use the starred form, we use the "clip" option instead.
707         os << before << "\\includegraphics";
708
709         // Write the options if there are any.
710         string const opts = createLatexOptions();
711         if (!opts.empty()) {
712                 os << '[' << opts << ']';
713         }
714
715         // Make the filename relative to the lyx file
716         // and remove the extension so the LaTeX will use whatever is
717         // appropriate (when there are several versions in different formats)
718         string const filename = prepareFile(buf);
719         
720         os << '{' << filename << '}' << after;
721
722         // Return how many newlines we issued.
723         return newlines;
724 }
725
726
727 int InsetGraphics::ascii(Buffer const *, ostream &, int) const
728 {
729         // No graphics in ascii output. Possible to use gifscii to convert
730         // images to ascii approximation.
731         
732         // 1. Convert file to ascii using gifscii
733         // 2. Read ascii output file and add it to the output stream.
734         
735         return 0;
736 }
737
738
739 int InsetGraphics::linuxdoc(Buffer const *, ostream &) const
740 {
741         // No graphics in LinuxDoc output. Should check how/what to add.
742         return 0;
743 }
744
745
746 // For explanation on inserting graphics into DocBook checkout:
747 // http://linuxdoc.org/LDP/LDP-Author-Guide/inserting-pictures.html
748 // See also the docbook guide at http://www.docbook.org/
749 int InsetGraphics::docbook(Buffer const * buf, ostream & os) const
750 {
751         // Change the path to be relative to the main file.
752         string const buffer_dir = OnlyPath(buf->fileName());
753         string const filename = RemoveExtension(
754                                    MakeRelPath(params.filename, buffer_dir));
755
756         // In DocBook v5.0, the graphic tag will be eliminated from DocBook, will 
757         // need to switch to MediaObject. However, for now this is sufficient and 
758         // easier to use.
759         os << "<graphic fileref=\"" << filename << "\"></graphic>";
760         return 0;
761 }
762
763
764 void InsetGraphics::validate(LaTeXFeatures & features) const
765 {
766         // If we have no image, we should not require anything.
767         if (params.filename.empty())
768                 return ;
769
770         features.graphicx = true;
771
772         if (params.subcaption)
773                 features.subfigure = true;
774 }
775
776
777 // Update the inset after parameters changed (read from file or changed in
778 // dialog.
779 void InsetGraphics::updateInset() const
780 {
781         GraphicsCache & gc = GraphicsCache::getInstance();
782         boost::shared_ptr<GraphicsCacheItem> temp(0);
783
784         // We do it this way so that in the face of some error, we will still
785         // be in a valid state.
786         if (!params.filename.empty()) {
787                 temp = gc.addFile(params.filename);
788         }
789
790         // Mark the image as unloaded so that it gets updated.
791         imageLoaded = false;
792
793         cacheHandle = temp;
794 }
795
796
797 bool InsetGraphics::setParams(InsetGraphicsParams const & p)
798 {
799         // If nothing is changed, just return and say so.
800         if (params == p)
801                 return false;
802
803         // Copy the new parameters.
804         params = p;
805
806         // Update the inset with the new parameters.
807         updateInset();
808
809         // We have changed data, report it.
810         return true;
811 }
812
813
814 InsetGraphicsParams InsetGraphics::getParams() const
815 {
816         return params;
817 }
818
819
820 Inset * InsetGraphics::clone(Buffer const &, bool same_id) const
821 {
822         return new InsetGraphics(*this, same_id);
823 }