]> git.lyx.org Git - lyx.git/blob - src/insets/insetline.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetline.h
1 // -*- C++ -*-
2 /**
3  * \file insetline.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_LINE_H
13 #define INSET_LINE_H
14
15
16 #include "inset.h"
17
18
19 namespace lyx {
20
21 class InsetLine : public InsetOld {
22 public:
23
24         InsetLine() {}
25
26         InsetBase::Code lyxCode() const { return InsetBase::LINE_CODE; }
27
28         bool metrics(MetricsInfo &, Dimension &) const;
29
30         void draw(PainterInfo & pi, int x, int y) const;
31
32         int latex(Buffer const &, odocstream &,
33                           OutputParams const &) const;
34
35         int plaintext(Buffer const &, odocstream &,
36                   OutputParams const &) const;
37
38         int docbook(Buffer const &, odocstream &,
39                     OutputParams const &) const;
40
41         void read(Buffer const &, LyXLex & lex);
42
43         void write(Buffer const & buf, std::ostream & os) const;
44         /// We don't need \begin_inset and \end_inset
45         bool directWrite() const { return true; }
46
47         bool display() const { return true; }
48         ///
49         void validate(LaTeXFeatures & features) const;
50 private:
51         virtual std::auto_ptr<InsetBase> doClone() const
52         {
53                 return std::auto_ptr<InsetBase>(new InsetLine);
54         }
55 };
56
57
58 } // namespace lyx
59
60 #endif // INSET_NEWLINE_H