]> git.lyx.org Git - lyx.git/blob - src/graphics/Previews.h
Quote graphics conversion commands correctly.
[lyx.git] / src / graphics / Previews.h
1 // -*- C++ -*-
2 /**
3  * \file Previews.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  *
11  * lyx::graphics::Previews is a singleton class that stores the
12  * lyx::graphics::PreviewLoader for each buffer requiring one.
13  */
14
15 #ifndef PREVIEWS_H
16 #define PREVIEWS_H
17
18 #include <boost/utility.hpp>
19 #include <boost/scoped_ptr.hpp>
20
21 class Buffer;
22 class LyXRC_PreviewStatus;
23
24 namespace lyx {
25 namespace graphics {
26
27 class PreviewLoader;
28
29 class Previews : boost::noncopyable {
30 public:
31         /// a wrapper for lyxrc.preview
32         static LyXRC_PreviewStatus status();
33
34         /// This is a singleton class. Get the instance.
35         static Previews & get();
36
37         /** Returns the PreviewLoader for this buffer.
38          *  Used by individual insets to update their own preview.
39          */
40         PreviewLoader & loader(Buffer const & buffer) const;
41
42         /// Called from the Buffer d-tor.
43         void removeLoader(Buffer const & buffer) const;
44
45         /** For a particular buffer, initiate the generation of previews
46          *  for each and every snippet of LaTeX that's of interest with
47          *  a single forked process.
48          */
49         void generateBufferPreviews(Buffer const & buffer) const;
50
51 private:
52         /** Make the c-tor, d-tor private so we can control how many objects
53          *  are instantiated.
54          */
55         Previews();
56         ~Previews();
57
58         /// Use the Pimpl idiom to hide the internals.
59         class Impl;
60         /// The pointer never changes although *pimpl_'s contents may.
61         boost::scoped_ptr<Impl> const pimpl_;
62 };
63
64 } // namespace graphics
65 } // namespace lyx
66
67 #endif // PREVIEWS_H