]> git.lyx.org Git - lyx.git/blob - src/insets/InsetFlex.h
mainly cosmetics
[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 #include "TextClass.h"
18
19
20 namespace lyx {
21
22
23 class InsetFlexParams {
24 public:
25         ///
26         void write(std::ostream & os) const;
27         ///
28         void read(Lexer & lex);
29         ///
30         std::string name;
31 };
32
33
34 /** The Flex inset, e.g., CharStyle, Custom inset or XML short element
35
36 */
37 class InsetFlex : public InsetCollapsable {
38 public:
39         ///
40         InsetFlex(BufferParams const &, InsetLayout);
41         ///
42         docstring name() const { return from_ascii("Flex"); }
43         ///
44         InsetLayout const & getLayout(BufferParams const &) const { return layout_; } 
45         /// Is this character style defined in the document's textclass?
46         /// May be wrong after textclass change or paste from another document
47         bool undefined() const;
48         /// (Re-)set the character style parameters from \p il
49         void setLayout(InsetLayout il);
50         ///
51         virtual docstring const editMessage() const;
52         ///
53         InsetCode lyxCode() const { return FLEX_CODE; }
54         ///
55         void write(Buffer const &, std::ostream &) const;
56         ///
57         void read(Buffer const & buf, Lexer & lex);
58         ///
59         void metrics(MetricsInfo &, Dimension &) const;
60         ///
61         void draw(PainterInfo &, int, int) const;
62         ///
63         void getDrawFont(Font &) const;
64         ///
65         bool forceDefaultParagraphs(idx_type) const { return true; }
66
67         ///
68         int plaintext(Buffer const &, odocstream &,
69                       OutputParams const &) const;
70         ///
71         int docbook(Buffer const &, odocstream &,
72                     OutputParams const &) const;
73         /// the string that is passed to the TOC
74         virtual void textString(Buffer const &, odocstream &) const;
75
76         ///
77         InsetFlexParams const & params() const { return params_; }
78
79         /// should paragraph indendation be ommitted in any case?
80         bool neverIndent(Buffer const &) const { return true; }
81
82 protected:
83         InsetFlex(InsetFlex const &);
84         virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
85         ///
86         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
87
88 private:
89         friend class InsetFlexParams;
90
91         virtual Inset * clone() const;
92
93         ///
94         InsetFlexParams params_;
95 };
96
97
98 } // namespace lyx
99
100 #endif