]> git.lyx.org Git - lyx.git/blob - src/graphics/PreviewedInset.h
namespace grfx -> lyx::graphics
[lyx.git] / src / graphics / PreviewedInset.h
1 // -*- C++ -*-
2 /**
3  *  \file PreviewedInset.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  *  grfx::PreviewedInset is an abstract base class that can help insets to
12  *  generate previews. The daughter class must instantiate three small
13  *  methods. The Inset would own an instance of this daughter class.
14  */
15
16 #ifndef PREVIEWEDINSET_H
17 #define PREVIEWEDINSET_H
18
19 #include "LString.h"
20 #include <boost/signals/trackable.hpp>
21 #include <boost/signals/connection.hpp>
22
23 class Inset;
24 class BufferView;
25
26 namespace lyx {
27 namespace graphics {
28
29 class PreviewImage;
30 class PreviewLoader;
31
32 class PreviewedInset : public boost::signals::trackable {
33 public:
34         /// a wrapper for Previews::activated()
35         static bool activated();
36
37         ///
38         PreviewedInset(Inset & inset) : inset_(inset), pimage_(0) {}
39         ///
40         virtual ~PreviewedInset() {}
41
42         /** Find the PreviewLoader, add a LaTeX snippet to it and
43          *  start the loading process.
44          */
45         void generatePreview();
46
47         /** Add a LaTeX snippet to the PreviewLoader but do not start the
48          *  loading process.
49          */
50         void addPreview(PreviewLoader & ploader);
51
52         /** Remove a snippet from the cache of previews.
53          *  Useful if previewing the contents of a file that has changed.
54          */
55         void removePreview();
56
57         /// The preview has been generated and is ready to use.
58         bool previewReady() const;
59
60         /// If !previewReady() returns 0.
61         PreviewImage const * pimage() const { return pimage_; }
62
63 protected:
64         /// Allow the daughter classes to cast up to the parent inset.
65         Inset * inset() const { return &inset_; }
66         ///
67         BufferView * view() const;
68
69 private:
70         /** This method is connected to the grfx::PreviewLoader::imageReady
71          *  signal.
72          */
73         void imageReady(PreviewImage const &) const;
74
75         /// Does the owning inset want a preview?
76         virtual bool previewWanted() const = 0;
77         /// a wrapper to Inset::latex
78         virtual string const latexString() const = 0;
79
80         ///
81         Inset & inset_;
82         ///
83         string snippet_;
84
85         /// We don't own this. Cached for efficiency reasons.
86         mutable PreviewImage const * pimage_;
87         ///
88         boost::signals::connection connection_;
89 };
90
91 } // namespace graphics
92 } // namespace lyx
93
94 #endif // PREVIEWEDINSET_H