]> git.lyx.org Git - lyx.git/blob - src/insets/InsetVSpace.h
Fix bug #6315: counters in insets that don't produce output have ghost values.
[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         docstring contextMenu(BufferView const & bv, int x, int y) const;
36         ///
37         static void string2params(std::string const &, VSpace &);
38         ///
39         static std::string params2string(VSpace const &);
40         ///
41         bool clickable(int, int) const { return true; }
42 private:
43         ///
44         void metrics(MetricsInfo & mi, Dimension & dim) const;
45         ///
46         void draw(PainterInfo & pi, int x, int y) const;
47         ///
48         int latex(odocstream &, OutputParams const &) const;
49         ///
50         int plaintext(odocstream &, OutputParams const &) const;
51         ///
52         int docbook(odocstream &, OutputParams const &) const;
53         /// Note that this returns the inset rather than writing it,
54         /// so it will actually be written after the present paragraph.
55         /// The normal case is that this inset will be on a line by
56         /// itself, and in that case the present paragraph will not,
57         /// in fact, appear at all.
58         docstring xhtml(XHTMLStream &, OutputParams const &) const;
59         ///
60         void read(Lexer & lex);
61         ///
62         void write(std::ostream & os) const;
63         ///
64         DisplayType display() const { return AlignCenter; }
65         ///
66         void doDispatch(Cursor & cur, FuncRequest & cmd);
67         ///
68         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
69         ///
70         Inset * clone() const { return new InsetVSpace(*this); }
71         ///
72         docstring const label() const;
73
74         ///
75         VSpace space_;
76 };
77
78
79 } // namespace lyx
80
81 #endif