]> git.lyx.org Git - lyx.git/blob - src/insets/InsetSpecialChar.h
Fix some bugs in the bibinfo caching mechanism. Comments to follow.
[lyx.git] / src / insets / InsetSpecialChar.h
1 // -*- C++ -*-
2 /**
3  * \file InsetSpecialChar.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Asger Alstrup Nielsen
8  * \author Jean-Marc Lasgouttes
9  * \author Lars Gullik Bjønnes
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef INSET_SPECIALCHAR_H
15 #define INSET_SPECIALCHAR_H
16
17
18 #include "Inset.h"
19
20
21 namespace lyx {
22
23 class LaTeXFeatures;
24
25 ///  Used to insert special chars
26 class InsetSpecialChar : public Inset {
27 public:
28
29         /// The different kinds of special chars we support
30         enum Kind {
31                 /// Optional hyphenation point (\-)
32                 HYPHENATION,
33                 /// Ligature break point (\textcompwordmark)
34                 LIGATURE_BREAK,
35                 /// ... (\ldots)
36                 LDOTS,
37                 /// End of sentence punctuation (\@)
38                 END_OF_SENTENCE,
39                 /// Menu separator
40                 MENU_SEPARATOR,
41                 /// breakable slash
42                 SLASH,
43                 /// protected dash
44                 NOBREAKDASH,
45         };
46
47         ///
48         InsetSpecialChar() : Inset(0) {}
49         ///
50         explicit InsetSpecialChar(Kind k);
51         ///
52         Kind kind() const;
53         ///
54         void metrics(MetricsInfo &, Dimension &) const;
55         ///
56         void draw(PainterInfo & pi, int x, int y) const;
57         ///
58         void write(std::ostream &) const;
59         /// Will not be used when lyxf3
60         void read(Lexer & lex);
61         ///
62         int latex(odocstream &, OutputParams const &) const;
63         ///
64         int plaintext(odocstream &, OutputParams const &) const;
65         ///
66         int docbook(odocstream &, OutputParams const &) const;
67         ///
68         docstring xhtml(XHTMLStream &, OutputParams const &) const;
69         /// the string that is passed to the TOC
70         void tocString(odocstream &) const;
71         ///
72         InsetCode lyxCode() const { return SPECIALCHAR_CODE; }
73         /// We don't need \begin_inset and \end_inset
74         bool directWrite() const { return true; }
75         ///
76         void validate(LaTeXFeatures &) const;
77
78         // should this inset be handled like a normal charater
79         bool isChar() const;
80         /// is this equivalent to a letter?
81         bool isLetter() const;
82         // should we break lines after this inset?
83         bool isLineSeparator() const;
84 private:
85         Inset * clone() const { return new InsetSpecialChar(*this); };
86
87         /// And which kind is this?
88         Kind kind_;
89 };
90
91
92 } // namespace lyx
93
94 #endif