X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgraphics%2FGraphicsLoader.h;h=c4ed587f66ca57ac7494835e81723050d441a462;hb=06254d11dfdf670fab3548dc2a2674e7a261262c;hp=b3086b8cffa4b19c5d5d8be3884b31c7dbcd9356;hpb=2e57f2ff0ae7cd4a6efbf634ffe6d2f4379d9cfc;p=lyx.git diff --git a/src/graphics/GraphicsLoader.h b/src/graphics/GraphicsLoader.h index b3086b8cff..c4ed587f66 100644 --- a/src/graphics/GraphicsLoader.h +++ b/src/graphics/GraphicsLoader.h @@ -1,14 +1,14 @@ // -*- C++ -*- /** - * \file GraphicsLoader.h + * \file GraphicsLoader.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Angus Leeming + * \author Angus Leeming * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. * - * The public face of the graphics cache. + * The public face of the graphics cache. * * * The user supplies an image file and the display parameters. * * He can change the file or the display parameters through a reset() method. @@ -18,21 +18,20 @@ * * When (status() == Ready), he can use image() to access the loaded image * and pass it to the Painter. * - * What could be simpler? + * What could be simpler? */ #ifndef GRAPHICSLOADER_H #define GRAPHICSLOADER_H #include "GraphicsTypes.h" -#include "LString.h" -#include -#include - -class InsetOld; +#include namespace lyx { + +namespace support { class FileName; } + namespace graphics { class Image; @@ -43,29 +42,27 @@ public: /// Must use the reset methods to make this instance usable. Loader(); /// The image is not transformed, just displayed as-is. - Loader(string const & file_with_path, DisplayType = ColorDisplay); + Loader(support::FileName const & file_with_path, DisplayType = ColorDisplay); /// The image is transformed before display. - Loader(string const & file_with_path, Params const &); + Loader(support::FileName const & file_with_path, Params const &); /// Loader(Loader const &); - - /// Define an empty d-tor out-of-line to keep boost::scoped_ptr happy. + /// Needed for the pimpl ~Loader(); Loader & operator=(Loader const &); /// The file can be changed, or the display params, or both. - void reset(string const & file_with_path, + void reset(support::FileName const & file_with_path, DisplayType = ColorDisplay) const; /// - void reset(string const & file_with_path, Params const &) const; + void reset(support::FileName const & file_with_path, Params const &) const; /// void reset(Params const &) const; /// Returns the absolute path of the loaded (loading?) file. - string const & filename() const; + support::FileName const & filename() const; /// - bool empty() const { return filename().empty(); } /** starting loading of the image is done by a urgency-based * decision. Here we only call LoaderQueue::touch to request it. @@ -79,7 +76,7 @@ public: void startMonitoring() const; /// bool monitoring() const; - /** Returns the check sum of filename() so that, for example, you can + /** Returns the check checksum of filename() so that, for example, you can * ascertain whether to output a new PostScript version of the file * for a LaTeX run. */ @@ -91,7 +88,8 @@ public: /** Connect and you'll be informed when the loading status of the image * changes. */ - typedef boost::signal0::slot_type slot_type; + typedef boost::signal sig_type; + typedef sig_type::slot_type slot_type; /// boost::signals::connection connect(slot_type const &) const; @@ -104,7 +102,7 @@ private: /// Use the Pimpl idiom to hide the internals. class Impl; /// The pointer never changes although *pimpl_'s contents may. - boost::scoped_ptr const pimpl_; + Impl * const pimpl_; }; } // namespace graphics