]> git.lyx.org Git - lyx.git/blob - src/insets/InsetFlex.h
96b3a71b2e41c411022a253a1d18c5da152230de
[lyx.git] / src / insets / InsetFlex.h
1 // -*- C++ -*-
2 /**
3  * \file InsetFlex.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  * \author Martin Vermeer
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef INSETFLEX_H
14 #define INSETFLEX_H
15
16 #include "InsetCollapsable.h"
17
18 namespace lyx {
19
20 /** The Flex inset, e.g., CharStyle, Custom inset or XML short element
21
22 */
23 class InsetFlex : public InsetCollapsable {
24 public:
25         ///
26         InsetFlex(Buffer const &, std::string const & layoutName);
27         ///
28         docstring name() const { return from_utf8(name_); }
29
30         ///
31         docstring editMessage() const;
32         ///
33         InsetCode lyxCode() const { return FLEX_CODE; }
34         ///
35         void write(std::ostream &) const;
36         ///
37         void read(Lexer & lex);
38
39         ///
40         int plaintext(odocstream &, OutputParams const &) const;
41         ///
42         int docbook(odocstream &, OutputParams const &) const;
43         /// the string that is passed to the TOC
44         void textString(odocstream &) const;
45
46         /// should paragraph indendation be ommitted in any case?
47         bool neverIndent() const { return true; }
48
49 protected:
50         InsetFlex(InsetFlex const &);
51
52 private:
53         Inset * clone() const { return new InsetFlex(*this); }
54         // FIXME The following two routines should be moved to InsetCollapsable.
55         // That will allow the redeclarations of these routines to be removed
56         // from its subclasses, such as InsetERT. But it will also require us
57         // to rework stdinsets.inc, to make sure we get the right behavior from
58         // the subclasses.
59         /// should paragraphs be forced to use the empty layout?
60         virtual bool forcePlainLayout(idx_type = 0) const 
61                 { return getLayout().forcePlainLayout(); }
62         /// should the user be allowed to customize alignment, etc.?
63         virtual bool allowParagraphCustomization(idx_type = 0) const 
64                 { return getLayout().allowParagraphCustomization(); }
65
66         ///
67         std::string name_;
68 };
69
70
71 } // namespace lyx
72
73 #endif