]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiDelimiter.cpp
On Linux show in crash message box the backtrace
[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('(');
104         math_symbols_[")"] = MathSymbol(')');
105         math_symbols_["{"] = MathSymbol('{');
106         math_symbols_["}"] = MathSymbol('}');
107         math_symbols_["["] = MathSymbol('[');
108         math_symbols_["]"] = MathSymbol(']');
109         math_symbols_["|"] = MathSymbol('|');
110         math_symbols_["/"] = MathSymbol('/', 54, CMSY_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                 lwi->setToolTip(toqstr(delim));
195                 FontInfo lyxfont;
196                 lyxfont.setFamily(ms.fontfamily);
197                 lwi->setFont(frontend::getFont(lyxfont));
198                 list_items[ms.unicode] = lwi;
199                 leftLW->addItem(lwi);
200         }
201
202         for (int i = 0; i != leftLW->count(); ++i) {
203                 MathSymbol const & ms = mathSymbol(
204                         fromqstr(leftLW->item(i)->toolTip()));
205                 rightLW->addItem(list_items[doMatch(ms.unicode)]->clone());
206         }
207
208         // The last element is the empty one.
209         leftLW->addItem(qt_("(None)"));
210         rightLW->addItem(qt_("(None)"));
211
212         sizeCO->addItem(qt_("Variable"));
213
214         for (int i = 0; *biggui[i]; ++i)
215                 sizeCO->addItem(qt_(biggui[i]));
216
217         on_leftLW_currentRowChanged(0);
218         bc().setPolicy(ButtonPolicy::IgnorantPolicy);
219 }
220
221
222 char_type GuiDelimiter::doMatch(char_type const symbol)
223 {
224         string const & str = texName(symbol);
225         string match;
226         if (str == "(") match = ")";
227         else if (str == ")") match = "(";
228         else if (str == "[") match = "]";
229         else if (str == "]") match = "[";
230         else if (str == "{") match = "}";
231         else if (str == "}") match = "{";
232         else if (str == "l") match = "r";
233         else if (str == "rceil") match = "lceil";
234         else if (str == "lceil") match = "rceil";
235         else if (str == "rfloor") match = "lfloor";
236         else if (str == "lfloor") match = "rfloor";
237         else if (str == "rangle") match = "langle";
238         else if (str == "langle") match = "rangle";
239         else if (str == "llbracket") match = "rrbracket";
240         else if (str == "rrbracket") match = "llbracket";
241         else if (str == "backslash") match = "/";
242         else if (str == "/") match = "backslash";
243         else return symbol;
244
245         return mathSymbol(match).unicode;
246 }
247
248
249 void GuiDelimiter::updateTeXCode(int size)
250 {
251         bool const bigsize = size != 0;
252
253         QString left_str = fix_name(leftLW->currentItem()->toolTip(), bigsize);
254         QString right_str = fix_name(rightLW->currentItem()->toolTip(), bigsize);
255
256         if (!bigsize)
257                 tex_code_ = left_str + ' ' + right_str;
258         else {
259                 tex_code_ = bigleft[size] + ' '
260                         + left_str + ' '
261                         + bigright[size] + ' '
262                         + right_str;
263         }
264
265         // Generate TeX-code for GUI display.
266         // FIXME: Instead of reconstructing the TeX code it would be nice to
267         // FIXME: retrieve the LateX code directly from mathed.
268         // In all cases, we want the '\' prefix if needed, so we pass 'true'
269         // to fix_name.
270         left_str = fix_name(leftLW->currentItem()->toolTip(), true);
271         right_str = fix_name(rightLW->currentItem()->toolTip(), true);
272         QString code_str;
273         if (!bigsize)
274                 code_str = "\\left" + left_str + " \\right" + right_str;
275         else {
276                 // There should be nothing in the TeX-code when the delimiter is "None".
277                 if (left_str != ".")
278                         code_str = "\\" + bigleft[size] + left_str + ' ';
279                 if (right_str != ".")
280                         code_str += "\\" + bigright[size] + right_str;
281         }
282
283         texCodeL->setText(qt_("TeX Code: ") + code_str);
284 }
285
286
287 void GuiDelimiter::on_insertPB_clicked()
288 {
289         if (sizeCO->currentIndex() == 0)
290                 dispatch(FuncRequest(LFUN_MATH_DELIM, fromqstr(tex_code_)));
291         else {
292                 QString command = '"' + tex_code_ + '"';
293                 command.replace(' ', "\" \"");
294                 dispatch(FuncRequest(LFUN_MATH_BIGDELIM, fromqstr(command)));
295         }
296  }
297
298
299 void GuiDelimiter::on_sizeCO_activated(int index)
300 {
301         updateTeXCode(index);
302 }
303
304
305 void GuiDelimiter::on_leftLW_itemActivated(QListWidgetItem *)
306 {
307         // do not auto-apply if !matchCB->isChecked()
308         if (!matchCB->isChecked())
309                 return;
310         on_insertPB_clicked();
311         accept();
312 }
313
314
315 void GuiDelimiter::on_rightLW_itemActivated(QListWidgetItem *)
316 {
317         // do not auto-apply if !matchCB->isChecked()
318         if (!matchCB->isChecked())
319                 return;
320         on_insertPB_clicked();
321         accept();
322 }
323
324
325 void GuiDelimiter::on_leftLW_currentRowChanged(int item)
326 {
327         if (matchCB->isChecked())
328                 rightLW->setCurrentRow(item);
329
330         updateTeXCode(sizeCO->currentIndex());
331 }
332
333
334 void GuiDelimiter::on_rightLW_currentRowChanged(int item)
335 {
336         if (matchCB->isChecked())
337                 leftLW->setCurrentRow(item);
338
339         updateTeXCode(sizeCO->currentIndex());
340 }
341
342
343 void GuiDelimiter::on_matchCB_stateChanged(int state)
344 {
345         if (state == Qt::Checked)
346                 on_leftLW_currentRowChanged(leftLW->currentRow());
347
348         updateTeXCode(sizeCO->currentIndex());
349 }
350
351
352 Dialog * createGuiDelimiter(GuiView & lv) { return new GuiDelimiter(lv); }
353
354
355 } // namespace frontend
356 } // namespace lyx
357
358 #include "moc_GuiDelimiter.cpp"