]> git.lyx.org Git - lyx.git/blob - src/insets/insetert.h
fix bug 2316
[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
17 #include "insetcollapsable.h"
18
19 /** A collapsable text inset for LaTeX insertions.
20
21   To write full ert (including styles and other insets) in a given
22   space.
23
24   Note that collapsed_ encompasses both the inline and collapsed button
25   versions of this inset.
26 */
27
28 class Language;
29
30 class InsetERT : public InsetCollapsable {
31 public:
32         ///
33         InsetERT(BufferParams const &, CollapseStatus status = Open);
34 #if 0
35         ///
36         InsetERT(BufferParams const &,
37                  Language const *, std::string const & contents, CollapseStatus status);
38 #endif
39         ///
40         ~InsetERT();
41         ///
42         InsetBase::Code lyxCode() const { return InsetBase::ERT_CODE; }
43         ///
44         void write(Buffer const & buf, std::ostream & os) const;
45         ///
46         void read(Buffer const & buf, LyXLex & lex);
47         ///
48         std::string const editMessage() const;
49         ///
50         bool insetAllowed(InsetBase::Code code) const;
51         ///
52         int latex(Buffer const &, std::ostream &,
53                   OutputParams const &) const;
54         ///
55         int plaintext(Buffer const &, std::ostream &,
56                   OutputParams const & runparams) const;
57         ///
58         int linuxdoc(Buffer const &, std::ostream &,
59                      OutputParams const &) const;
60         ///
61         int docbook(Buffer const &, std::ostream &,
62                     OutputParams const & runparams) 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         void getDrawFont(LyXFont &) const;
73         ///
74         bool forceDefaultParagraphs(idx_type) const { return true; }
75         /// should paragraph indendation be ommitted in any case?
76         bool neverIndent() const { return true; }
77 protected:
78         InsetERT(InsetERT const &);
79         ///
80         virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
81         ///
82         bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
83 private:
84         virtual std::auto_ptr<InsetBase> doClone() const;
85         ///
86         void init();
87         ///
88         void setButtonLabel();
89         ///
90         bool allowSpellCheck() const { return false; }
91 };
92
93
94 #include "mailinset.h"
95
96 class InsetERTMailer : public MailInset {
97 public:
98         ///
99         InsetERTMailer(InsetERT & inset);
100         ///
101         virtual InsetBase & inset() const { return inset_; }
102         ///
103         virtual std::string const & name() const { return name_; }
104         ///
105         virtual std::string const inset2string(Buffer const &) const;
106         ///
107         static void string2params(std::string const &,
108                 InsetCollapsable::CollapseStatus &);
109         ///
110         static std::string const params2string(InsetCollapsable::CollapseStatus);
111 private:
112         ///
113         static std::string const name_;
114         ///
115         InsetERT & inset_;
116 };
117
118 #endif