2006-03-05 17:24:44 +00:00
|
|
|
/**
|
2007-08-31 22:37:05 +00:00
|
|
|
* \file GuiDelimiter.cpp
|
2006-03-05 17:24:44 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2007-08-31 22:37:05 +00:00
|
|
|
#include "GuiDelimiter.h"
|
2007-04-12 16:49:01 +00:00
|
|
|
|
|
|
|
#include "GuiApplication.h"
|
2008-03-20 00:00:53 +00:00
|
|
|
#include "GuiFontLoader.h"
|
2007-04-22 07:54:36 +00:00
|
|
|
#include "GuiView.h"
|
|
|
|
|
2006-08-16 14:22:47 +00:00
|
|
|
#include "qt_helpers.h"
|
2007-11-29 07:04:28 +00:00
|
|
|
#include "support/gettext.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-08-16 14:22:47 +00:00
|
|
|
#include <QPixmap>
|
|
|
|
#include <QCheckBox>
|
2007-04-05 12:12:07 +00:00
|
|
|
#include <QListWidgetItem>
|
2006-08-16 14:22:47 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-10-04 17:35:27 +00:00
|
|
|
static char const * latex_delimiters[] = {
|
|
|
|
"(", ")", "{", "}", "[", "]",
|
|
|
|
"lceil", "rceil", "lfloor", "rfloor", "langle", "rangle",
|
|
|
|
"uparrow", "updownarrow", "Uparrow", "Updownarrow", "downarrow", "Downarrow",
|
|
|
|
"|", "Vert", "/", "backslash", ""
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int const nr_latex_delimiters =
|
|
|
|
sizeof(latex_delimiters) / sizeof(char const *);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
static QString const bigleft[] = {"", "bigl", "Bigl", "biggl", "Biggl"};
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
static QString const bigright[] = {"", "bigr", "Bigr", "biggr", "Biggr"};
|
2006-08-16 14:22:47 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
static char const * const biggui[] = {
|
|
|
|
N_("big[[delimiter size]]"),
|
|
|
|
N_("Big[[delimiter size]]"),
|
|
|
|
N_("bigg[[delimiter size]]"),
|
|
|
|
N_("Bigg[[delimiter size]]"),
|
|
|
|
""
|
|
|
|
};
|
2006-08-16 14:22:47 +00:00
|
|
|
|
|
|
|
|
2007-04-18 09:44:24 +00:00
|
|
|
// FIXME: It might be better to fix the big delim LFUN to not require
|
|
|
|
// additional '\' prefix.
|
2007-09-05 20:33:29 +00:00
|
|
|
static QString fix_name(QString const & str, bool big)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-04-17 20:04:15 +00:00
|
|
|
if (str.isEmpty())
|
2006-03-05 17:24:44 +00:00
|
|
|
return ".";
|
2007-04-07 02:07:15 +00:00
|
|
|
if (!big || str == "(" || str == ")" || str == "[" || str == "]"
|
|
|
|
|| str == "|" || str == "/")
|
2007-04-06 15:57:32 +00:00
|
|
|
return str;
|
2006-08-16 14:22:47 +00:00
|
|
|
|
2007-04-11 00:27:35 +00:00
|
|
|
return "\\" + str;
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2007-04-12 16:49:01 +00:00
|
|
|
|
2007-10-04 17:35:27 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
|
2007-11-23 09:44:02 +00:00
|
|
|
GuiDelimiter::GuiDelimiter(GuiView & lv)
|
2008-02-05 12:43:19 +00:00
|
|
|
: GuiMath(lv, "mathdelimiter", qt_("Math Delimiter"))
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
|
2006-08-16 14:22:47 +00:00
|
|
|
connect(closePB, SIGNAL(clicked()), this, SLOT(accept()));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-04-05 12:12:07 +00:00
|
|
|
setFocusProxy(leftLW);
|
2007-04-19 12:25:58 +00:00
|
|
|
|
|
|
|
leftLW->setViewMode(QListView::IconMode);
|
|
|
|
rightLW->setViewMode(QListView::IconMode);
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2007-12-12 19:28:07 +00:00
|
|
|
typedef map<char_type, QListWidgetItem *> ListItems;
|
2007-04-12 16:49:01 +00:00
|
|
|
ListItems list_items;
|
2007-04-05 09:26:09 +00:00
|
|
|
// The last element is the empty one.
|
2007-04-12 16:49:01 +00:00
|
|
|
int const end = nr_latex_delimiters - 1;
|
|
|
|
for (int i = 0; i < end; ++i) {
|
|
|
|
string const delim = latex_delimiters[i];
|
2007-10-07 20:34:09 +00:00
|
|
|
MathSymbol const & ms = mathSymbol(delim);
|
2007-04-12 16:49:01 +00:00
|
|
|
QString symbol(ms.fontcode?
|
|
|
|
QChar(ms.fontcode) : toqstr(docstring(1, ms.unicode)));
|
|
|
|
QListWidgetItem * lwi = new QListWidgetItem(symbol);
|
|
|
|
lwi->setToolTip(toqstr(delim));
|
2007-10-28 18:51:54 +00:00
|
|
|
FontInfo lyxfont;
|
2007-04-12 16:49:01 +00:00
|
|
|
lyxfont.setFamily(ms.fontfamily);
|
2008-03-20 00:00:53 +00:00
|
|
|
lwi->setFont(frontend::getFont(lyxfont));
|
2007-04-12 16:49:01 +00:00
|
|
|
list_items[ms.unicode] = lwi;
|
2007-04-19 08:22:41 +00:00
|
|
|
leftLW->addItem(lwi);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2007-04-19 08:22:41 +00:00
|
|
|
for (int i = 0; i != leftLW->count(); ++i) {
|
2007-10-07 20:34:09 +00:00
|
|
|
MathSymbol const & ms = mathSymbol(
|
2007-04-19 08:22:41 +00:00
|
|
|
fromqstr(leftLW->item(i)->toolTip()));
|
|
|
|
rightLW->addItem(list_items[doMatch(ms.unicode)]->clone());
|
2007-04-12 16:49:01 +00:00
|
|
|
}
|
2007-04-19 08:22:41 +00:00
|
|
|
|
2007-04-12 16:49:01 +00:00
|
|
|
// The last element is the empty one.
|
2007-04-05 12:12:07 +00:00
|
|
|
leftLW->addItem(qt_("(None)"));
|
|
|
|
rightLW->addItem(qt_("(None)"));
|
2006-08-16 14:22:47 +00:00
|
|
|
|
2006-12-10 10:07:31 +00:00
|
|
|
sizeCO->addItem(qt_("Variable"));
|
2006-09-12 01:17:03 +00:00
|
|
|
|
2006-08-16 14:22:47 +00:00
|
|
|
for (int i = 0; *biggui[i]; ++i)
|
|
|
|
sizeCO->addItem(qt_(biggui[i]));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-04-05 12:12:07 +00:00
|
|
|
on_leftLW_currentRowChanged(0);
|
2007-09-05 20:33:29 +00:00
|
|
|
bc().setPolicy(ButtonPolicy::IgnorantPolicy);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 20:34:09 +00:00
|
|
|
char_type GuiDelimiter::doMatch(char_type const symbol)
|
2007-09-05 20:33:29 +00:00
|
|
|
{
|
2007-10-07 20:34:09 +00:00
|
|
|
string const & str = texName(symbol);
|
2007-09-05 20:33:29 +00:00
|
|
|
string match;
|
|
|
|
if (str == "(") match = ")";
|
|
|
|
else if (str == ")") match = "(";
|
|
|
|
else if (str == "[") match = "]";
|
|
|
|
else if (str == "]") match = "[";
|
|
|
|
else if (str == "{") match = "}";
|
|
|
|
else if (str == "}") match = "{";
|
|
|
|
else if (str == "l") match = "r";
|
|
|
|
else if (str == "rceil") match = "lceil";
|
|
|
|
else if (str == "lceil") match = "rceil";
|
|
|
|
else if (str == "rfloor") match = "lfloor";
|
|
|
|
else if (str == "lfloor") match = "rfloor";
|
|
|
|
else if (str == "rangle") match = "langle";
|
|
|
|
else if (str == "langle") match = "rangle";
|
|
|
|
else if (str == "backslash") match = "/";
|
|
|
|
else if (str == "/") match = "backslash";
|
|
|
|
else return symbol;
|
|
|
|
|
2007-10-07 20:34:09 +00:00
|
|
|
return mathSymbol(match).unicode;
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 20:34:09 +00:00
|
|
|
void GuiDelimiter::updateTeXCode(int size)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-04-18 09:44:24 +00:00
|
|
|
bool const bigsize = size != 0;
|
2007-04-17 20:04:15 +00:00
|
|
|
|
2007-04-18 09:44:24 +00:00
|
|
|
QString left_str = fix_name(leftLW->currentItem()->toolTip(), bigsize);
|
|
|
|
QString right_str = fix_name(rightLW->currentItem()->toolTip(), bigsize);
|
2007-04-17 20:04:15 +00:00
|
|
|
|
|
|
|
if (!bigsize)
|
|
|
|
tex_code_ = left_str + ' ' + right_str;
|
|
|
|
else {
|
2007-04-18 09:44:24 +00:00
|
|
|
tex_code_ = bigleft[size] + ' '
|
2007-05-28 22:27:45 +00:00
|
|
|
+ left_str + ' '
|
2007-04-18 09:44:24 +00:00
|
|
|
+ bigright[size] + ' '
|
2007-04-17 20:04:15 +00:00
|
|
|
+ right_str;
|
2007-04-18 09:44:24 +00:00
|
|
|
}
|
2007-04-17 20:04:15 +00:00
|
|
|
|
2007-04-18 09:44:24 +00:00
|
|
|
// Generate TeX-code for GUI display.
|
|
|
|
// FIXME: Instead of reconstructing the TeX code it would be nice to
|
|
|
|
// FIXME: retrieve the LateX code directly from mathed.
|
|
|
|
// In all cases, we want the '\' prefix if needed, so we pass 'true'
|
|
|
|
// to fix_name.
|
2007-04-17 20:04:15 +00:00
|
|
|
left_str = fix_name(leftLW->currentItem()->toolTip(), true);
|
|
|
|
right_str = fix_name(rightLW->currentItem()->toolTip(), true);
|
2007-04-18 09:44:24 +00:00
|
|
|
QString code_str;
|
2007-04-17 20:04:15 +00:00
|
|
|
if (!bigsize)
|
2007-04-18 09:44:24 +00:00
|
|
|
code_str = "\\left" + left_str + " \\right" + right_str;
|
2007-04-17 20:04:15 +00:00
|
|
|
else {
|
2007-04-18 09:44:24 +00:00
|
|
|
// There should be nothing in the TeX-code when the delimiter is "None".
|
|
|
|
if (left_str != ".")
|
|
|
|
code_str = "\\" + bigleft[size] + left_str + ' ';
|
|
|
|
if (right_str != ".")
|
|
|
|
code_str += "\\" + bigright[size] + right_str;
|
2007-04-17 20:04:15 +00:00
|
|
|
}
|
|
|
|
|
2007-04-18 19:52:32 +00:00
|
|
|
texCodeL->setText(qt_("TeX Code: ") + code_str);
|
2007-04-17 20:04:15 +00:00
|
|
|
}
|
|
|
|
|
2007-04-18 09:44:24 +00:00
|
|
|
|
2007-10-07 20:34:09 +00:00
|
|
|
void GuiDelimiter::on_insertPB_clicked()
|
2007-04-17 20:04:15 +00:00
|
|
|
{
|
|
|
|
if (sizeCO->currentIndex() == 0)
|
2007-10-07 20:34:09 +00:00
|
|
|
dispatchDelim(fromqstr(tex_code_));
|
2007-04-17 20:04:15 +00:00
|
|
|
else {
|
|
|
|
QString command = '"' + tex_code_ + '"';
|
|
|
|
command.replace(' ', "\" \"");
|
2007-10-07 20:34:09 +00:00
|
|
|
dispatchBigDelim(fromqstr(command));
|
2007-05-28 22:27:45 +00:00
|
|
|
}
|
2007-04-17 20:04:15 +00:00
|
|
|
}
|
|
|
|
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2007-10-07 20:34:09 +00:00
|
|
|
void GuiDelimiter::on_sizeCO_activated(int index)
|
2007-04-17 20:04:15 +00:00
|
|
|
{
|
|
|
|
updateTeXCode(index);
|
2007-04-05 12:12:07 +00:00
|
|
|
}
|
|
|
|
|
2006-08-16 14:22:47 +00:00
|
|
|
|
2007-10-07 20:34:09 +00:00
|
|
|
void GuiDelimiter::on_leftLW_itemActivated(QListWidgetItem *)
|
2007-04-05 12:12:07 +00:00
|
|
|
{
|
2007-04-17 20:04:15 +00:00
|
|
|
on_insertPB_clicked();
|
2007-04-05 12:39:22 +00:00
|
|
|
accept();
|
|
|
|
}
|
2007-04-05 12:12:07 +00:00
|
|
|
|
2007-04-05 12:39:22 +00:00
|
|
|
|
2007-10-07 20:34:09 +00:00
|
|
|
void GuiDelimiter::on_rightLW_itemActivated(QListWidgetItem *)
|
2007-04-05 12:39:22 +00:00
|
|
|
{
|
2007-04-17 20:04:15 +00:00
|
|
|
on_insertPB_clicked();
|
2007-04-05 12:12:07 +00:00
|
|
|
accept();
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 20:34:09 +00:00
|
|
|
void GuiDelimiter::on_leftLW_currentRowChanged(int item)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-04-05 12:12:07 +00:00
|
|
|
if (matchCB->isChecked())
|
|
|
|
rightLW->setCurrentRow(item);
|
2007-04-06 15:57:32 +00:00
|
|
|
|
2007-04-17 20:04:15 +00:00
|
|
|
updateTeXCode(sizeCO->currentIndex());
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 20:34:09 +00:00
|
|
|
void GuiDelimiter::on_rightLW_currentRowChanged(int item)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-04-05 12:12:07 +00:00
|
|
|
if (matchCB->isChecked())
|
|
|
|
leftLW->setCurrentRow(item);
|
2007-04-06 15:57:32 +00:00
|
|
|
|
2007-04-17 20:04:15 +00:00
|
|
|
updateTeXCode(sizeCO->currentIndex());
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 20:34:09 +00:00
|
|
|
void GuiDelimiter::on_matchCB_stateChanged(int state)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2006-08-16 14:22:47 +00:00
|
|
|
if (state == Qt::Checked)
|
2007-04-05 12:12:07 +00:00
|
|
|
on_leftLW_currentRowChanged(leftLW->currentRow());
|
2007-04-18 09:44:24 +00:00
|
|
|
|
|
|
|
updateTeXCode(sizeCO->currentIndex());
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2006-08-16 14:22:47 +00:00
|
|
|
|
2007-11-23 09:44:02 +00:00
|
|
|
Dialog * createGuiDelimiter(GuiView & lv) { return new GuiDelimiter(lv); }
|
2007-10-07 20:34:09 +00:00
|
|
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
2006-05-18 08:51:12 +00:00
|
|
|
|
2007-08-31 22:37:05 +00:00
|
|
|
#include "GuiDelimiter_moc.cpp"
|