]> git.lyx.org Git - lyx.git/blob - src/insets/InsetNewpage.h
simplification
[lyx.git] / src / insets / InsetNewpage.h
1 // -*- C++ -*-
2 /**
3  * \file InsetNewpage.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_NEWPAGE_H
13 #define INSET_NEWPAGE_H
14
15
16 #include "Inset.h"
17 #include "gettext.h"
18
19
20 namespace lyx {
21
22 class InsetNewpage : public Inset {
23 public:
24         InsetNewpage() {}
25
26         InsetCode lyxCode() const { return NEWPAGE_CODE; }
27
28         void 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 &, Lexer & lex);
42
43         virtual 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         DisplayType display() const { return AlignCenter; }
48
49         virtual docstring insetLabel() const { return _("New Page"); }
50
51         virtual std::string getCmdName() const { return "\\newpage"; }
52
53 private:
54         virtual Inset * clone() const
55         {
56                 return new InsetNewpage;
57         }
58 };
59
60
61 class InsetPagebreak : public InsetNewpage {
62 public:
63         InsetPagebreak() {}
64
65         docstring insetLabel() const { return _("Page Break"); }
66
67         std::string getCmdName() const { return "\\pagebreak"; }
68
69 private:
70         virtual Inset * clone() const
71         {
72                 return new InsetPagebreak;
73         }
74 };
75
76
77 class InsetClearPage : public InsetNewpage {
78 public:
79         InsetClearPage() {}
80
81         docstring insetLabel() const { return _("Clear Page"); }
82
83         std::string getCmdName() const { return "\\clearpage"; }
84
85 private:
86         virtual Inset * clone() const
87         {
88                 return new InsetClearPage;
89         }
90 };
91
92
93 class InsetClearDoublePage : public InsetNewpage {
94 public:
95         InsetClearDoublePage() {}
96
97         docstring insetLabel() const { return _("Clear Double Page"); }
98
99         std::string getCmdName() const { return "\\cleardoublepage"; }
100
101 private:
102         virtual Inset * clone() const
103         {
104                 return new InsetClearDoublePage;
105         }
106 };
107
108 } // namespace lyx
109
110 #endif // INSET_NEWPAGE_H