]> git.lyx.org Git - lyx.git/blob - src/insets/InsetQuotes.h
Fix bug #12795
[lyx.git] / src / insets / InsetQuotes.h
1 // -*- C++ -*-
2 /**
3  * \file InsetQuotes.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jean-Marc Lasgouttes
8  *  \author Jürgen Spitzmüller
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef INSET_QUOTES_H
14 #define INSET_QUOTES_H
15
16 #include "Inset.h"
17
18 #include <map>
19
20
21 namespace lyx {
22
23 ///
24 enum class QuoteStyle : int {
25         ///
26         English,
27         ///
28         Swedish,
29         ///
30         German,
31         ///
32         Polish,
33         ///
34         Swiss,
35         ///
36         Danish,
37         ///
38         Plain,
39         ///
40         British,
41         ///
42         SwedishG,
43         ///
44         French,
45         ///
46         FrenchIN,
47         ///
48         Russian,
49         ///
50         CJK,
51         ///
52         CJKAngle,
53         ///
54         Hungarian,
55         ///
56         Dynamic
57 };
58
59 ///
60 enum class QuoteSide : int {
61         ///
62         Opening,
63         ///
64         Closing
65 };
66
67 ///
68 enum class QuoteLevel : int {
69         ///
70         Secondary,
71         ///
72         Primary
73 };
74
75
76 /** Quotes.
77   Used for the various quotes. German, English, French, all either
78   double or single **/
79 class InsetQuotesParams {
80 public:
81         /// Returns the unicode character of a given quote
82         char_type getQuoteChar(QuoteStyle const &, QuoteLevel const &,
83                                QuoteSide const &, bool const rtl = false) const;
84         /// Returns a map of quotation marks
85         std::map<std::string, docstring> getTypes() const;
86         ///
87         docstring getLaTeXQuote(char_type c, std::string const &,
88                                 bool const rtl = false) const;
89         ///
90         docstring getXMLQuote(char_type c) const;
91         /// Returns a descriptive label of a style suitable for dialog and menu
92         docstring const getGuiLabel(QuoteStyle const & qs,
93                                     bool langdef = false) const;
94         /// Returns a descriptive label of a given char
95         docstring const getShortGuiLabel(docstring const & str) const;
96         ///
97         int stylescount() const;
98         /// Returns the matching style shortcut char
99         char getStyleChar(QuoteStyle const & style) const;
100         /// Returns the quote style from the shortcut string
101         QuoteStyle getQuoteStyle(std::string const & s,
102                 bool const allow_wildcards = false,
103                 QuoteStyle fallback = QuoteStyle::English) const;
104         /// Returns the quote sind from the shortcut string
105         QuoteSide getQuoteSide(std::string const & s,
106                 bool const allow_wildcards = false,
107                 QuoteSide fallback = QuoteSide::Opening) const;
108         /// Returns the quote level from the shortcut string
109         QuoteLevel getQuoteLevel(std::string const & s,
110                 bool const allow_wildcards = false,
111                 QuoteLevel fallback = QuoteLevel::Primary) const;
112 };
113
114 ///
115 extern InsetQuotesParams quoteparams;
116
117 /** Quotes.
118   Used for the various quotes. German, English, French, all either
119   double or single **/
120 class InsetQuotes : public Inset
121 {
122 public:
123         /** The constructor works like this:
124           \begin{itemize}
125             \item fls <- french single quote left
126             \item grd <- german double quote right
127             \item etc.
128           \end{itemize}
129           */
130         explicit InsetQuotes(Buffer * buf, std::string const & str = "eld");
131         /// Direct access to inner/outer quotation marks
132         InsetQuotes(Buffer * buf, char_type c, QuoteLevel level,
133                     std::string const & side = std::string(),
134                     std::string const & style = std::string());
135         ///
136         docstring layoutName() const override;
137         ///
138         void metrics(MetricsInfo &, Dimension &) const override;
139         ///
140         void draw(PainterInfo & pi, int x, int y) const override;
141         ///
142         void write(std::ostream &) const override;
143         ///
144         void read(Lexer & lex) override;
145         ///
146         bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const override;
147         ///
148         void latex(otexstream &, OutputParams const &) const override;
149         ///
150         int plaintext(odocstringstream & ods, OutputParams const & op,
151                       size_t max_length = INT_MAX) const override;
152         ///
153         void docbook(XMLStream &, OutputParams const &) const override;
154         ///
155         docstring xhtml(XMLStream &, OutputParams const &) const override;
156
157         ///
158         bool hasToString() const override { return true; }
159         ///
160         void toString(odocstream &) const override;
161         ///
162         void forOutliner(docstring &, size_t const maxlen, bool const) const override;
163
164         /// Update the contextual information of this inset
165         void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false) override;
166
167         ///
168         void validate(LaTeXFeatures &) const override;
169         ///
170         std::string contextMenuName() const override;
171         ///
172         InsetCode lyxCode() const override { return QUOTE_CODE; }
173         /// should this inset be handled like a normal character
174         bool isChar() const override { return true; }
175
176         /// Returns the current quote type
177         std::string getType() const;
178         ///
179         std::pair<int, int> isWords() const override;
180
181 private:
182         ///
183         Inset * clone() const override { return new InsetQuotes(*this); }
184
185         /// Decide whether we need left or right quotation marks
186         void setSide(char_type c);
187         ///
188         void parseString(std::string const &,
189                          bool const allow_wildcards = false);
190         ///
191         docstring displayString() const;
192         ///
193         docstring getQuoteXMLEntity() const;
194         ///
195         QuoteStyle getStyle(std::string const &);
196
197         ///
198         QuoteStyle style_ = QuoteStyle::English;
199         ///
200         QuoteSide side_ = QuoteSide::Opening;
201         ///
202         QuoteLevel level_ = QuoteLevel::Primary;
203         ///
204         QuoteStyle global_style_ = QuoteStyle::English;
205         /// Code of the contextual language
206         std::string context_lang_;
207         /// Is this in a pass-thru context?
208         bool pass_thru_ = false;
209         /// Do we use fontspec?
210         bool fontspec_ = false;
211         /// Do we have an internal font encoding?
212         bool internal_fontenc_ = false;
213         /// Are we writing RTL?
214         bool rtl_ = false;
215         ///
216         friend class InsetQuotesParams;
217
218 protected:
219         /// \name Protected functions inherited from Inset class
220         //@{
221         ///
222         void doDispatch(Cursor & cur, FuncRequest & cmd) override;
223         //@}
224 };
225
226 } // namespace lyx
227
228 #endif