]> git.lyx.org Git - lyx.git/blob - src/insets/InsetERT.h
33eb5bb27cf5d900988ecd52b544cfeccb4cad73
[lyx.git] / src / insets / InsetERT.h
1 // -*- C++ -*-
2 /**
3  * \file InsetERT.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Vigna
8  * \author Lars Gullik Bjønnes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef INSETERT_H
14 #define INSETERT_H
15
16 #include "InsetCollapsable.h"
17 #include "MailInset.h"
18
19
20 namespace lyx {
21
22 /** A collapsable text inset for LaTeX insertions.
23
24   To write full ert (including styles and other insets) in a given
25   space.
26
27   Note that collapsed_ encompasses both the inline and collapsed button
28   versions of this inset.
29 */
30
31 class Language;
32
33 class InsetERT : public InsetCollapsable {
34 public:
35         ///
36         InsetERT(BufferParams const &, CollapseStatus status = Open);
37 #if 0
38         ///
39         InsetERT(BufferParams const &,
40                  Language const *, std::string const & contents, CollapseStatus status);
41 #endif
42         ///
43         ~InsetERT();
44         ///
45         InsetCode lyxCode() const { return ERT_CODE; }
46         ///
47         docstring name() const { return from_ascii("ERT"); }
48         ///
49         void write(Buffer const & buf, std::ostream & os) const;
50         ///
51         virtual docstring const editMessage() const;
52         ///
53         bool insetAllowed(InsetCode code) const;
54         ///
55         int latex(Buffer const &, odocstream &,
56                   OutputParams const &) const;
57         ///
58         int plaintext(Buffer const &, odocstream &,
59                       OutputParams const &) const;
60         ///
61         int docbook(Buffer const &, odocstream &,
62                     OutputParams const &) const;
63         ///
64         void validate(LaTeXFeatures &) const {}
65         ///
66         void metrics(MetricsInfo &, Dimension &) const;
67         ///
68         void draw(PainterInfo & pi, int x, int y) const;
69         ///
70         bool showInsetDialog(BufferView *) const;
71         ///
72         bool forceDefaultParagraphs(idx_type) const { return true; }
73         /// should paragraph indendation be ommitted in any case?
74         bool neverIndent(Buffer const &) const { return true; }
75 protected:
76         InsetERT(InsetERT const &);
77         ///
78         virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
79         ///
80         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
81         ///
82         void resetParagraphsFont();
83         ///
84         void getDrawFont(FontInfo &) const;
85
86 private:
87         virtual Inset * clone() const;
88         ///
89         void init();
90         ///
91         void setButtonLabel();
92         ///
93         bool allowSpellCheck() const { return false; }
94 };
95
96
97 class InsetERTMailer : public MailInset {
98 public:
99         ///
100         InsetERTMailer(InsetERT & inset);
101         ///
102         virtual Inset & inset() const { return inset_; }
103         ///
104         virtual std::string const & name() const { return name_; }
105         ///
106         virtual std::string const inset2string(Buffer const &) const;
107         ///
108         static void string2params(std::string const &,
109                 InsetCollapsable::CollapseStatus &);
110         ///
111         static std::string const params2string(InsetCollapsable::CollapseStatus);
112 private:
113         ///
114         static std::string const name_;
115         ///
116         InsetERT & inset_;
117 };
118
119
120 } // namespace lyx
121
122 #endif