]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiDelimiter.cpp
Fix bug #9990: Oversized & Incorrect Glyphs in Math Delimiter Dialog
[lyx.git] / src / frontends / qt4 / GuiDelimiter.cpp
1 /**
2  * \file GuiDelimiter.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "GuiDelimiter.h"
14
15 #include "GuiApplication.h"
16 #include "GuiFontLoader.h"
17 #include "GuiView.h"
18 #include "qt_helpers.h"
19
20 #include "FontEnums.h"
21 #include "FontInfo.h"
22 #include "FuncRequest.h"
23
24 #include "support/gettext.h"
25 #include "support/docstring.h"
26
27 #include <QPixmap>
28 #include <QCheckBox>
29 #include <QListWidgetItem>
30
31 #include <map>
32 #include <string>
33
34 using namespace std;
35
36 namespace lyx {
37 namespace frontend {
38
39 namespace {
40
41 static char const *  latex_delimiters[] = {
42         "(", ")", "{", "}", "[", "]",
43         "lceil", "rceil", "lfloor", "rfloor", "langle", "rangle",
44         "llbracket", "rrbracket",
45         "uparrow", "updownarrow", "Uparrow", "Updownarrow", "downarrow", "Downarrow",
46         "|", "Vert", "/", "backslash", ""
47 };
48
49
50 static int const nr_latex_delimiters =
51         sizeof(latex_delimiters) / sizeof(char const *);
52
53 static QString const bigleft[]  = {"", "bigl", "Bigl", "biggl", "Biggl"};
54
55 static QString const bigright[] = {"", "bigr", "Bigr", "biggr", "Biggr"};
56
57 static char const * const biggui[] = {
58         N_("big[[delimiter size]]"),
59         N_("Big[[delimiter size]]"),
60         N_("bigg[[delimiter size]]"),
61         N_("Bigg[[delimiter size]]"),
62         ""
63 };
64
65
66 // FIXME: It might be better to fix the big delim LFUN to not require
67 // additional '\' prefix.
68 static QString fix_name(QString const & str, bool big)
69 {
70         if (str.isEmpty())
71                 return ".";
72         if (!big || str == "(" || str == ")" || str == "[" || str == "]"
73             || str == "|" || str == "/")
74                 return str;
75
76         return "\\" + str;
77 }
78
79 struct MathSymbol {
80         MathSymbol(char_type uc = '?', unsigned char fc = 0,
81                 FontFamily ff = SYMBOL_FAMILY)
82                 : unicode(uc), fontcode(fc), fontfamily(ff)
83         {}
84         char_type unicode;
85         unsigned char fontcode;
86         FontFamily fontfamily;
87 };
88
89 /// TeX-name / Math-symbol map.
90 static map<std::string, MathSymbol> math_symbols_;
91 /// Math-symbol / TeX-name map.
92 /// This one is for fast search, it contains the same data as
93 /// \c math_symbols_.
94 static map<char_type, string> tex_names_;
95
96 void initMathSymbols()
97 {
98         // FIXME: Ideally, those unicode codepoints would be defined
99         // in "lib/symbols". Unfortunately, some of those are already
100         // defined with non-unicode ids for use within mathed.
101         // FIXME 2: We should fill-in this map with the parsed "symbols"
102         // file done in MathFactory.cpp.
103         math_symbols_["("] = MathSymbol('(', 40, CMR_FAMILY);
104         math_symbols_[")"] = MathSymbol(')', 41, CMR_FAMILY);
105         math_symbols_["{"] = MathSymbol('{', 102, CMSY_FAMILY);
106         math_symbols_["}"] = MathSymbol('}', 103, CMSY_FAMILY);
107         math_symbols_["["] = MathSymbol('[', 91, CMR_FAMILY);
108         math_symbols_["]"] = MathSymbol(']', 93, CMR_FAMILY);
109         math_symbols_["|"] = MathSymbol('|', 106, CMSY_FAMILY);
110         math_symbols_["/"] = MathSymbol('/', 47, CMR_FAMILY);
111         math_symbols_["backslash"] = MathSymbol('\\', 110, CMSY_FAMILY);
112         math_symbols_["lceil"] = MathSymbol(0x2308, 100, CMSY_FAMILY);
113         math_symbols_["rceil"] = MathSymbol(0x2309, 101, CMSY_FAMILY);
114         math_symbols_["lfloor"] = MathSymbol(0x230A, 98, CMSY_FAMILY);
115         math_symbols_["rfloor"] = MathSymbol(0x230B, 99, CMSY_FAMILY);
116         math_symbols_["langle"] = MathSymbol(0x2329, 104, CMSY_FAMILY);
117         math_symbols_["rangle"] = MathSymbol(0x232A, 105, CMSY_FAMILY);
118         math_symbols_["llbracket"] = MathSymbol(0x27e6, 74, STMARY_FAMILY);
119         math_symbols_["rrbracket"] = MathSymbol(0x27e7, 75, STMARY_FAMILY);
120         math_symbols_["uparrow"] = MathSymbol(0x2191, 34, CMSY_FAMILY);
121         math_symbols_["Uparrow"] = MathSymbol(0x21D1, 42, CMSY_FAMILY);
122         math_symbols_["updownarrow"] = MathSymbol(0x2195, 108, CMSY_FAMILY);
123         math_symbols_["Updownarrow"] = MathSymbol(0x21D5, 109, CMSY_FAMILY);
124         math_symbols_["downarrow"] = MathSymbol(0x2193, 35, CMSY_FAMILY);
125         math_symbols_["Downarrow"] = MathSymbol(0x21D3, 43, CMSY_FAMILY);
126         math_symbols_["downdownarrows"] = MathSymbol(0x21CA, 184, MSA_FAMILY);
127         math_symbols_["downharpoonleft"] = MathSymbol(0x21C3, 188, MSA_FAMILY);
128         math_symbols_["downharpoonright"] = MathSymbol(0x21C2, 186, MSA_FAMILY);
129         math_symbols_["vert"] = MathSymbol(0x007C, 106, CMSY_FAMILY);
130         math_symbols_["Vert"] = MathSymbol(0x2016, 107, CMSY_FAMILY);
131
132         map<string, MathSymbol>::const_iterator it = math_symbols_.begin();
133         map<string, MathSymbol>::const_iterator end = math_symbols_.end();
134         for (; it != end; ++it)
135                 tex_names_[it->second.unicode] = it->first;
136 }
137
138 /// \return the math unicode symbol associated to a TeX name.
139 MathSymbol const & mathSymbol(string tex_name)
140 {
141         map<string, MathSymbol>::const_iterator it =
142                 math_symbols_.find(tex_name);
143
144         static MathSymbol const unknown_symbol;
145         if (it == math_symbols_.end())
146                 return unknown_symbol;
147
148         return it->second;
149 }
150
151 /// \return the TeX name associated to a math unicode symbol.
152 string const & texName(char_type math_symbol)
153 {
154         map<char_type, string>::const_iterator it =
155                 tex_names_.find(math_symbol);
156
157         static string const empty_string;
158         if (it == tex_names_.end())
159                 return empty_string;
160
161         return it->second;
162 }
163
164 } // anon namespace
165
166
167 GuiDelimiter::GuiDelimiter(GuiView & lv)
168         : GuiDialog(lv, "mathdelimiter", qt_("Math Delimiter"))
169 {
170         setupUi(this);
171
172         connect(closePB, SIGNAL(clicked()), this, SLOT(accept()));
173
174         setFocusProxy(leftLW);
175
176         leftLW->setViewMode(QListView::IconMode);
177         rightLW->setViewMode(QListView::IconMode);
178
179         leftLW->setDragDropMode(QAbstractItemView::NoDragDrop);
180         rightLW->setDragDropMode(QAbstractItemView::NoDragDrop);
181
182         initMathSymbols();
183
184         typedef map<char_type, QListWidgetItem *> ListItems;
185         ListItems list_items;
186         // The last element is the empty one.
187         int const end = nr_latex_delimiters - 1;
188         for (int i = 0; i < end; ++i) {
189                 string const delim = latex_delimiters[i];
190                 MathSymbol const & ms = mathSymbol(delim);
191                 QString symbol(ms.fontcode?
192                         QChar(ms.fontcode) : toqstr(docstring(1, ms.unicode)));
193                 QListWidgetItem * lwi = new QListWidgetItem(symbol);
194                 FontInfo lyxfont;
195                 lyxfont.setFamily(ms.fontfamily);
196                 QFont font = frontend::getFont(lyxfont);
197                 lwi->setFont(font);
198                 lwi->setToolTip(toqstr(delim));
199                 list_items[ms.unicode] = lwi;
200                 leftLW->addItem(lwi);
201         }
202
203         for (int i = 0; i != leftLW->count(); ++i) {
204                 MathSymbol const & ms = mathSymbol(
205                         fromqstr(leftLW->item(i)->toolTip()));
206                 rightLW->addItem(list_items[doMatch(ms.unicode)]->clone());
207         }
208
209         // The last element is the empty one.
210         QListWidgetItem * lwi = new QListWidgetItem(qt_("(None)"));
211         QListWidgetItem * rwi = new QListWidgetItem(qt_("(None)"));
212         leftLW->addItem(lwi);
213         rightLW->addItem(rwi);
214
215         sizeCO->addItem(qt_("Variable"));
216
217         for (int i = 0; *biggui[i]; ++i)
218                 sizeCO->addItem(qt_(biggui[i]));
219
220         on_leftLW_currentRowChanged(0);
221         bc().setPolicy(ButtonPolicy::IgnorantPolicy);
222 }
223
224
225 char_type GuiDelimiter::doMatch(char_type const symbol)
226 {
227         string const & str = texName(symbol);
228         string match;
229         if (str == "(") match = ")";
230         else if (str == ")") match = "(";
231         else if (str == "[") match = "]";
232         else if (str == "]") match = "[";
233         else if (str == "{") match = "}";
234         else if (str == "}") match = "{";
235         else if (str == "l") match = "r";
236         else if (str == "rceil") match = "lceil";
237         else if (str == "lceil") match = "rceil";
238         else if (str == "rfloor") match = "lfloor";
239         else if (str == "lfloor") match = "rfloor";
240         else if (str == "rangle") match = "langle";
241         else if (str == "langle") match = "rangle";
242         else if (str == "llbracket") match = "rrbracket";
243         else if (str == "rrbracket") match = "llbracket";
244         else if (str == "backslash") match = "/";
245         else if (str == "/") match = "backslash";
246         else return symbol;
247
248         return mathSymbol(match).unicode;
249 }
250
251
252 void GuiDelimiter::updateTeXCode(int size)
253 {
254         bool const bigsize = size != 0;
255
256         QString left_str = fix_name(leftLW->currentItem()->toolTip(), bigsize);
257         QString right_str = fix_name(rightLW->currentItem()->toolTip(), bigsize);
258
259         if (!bigsize)
260                 tex_code_ = left_str + ' ' + right_str;
261         else {
262                 tex_code_ = bigleft[size] + ' '
263                         + left_str + ' '
264                         + bigright[size] + ' '
265                         + right_str;
266         }
267
268         // Generate TeX-code for GUI display.
269         // FIXME: Instead of reconstructing the TeX code it would be nice to
270         // FIXME: retrieve the LateX code directly from mathed.
271         // In all cases, we want the '\' prefix if needed, so we pass 'true'
272         // to fix_name.
273         left_str = fix_name(leftLW->currentItem()->toolTip(), true);
274         right_str = fix_name(rightLW->currentItem()->toolTip(), true);
275         QString code_str;
276         if (!bigsize)
277                 code_str = "\\left" + left_str + " \\right" + right_str;
278         else {
279                 // There should be nothing in the TeX-code when the delimiter is "None".
280                 if (left_str != ".")
281                         code_str = "\\" + bigleft[size] + left_str + ' ';
282                 if (right_str != ".")
283                         code_str += "\\" + bigright[size] + right_str;
284         }
285
286         texCodeL->setText(qt_("TeX Code: ") + code_str);
287 }
288
289
290 void GuiDelimiter::on_insertPB_clicked()
291 {
292         if (sizeCO->currentIndex() == 0)
293                 dispatch(FuncRequest(LFUN_MATH_DELIM, fromqstr(tex_code_)));
294         else {
295                 QString command = '"' + tex_code_ + '"';
296                 command.replace(' ', "\" \"");
297                 dispatch(FuncRequest(LFUN_MATH_BIGDELIM, fromqstr(command)));
298         }
299  }
300
301
302 void GuiDelimiter::on_sizeCO_activated(int index)
303 {
304         updateTeXCode(index);
305 }
306
307
308 void GuiDelimiter::on_leftLW_itemActivated(QListWidgetItem *)
309 {
310         // do not auto-apply if !matchCB->isChecked()
311         if (!matchCB->isChecked())
312                 return;
313         on_insertPB_clicked();
314         accept();
315 }
316
317
318 void GuiDelimiter::on_rightLW_itemActivated(QListWidgetItem *)
319 {
320         // do not auto-apply if !matchCB->isChecked()
321         if (!matchCB->isChecked())
322                 return;
323         on_insertPB_clicked();
324         accept();
325 }
326
327
328 void GuiDelimiter::on_leftLW_currentRowChanged(int item)
329 {
330         if (matchCB->isChecked())
331                 rightLW->setCurrentRow(item);
332
333         updateTeXCode(sizeCO->currentIndex());
334 }
335
336
337 void GuiDelimiter::on_rightLW_currentRowChanged(int item)
338 {
339         if (matchCB->isChecked())
340                 leftLW->setCurrentRow(item);
341
342         updateTeXCode(sizeCO->currentIndex());
343 }
344
345
346 void GuiDelimiter::on_matchCB_stateChanged(int state)
347 {
348         if (state == Qt::Checked)
349                 on_leftLW_currentRowChanged(leftLW->currentRow());
350
351         updateTeXCode(sizeCO->currentIndex());
352 }
353
354
355 Dialog * createGuiDelimiter(GuiView & lv) { return new GuiDelimiter(lv); }
356
357
358 } // namespace frontend
359 } // namespace lyx
360
361 #include "moc_GuiDelimiter.cpp"