]> git.lyx.org Git - features.git/blob - src/graphics/PreviewedInset.h
Replace LString.h with support/std_string.h,
[features.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  * lyx::graphics::PreviewedInset is an abstract base class that can help
12  * insets to 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 "support/std_string.h"
20 #include <boost/signals/trackable.hpp>
21 #include <boost/signals/connection.hpp>
22
23 class InsetOld;
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(InsetOld & 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         InsetOld * inset() const { return &inset_; }
66         ///
67         BufferView * view() const;
68
69 private:
70         /// This method is connected to the PreviewLoader::imageReady signal.
71         void imageReady(PreviewImage const &) const;
72
73         /// Does the owning inset want a preview?
74         virtual bool previewWanted() const = 0;
75         /// a wrapper to Inset::latex
76         virtual string const latexString() const = 0;
77
78         ///
79         InsetOld & inset_;
80         ///
81         string snippet_;
82
83         /// We don't own this. Cached for efficiency reasons.
84         mutable PreviewImage const * pimage_;
85         ///
86         boost::signals::connection connection_;
87 };
88
89 } // namespace graphics
90 } // namespace lyx
91
92 #endif // PREVIEWEDINSET_H