]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsCacheItem.cpp
Change the "empty layout" to the "plain layout", to try to avoid confusion.
[lyx.git] / src / graphics / GraphicsCacheItem.cpp
index 3359682ce875e5b79c8cbc16eb391251289a46d7..ff83f6f7d23ccb96b3a4fd9dc19c3ce789cf035d 100644 (file)
@@ -63,7 +63,7 @@ public:
        /** Load the image into memory. This is called either from
         *  convertToDisplayFormat() direct or from imageConverted().
         */
-       void loadImage();
+       bool loadImage();
 
        /** Get a notification when the image conversion is done.
         *  Connected to a signal on_finish_ which is passed to
@@ -145,7 +145,10 @@ bool CacheItem::tryDisplayFormat() const
                pimpl_->reset();
        FileName filename;
        string from;
-       return pimpl_->tryDisplayFormat(filename, from);
+       bool const success = pimpl_->tryDisplayFormat(filename, from);
+       if (!success)
+               pimpl_->reset();
+       return success;
 }
 
 
@@ -278,15 +281,14 @@ void CacheItem::Impl::imageConverted(bool success)
        // Add the converted file to the file cache
        ConverterCache::get().add(filename_, to_, file_to_load_);
 
-       loadImage();
+       setStatus(loadImage() ? Loaded : ErrorLoading);
 }
 
 
 // This function gets called from the callback after the image has been
 // converted successfully.
-void CacheItem::Impl::loadImage()
+bool CacheItem::Impl::loadImage()
 {
-       setStatus(Loading);
        LYXERR(Debug::GRAPHICS, "Loading image.");
 
        image_.reset(Image::newImage());
@@ -302,13 +304,7 @@ void CacheItem::Impl::loadImage()
        if (remove_loaded_file_ && unzipped_filename_ != file_to_load_)
                file_to_load_.removeFile();
 
-       if (!success) {
-               setStatus(ErrorLoading);
-               return;
-       }
-
-       // Inform the outside world.
-       setStatus(Loaded);
+       return success;
 }
 
 
@@ -351,12 +347,10 @@ static string const findTargetFormat(string const & from)
 
 bool CacheItem::Impl::tryDisplayFormat(FileName & filename, string & from)
 {
-       setStatus(Converting);
-
        // First, check that the file exists!
        if (!filename_.isReadableFile()) {
                if (status_ != ErrorNoFile) {
-                       setStatus(ErrorNoFile);
+                       status_ = ErrorNoFile;
                        LYXERR(Debug::GRAPHICS, "\tThe file is not readable");
                }
                return true;
@@ -367,7 +361,7 @@ bool CacheItem::Impl::tryDisplayFormat(FileName & filename, string & from)
                unzipped_filename_ = FileName::tempName(
                        filename_.toFilesystemEncoding());
                if (unzipped_filename_.empty()) {
-                       setStatus(ErrorConverting);
+                       status_ = ErrorConverting;
                        LYXERR(Debug::GRAPHICS, "\tCould not create temporary file.");
                        return true;
                }
@@ -383,7 +377,7 @@ bool CacheItem::Impl::tryDisplayFormat(FileName & filename, string & from)
 
        from = formats.getFormatFromFile(filename);
        if (from.empty()) {
-               setStatus(ErrorConverting);
+               status_ = ErrorConverting;
                LYXERR(Debug::GRAPHICS, "\tCould not determine file format.");
        }
        LYXERR(Debug::GRAPHICS, "\n\tThe file contains " << from << " format data.");
@@ -393,14 +387,14 @@ bool CacheItem::Impl::tryDisplayFormat(FileName & filename, string & from)
                // No conversion needed!
                LYXERR(Debug::GRAPHICS, "\tNo conversion needed (from == to)!");
                file_to_load_ = filename;
-               loadImage();
+               status_ = loadImage() ? Loaded : ErrorLoading;
                return true;
        }
 
        if (ConverterCache::get().inCache(filename, to_)) {
                LYXERR(Debug::GRAPHICS, "\tNo conversion needed (file in file cache)!");
                file_to_load_ = ConverterCache::get().cacheName(filename, to_);
-               loadImage();
+               status_ = loadImage() ? Loaded : ErrorLoading;
                return true;
        }
        return false;
@@ -414,18 +408,20 @@ void CacheItem::Impl::convertToDisplayFormat()
        // Make a local copy in case we unzip it
        FileName filename;
        string from;
-       if (tryDisplayFormat(filename, from))
+       if (tryDisplayFormat(filename, from)) {
+               // The image status has changed, tell it to the outside world.
+               statusChanged();
                return;
+       }
+
+       // We will need a conversion, tell it to the outside world.
+       setStatus(Converting);
 
        // Add some stuff to create a uniquely named temporary file.
        // This file is deleted in loadImage after it is loaded into memory.
        FileName const to_file_base = FileName::tempName("CacheItem");
        remove_loaded_file_ = true;
 
-       // Remove the temp file, we only want the name...
-       // FIXME: This is unsafe!
-       to_file_base.removeFile();
-
        // Connect a signal to this->imageConverted and pass this signal to
        // the graphics converter so that we can load the modified file
        // on completion of the conversion process.