]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiDelimiter.cpp
6e50782e1de82c3e2e838ff4e346fc20dc2fd9fd
[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 "GuiView.h"
17
18 #include "qt_helpers.h"
19 #include "gettext.h"
20
21 #include <QPixmap>
22 #include <QCheckBox>
23 #include <QListWidgetItem>
24
25 // Set to zero if unicode symbols are preferred.
26 #define USE_PIXMAP 1
27
28 using std::string;
29
30 namespace lyx {
31 namespace frontend {
32
33 static QString const bigleft[]  = {"", "bigl", "Bigl", "biggl", "Biggl"};
34
35 static QString const bigright[] = {"", "bigr", "Bigr", "biggr", "Biggr"};
36
37 static char const * const biggui[] = {
38         N_("big[[delimiter size]]"),
39         N_("Big[[delimiter size]]"),
40         N_("bigg[[delimiter size]]"),
41         N_("Bigg[[delimiter size]]"),
42         ""
43 };
44
45
46 // FIXME: It might be better to fix the big delim LFUN to not require
47 // additional '\' prefix.
48 static QString fix_name(QString const & str, bool big)
49 {
50         if (str.isEmpty())
51                 return ".";
52         if (!big || str == "(" || str == ")" || str == "[" || str == "]"
53             || str == "|" || str == "/")
54                 return str;
55
56         return "\\" + str;
57 }
58
59
60 GuiDelimiterDialog::GuiDelimiterDialog(LyXView & lv)
61         : GuiDialog(lv, "mathdelimiter")
62 {
63         setupUi(this);
64         setViewTitle(_("Math Delimiter"));
65         setController(new ControlMath(*this));
66
67         connect(closePB, SIGNAL(clicked()), this, SLOT(accept()));
68
69         setWindowTitle(qt_("LyX: Delimiters"));
70         setFocusProxy(leftLW);
71
72         leftLW->setViewMode(QListView::IconMode);
73         rightLW->setViewMode(QListView::IconMode);
74
75         typedef std::map<char_type, QListWidgetItem *> ListItems;
76         ListItems list_items;
77         // The last element is the empty one.
78         int const end = nr_latex_delimiters - 1;
79         for (int i = 0; i < end; ++i) {
80                 string const delim = latex_delimiters[i];
81                 MathSymbol const & ms = controller().mathSymbol(delim);
82                 QString symbol(ms.fontcode?
83                         QChar(ms.fontcode) : toqstr(docstring(1, ms.unicode)));
84                 QListWidgetItem * lwi = new QListWidgetItem(symbol);
85                 lwi->setToolTip(toqstr(delim));
86                 Font lyxfont;
87                 lyxfont.setFamily(ms.fontfamily);
88                 QFont const & symbol_font = guiApp->guiFontLoader().get(lyxfont);
89                 lwi->setFont(symbol_font);
90                 list_items[ms.unicode] = lwi;
91                 leftLW->addItem(lwi);
92         }
93
94         for (int i = 0; i != leftLW->count(); ++i) {
95                 MathSymbol const & ms = controller().mathSymbol(
96                         fromqstr(leftLW->item(i)->toolTip()));
97                 rightLW->addItem(list_items[doMatch(ms.unicode)]->clone());
98         }
99
100         // The last element is the empty one.
101         leftLW->addItem(qt_("(None)"));
102         rightLW->addItem(qt_("(None)"));
103
104         sizeCO->addItem(qt_("Variable"));
105
106         for (int i = 0; *biggui[i]; ++i)
107                 sizeCO->addItem(qt_(biggui[i]));
108
109         on_leftLW_currentRowChanged(0);
110         bc().setPolicy(ButtonPolicy::IgnorantPolicy);
111 }
112
113
114 ControlMath & GuiDelimiterDialog::controller() const
115 {
116         return static_cast<ControlMath &>(GuiDialog::controller()); 
117 }
118
119
120 char_type GuiDelimiterDialog::doMatch(char_type const symbol) const
121 {
122         string const & str = controller().texName(symbol);
123         string match;
124         if (str == "(") match = ")";
125         else if (str == ")") match = "(";
126         else if (str == "[") match = "]";
127         else if (str == "]") match = "[";
128         else if (str == "{") match = "}";
129         else if (str == "}") match = "{";
130         else if (str == "l") match = "r";
131         else if (str == "rceil") match = "lceil";
132         else if (str == "lceil") match = "rceil";
133         else if (str == "rfloor") match = "lfloor";
134         else if (str == "lfloor") match = "rfloor";
135         else if (str == "rangle") match = "langle";
136         else if (str == "langle") match = "rangle";
137         else if (str == "backslash") match = "/";
138         else if (str == "/") match = "backslash";
139         else return symbol;
140
141         return controller().mathSymbol(match).unicode;
142 }
143
144
145 void GuiDelimiterDialog::updateTeXCode(int size)
146 {
147         bool const bigsize = size != 0;
148
149         QString left_str = fix_name(leftLW->currentItem()->toolTip(), bigsize);
150         QString right_str = fix_name(rightLW->currentItem()->toolTip(), bigsize);
151
152         if (!bigsize)
153                 tex_code_ = left_str + ' ' + right_str;
154         else {
155                 tex_code_ = bigleft[size] + ' '
156                         + left_str + ' '
157                         + bigright[size] + ' '
158                         + right_str;
159         }
160
161         // Generate TeX-code for GUI display.
162         // FIXME: Instead of reconstructing the TeX code it would be nice to
163         // FIXME: retrieve the LateX code directly from mathed.
164         // In all cases, we want the '\' prefix if needed, so we pass 'true'
165         // to fix_name.
166         left_str = fix_name(leftLW->currentItem()->toolTip(), true);
167         right_str = fix_name(rightLW->currentItem()->toolTip(), true);
168         QString code_str;
169         if (!bigsize)
170                 code_str = "\\left" + left_str + " \\right" + right_str;
171         else {
172                 // There should be nothing in the TeX-code when the delimiter is "None".
173                 if (left_str != ".")
174                         code_str = "\\" + bigleft[size] + left_str + ' ';
175                 if (right_str != ".")
176                         code_str += "\\" + bigright[size] + right_str;
177         }
178
179         texCodeL->setText(qt_("TeX Code: ") + code_str);
180 }
181
182
183 void GuiDelimiterDialog::on_insertPB_clicked()
184 {
185         if (sizeCO->currentIndex() == 0)
186                 controller().dispatchDelim(fromqstr(tex_code_));
187         else {
188                 QString command = '"' + tex_code_ + '"';
189                 command.replace(' ', "\" \"");
190                 controller().dispatchBigDelim(fromqstr(command));
191         }
192  }
193
194
195 void GuiDelimiterDialog::on_sizeCO_activated(int index)
196 {
197         updateTeXCode(index);
198 }
199
200
201 void GuiDelimiterDialog::on_leftLW_itemActivated(QListWidgetItem *)
202 {
203         on_insertPB_clicked();
204         accept();
205 }
206
207
208 void GuiDelimiterDialog::on_rightLW_itemActivated(QListWidgetItem *)
209 {
210         on_insertPB_clicked();
211         accept();
212 }
213
214
215 void GuiDelimiterDialog::on_leftLW_currentRowChanged(int item)
216 {
217         if (matchCB->isChecked())
218                 rightLW->setCurrentRow(item);
219
220         updateTeXCode(sizeCO->currentIndex());
221 }
222
223
224 void GuiDelimiterDialog::on_rightLW_currentRowChanged(int item)
225 {
226         if (matchCB->isChecked())
227                 leftLW->setCurrentRow(item);
228
229         updateTeXCode(sizeCO->currentIndex());
230 }
231
232
233 void GuiDelimiterDialog::on_matchCB_stateChanged(int state)
234 {
235         if (state == Qt::Checked)
236                 on_leftLW_currentRowChanged(leftLW->currentRow());
237
238         updateTeXCode(sizeCO->currentIndex());
239 }
240
241
242 } // namespace frontend
243 } // namespace lyx
244
245 #include "GuiDelimiter_moc.cpp"