]> git.lyx.org Git - lyx.git/blob - src/insets/InsetLayout.h
simplification
[lyx.git] / src / insets / InsetLayout.h
1 // -*- C++ -*-
2 /**
3  * \file InsetLayout.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * Full author contact details are available in file CREDITS.
8  */
9
10 #ifndef INSET_LAYOUT_H
11 #define INSET_LAYOUT_H
12
13 #include "ColorCode.h"
14 #include "FontInfo.h"
15
16 #include "support/docstring.h"
17
18 namespace lyx {
19
20 ///
21 class InsetLayout {
22 public:
23         std::string name;
24         std::string lyxtype;
25         docstring labelstring;
26         std::string decoration;
27         std::string latextype;
28         std::string latexname;
29         std::string latexparam;
30         FontInfo font;
31         FontInfo labelfont;
32         ColorCode bgcolor;
33         std::string preamble;
34         bool multipar;
35         bool passthru;
36         bool needprotect;
37         bool freespacing;
38         bool keepempty;
39         bool forceltr;
40 };
41
42 } // namespace lyx
43
44 #endif