]> git.lyx.org Git - lyx.git/blob - src/insets/InsetPreview.h
Generalize the protection of brackets in citation arguments
[lyx.git] / src / insets / InsetPreview.h
1 // -*- C++ -*-
2 /**
3  * \file InsetPreview.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Vincent van Ravesteijn
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef INSETPREVIEW_H
13 #define INSETPREVIEW_H
14
15 #include "InsetText.h"
16
17 #include "Dimension.h"
18
19 #include "support/unique_ptr.h"
20
21
22 namespace lyx {
23
24 class RenderPreview;
25
26 namespace graphics {
27         class PreviewLoader;
28 }
29
30 /// An inset with an instant preview
31 class InsetPreview : public InsetText {
32
33 public:
34         ///
35         InsetPreview(Buffer *);
36         ///
37         ~InsetPreview();
38         ///
39         InsetPreview(InsetPreview const & other);
40         ///
41         InsetPreview & operator=(InsetPreview const & other);
42
43         /// \name Methods inherited from Inset class
44         //@{
45         Inset * clone() const { return new InsetPreview(*this); }
46
47         bool neverIndent() const { return true; }
48
49         InsetCode lyxCode() const { return PREVIEW_CODE; }
50
51         docstring layoutName() const { return from_ascii("Preview"); }
52
53         bool descendable(BufferView const & /*bv*/) const { return true; }
54
55         std::string contextMenuName() const
56                 { return "context-preview"; }
57
58         void metrics(MetricsInfo & mi, Dimension & dim) const;
59
60         Inset * editXY(Cursor & cur, int x, int y);
61
62         void draw(PainterInfo & pi, int x, int y) const;
63
64         void addPreview(DocIterator const & inset_pos,
65                 graphics::PreviewLoader & ploader) const;
66
67         bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
68
69         void write(std::ostream & os) const;
70
71         void edit(Cursor & cur, bool front, EntryDirection entry_from);
72
73         bool canPaintChange(BufferView const &) const { return true; };
74         //@}
75
76 protected:
77         /// Retrieves the preview state. Returns true if preview
78         /// is enabled and the preview image is availabled.
79         bool previewState(BufferView * bv) const;
80         /// Recreates the preview if preview is enabled.
81         void reloadPreview(DocIterator const & pos) const;
82         /// Prepare the preview if preview is enabled.
83         void preparePreview(DocIterator const & pos) const;
84
85         ///
86         unique_ptr<RenderPreview> preview_;
87
88 };
89
90
91 } // namespace lyx
92
93
94 #endif
95