]> git.lyx.org Git - lyx.git/blob - src/insets/InsetFlex.h
bdf59f0feded129b2a07cd0ac5a08747d0c1a797
[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         ///
38         int plaintext(odocstream &, OutputParams const &) const;
39         ///
40         int docbook(odocstream &, OutputParams const &) const;
41         /// the string that is passed to the TOC
42         void tocString(odocstream &) const;
43
44         /// should paragraph indendation be ommitted in any case?
45         bool neverIndent() const { return true; }
46
47 protected:
48         InsetFlex(InsetFlex const &);
49
50 private:
51         Inset * clone() const { return new InsetFlex(*this); }
52         ///
53         std::string name_;
54 };
55
56
57 } // namespace lyx
58
59 #endif