]> git.lyx.org Git - lyx.git/blob - src/graphics/GraphicsCacheItem.h
3f8f7e100f75188fcbc44515dc66415c73669279
[lyx.git] / src / graphics / GraphicsCacheItem.h
1 // -*- C++ -*-
2 /**
3  * \file GraphicsCacheItem.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Baruch Even
8  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS.
11  *
12  * The graphics cache is a container of graphics::CacheItems.
13  * Each graphics::CacheItem, defined here represents a separate image file.
14  *
15  * The routines here can be used to load the graphics file into memory at
16  * which point (status() == graphics::Loaded).
17  * The user is then free to access image() in order to copy it and to then
18  * transform the copy (rotate, scale, clip) and to generate the pixmap.
19  *
20  * The graphics cache supports fully asynchronous:
21  * file conversion to a loadable format;
22  * file loading.
23  *
24  * Whether you get that, of course, depends on graphics::Converter and
25  * on the graphics::Image-derived image class.
26  */
27
28 #ifndef GRAPHICSCACHEITEM_H
29 #define GRAPHICSCACHEITEM_H
30
31 #include "GraphicsTypes.h"
32
33 #include <boost/signal.hpp>
34
35
36 namespace lyx {
37
38 namespace support { class FileName; }
39
40 namespace graphics {
41
42 class Image;
43 class Converter;
44
45 /// A graphics::Cache item holder.
46 class CacheItem {
47 public:
48         ///
49         CacheItem(support::FileName const & file);
50         /// Needed for the pimpl
51         ~CacheItem();
52
53         ///
54         support::FileName const & filename() const;
55
56         /// It's in the cache. Now start the loading process.
57         void startLoading() const;
58
59         /** Monitor any changes to the file.
60          *  There is no point monitoring the file before startLoading() is
61          *  invoked.
62          */
63         void startMonitoring() const;
64         ///
65         bool monitoring() const;
66         /** Returns the check checksum of filename() so that, for example, you can
67          *  ascertain whether to output a new PostScript version of the file
68          *  for a LaTeX run.
69          */
70         unsigned long checksum() const;
71
72         /** Get the image associated with filename().
73          *  If the image is not yet loaded, returns 0.
74          *  This routine returns a pointer to const; if you want to modify it,
75          *  create a copy and modify that.
76          */
77         Image const * image() const;
78
79         /// How far have we got in loading the image?
80         ImageStatus status() const;
81
82         /** Connect and you'll be informed when the loading status of the image
83          *  changes.
84          */
85         typedef boost::signal<void()> sig_type;
86         typedef sig_type::slot_type slot_type;
87         ///
88         boost::signals::connection connect(slot_type const &) const;
89
90 private:
91         /// noncopyable
92         CacheItem(CacheItem const &);
93         void operator=(CacheItem const &);
94
95         /// Use the Pimpl idiom to hide the internals.
96         class Impl;
97         /// The pointer never changes although *pimpl_'s contents may.
98         Impl * const pimpl_;
99 };
100
101 } // namespace graphics
102 } // namespace lyx
103
104 #endif // GRAPHICSCACHEITEM_H