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