]> git.lyx.org Git - lyx.git/blob - src/insets/InsetVSpace.h
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / insets / InsetVSpace.h
1 // -*- C++ -*-
2 /**
3  * \file InsetVSpace.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef INSET_VSPACE_H
13 #define INSET_VSPACE_H
14
15 #include "Inset.h"
16 #include "VSpace.h"
17
18
19 namespace lyx {
20
21 class InsetVSpace : public Inset
22 {
23 public:
24         ///
25         InsetVSpace() : Inset(0) {}
26         ///
27         InsetVSpace(VSpace const &);
28         /// How much?
29         VSpace const & space() const { return space_; }
30         ///
31         InsetCode lyxCode() const { return VSPACE_CODE; }
32         ///
33         bool hasSettings() const { return true; }
34         ///
35         std::string contextMenuName() const;
36         ///
37         static void string2params(std::string const &, VSpace &);
38         ///
39         static std::string params2string(VSpace const &);
40 private:
41         ///
42         void metrics(MetricsInfo & mi, Dimension & dim) const;
43         ///
44         void draw(PainterInfo & pi, int x, int y) const;
45         ///
46         void latex(otexstream &, OutputParams const &) const;
47         ///
48         int plaintext(odocstream &, OutputParams const &) const;
49         ///
50         int docbook(odocstream &, OutputParams const &) const;
51         /// Note that this returns the inset rather than writing it,
52         /// so it will actually be written after the present paragraph.
53         /// The normal case is that this inset will be on a line by
54         /// itself, and in that case the present paragraph will not,
55         /// in fact, appear at all.
56         docstring xhtml(XHTMLStream &, OutputParams const &) const;
57         ///
58         void read(Lexer & lex);
59         ///
60         void write(std::ostream & os) const;
61         ///
62         DisplayType display() const { return AlignCenter; }
63         ///
64         void doDispatch(Cursor & cur, FuncRequest & cmd);
65         ///
66         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
67         ///
68         Inset * clone() const { return new InsetVSpace(*this); }
69         ///
70         docstring const label() const;
71
72         ///
73         VSpace space_;
74 };
75
76
77 } // namespace lyx
78
79 #endif