]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsLoader.h
Revert part of c053a9394d1075ecad02ccce2f34c95f08c1f00f
[lyx.git] / src / graphics / GraphicsLoader.h
index c4ed587f66ca57ac7494835e81723050d441a462..57328107085b7f86f9927fb93d0f84d83c372e16 100644 (file)
@@ -42,7 +42,7 @@ public:
        /// Must use the reset methods to make this instance usable.
        Loader();
        /// The image is not transformed, just displayed as-is.
-       Loader(support::FileName const & file_with_path, DisplayType = ColorDisplay);
+       Loader(support::FileName const & file_with_path, bool display = true);
        /// The image is transformed before display.
        Loader(support::FileName const & file_with_path, Params const &);
        ///
@@ -53,8 +53,7 @@ public:
        Loader & operator=(Loader const &);
 
        /// The file can be changed, or the display params, or both.
-       void reset(support::FileName const & file_with_path,
-                  DisplayType = ColorDisplay) const;
+       void reset(support::FileName const & file_with_path, bool display = true) const;
        ///
        void reset(support::FileName const & file_with_path, Params const &) const;
        ///
@@ -69,6 +68,10 @@ public:
         */
        void startLoading() const;
 
+       /** Tries to reload the image. 
+        */
+       void reload() const;
+
        /** Monitor any changes to the file.
         *  There is no point monitoring the file before startLoading() is
         *  invoked.
@@ -98,6 +101,9 @@ public:
         */
        Image const * image() const;
 
+       double displayPixelRatio() const;
+       void setDisplayPixelRatio(double scale);
+
 private:
        /// Use the Pimpl idiom to hide the internals.
        class Impl;