]> git.lyx.org Git - lyx.git/blob - src/insets/InsetQuotes.h
Revert "Fixup 0cbe0d7a: avoid double redraw when completion is finished"
[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         void toString(odocstream &) const override;
159         ///
160         void forOutliner(docstring &, size_t const maxlen, bool const) const override;
161
162         /// Update the contextual information of this inset
163         void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false) override;
164
165         ///
166         void validate(LaTeXFeatures &) const override;
167         ///
168         std::string contextMenuName() const override;
169         ///
170         InsetCode lyxCode() const override { return QUOTE_CODE; }
171         /// should this inset be handled like a normal character
172         bool isChar() const override { return true; }
173
174         /// Returns the current quote type
175         std::string getType() const;
176
177 private:
178         ///
179         Inset * clone() const override { return new InsetQuotes(*this); }
180
181         /// Decide whether we need left or right quotation marks
182         void setSide(char_type c);
183         ///
184         void parseString(std::string const &,
185                          bool const allow_wildcards = false);
186         ///
187         docstring displayString() const;
188         ///
189         docstring getQuoteXMLEntity() const;
190         ///
191         QuoteStyle getStyle(std::string const &);
192
193         ///
194         QuoteStyle style_ = QuoteStyle::English;
195         ///
196         QuoteSide side_ = QuoteSide::Opening;
197         ///
198         QuoteLevel level_ = QuoteLevel::Primary;
199         ///
200         QuoteStyle global_style_ = QuoteStyle::English;
201         /// Code of the contextual language
202         std::string context_lang_;
203         /// Is this in a pass-thru context?
204         bool pass_thru_ = false;
205         /// Do we use fontspec?
206         bool fontspec_ = false;
207         /// Do we have an internal font encoding?
208         bool internal_fontenc_ = false;
209         /// Are we writing RTL?
210         bool rtl_ = false;
211         ///
212         friend class InsetQuotesParams;
213
214 protected:
215         /// \name Protected functions inherited from Inset class
216         //@{
217         ///
218         void doDispatch(Cursor & cur, FuncRequest & cmd) override;
219         //@}
220 };
221
222 } // namespace lyx
223
224 #endif