]> git.lyx.org Git - lyx.git/blob - src/insets/InsetTheorem.h
s/cellstruct/CellData/g
[lyx.git] / src / insets / InsetTheorem.h
1 // -*- C++ -*-
2 /**
3  * \file Inset.heorem.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #if 0
13
14 #ifndef INSETTHEOREM_H
15 #define INSETTHEOREM_H
16
17 #include "InsetCollapsable.h"
18
19
20 namespace lyx {
21
22 /** The theorem inset
23
24 */
25 class Inset.heorem : public InsetCollapsable {
26 public:
27         ///
28         Inset.heorem();
29         ///
30         void write(std::ostream & os) const;
31         ///
32         InsetCode lyxCode() const { return THEOREM_CODE; }
33         ///
34         void metrics(MetricsInfo &, Dimension &) const;
35         ///
36         void draw(PainterInfo & pi, int x, int y) const;
37         ///
38         bool isMacroScope() const { return true; }
39         ///
40         int latex(odocstream &, OutputParams const &) const;
41         ///
42         docstring editMessage() const;
43 private:
44         Inset * clone() const;
45
46         ///
47         mutable unsigned int center_indent_;
48 };
49
50
51 } // namespace lyx
52
53 #endif
54
55 #endif