2006-04-15 14:13:41 +00:00
|
|
|
/**
|
|
|
|
* \file QViewSource.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
* \author Bo Peng
|
2007-03-25 01:25:29 +00:00
|
|
|
* \author Abdelrazak Younes
|
2006-04-15 14:13:41 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "QViewSource.h"
|
|
|
|
#include "qt_helpers.h"
|
2006-10-03 14:21:15 +00:00
|
|
|
|
2007-04-24 14:08:53 +00:00
|
|
|
#include <QTextDocument>
|
|
|
|
|
2006-04-15 14:13:41 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2007-04-24 14:08:53 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// QViewSourceDialog
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
QViewSourceDialog::QViewSourceDialog(QViewSource * form)
|
|
|
|
: form_(form)
|
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
|
|
|
|
connect(viewFullSourceCB, SIGNAL(clicked()),
|
|
|
|
this, SLOT(update()));
|
|
|
|
connect(autoUpdateCB, SIGNAL(toggled(bool)),
|
|
|
|
updatePB, SLOT(setDisabled(bool)));
|
|
|
|
connect(updatePB, SIGNAL(clicked()),
|
|
|
|
this, SLOT(update()));
|
2006-04-15 14:13:41 +00:00
|
|
|
|
2007-04-24 14:08:53 +00:00
|
|
|
// setting a document at this point trigger an assertion in Qt
|
|
|
|
// so we disable the signals here:
|
|
|
|
form_->document()->blockSignals(true);
|
|
|
|
viewSourceTV->setDocument(form_->document());
|
|
|
|
form_->document()->blockSignals(false);
|
|
|
|
viewSourceTV->setReadOnly(true);
|
|
|
|
///dialog_->viewSourceTV->setAcceptRichText(false);
|
|
|
|
// this is personal. I think source code should be in fixed-size font
|
|
|
|
QFont font(toqstr(theApp()->typewriterFontName()));
|
|
|
|
font.setKerning(false);
|
|
|
|
font.setFixedPitch(true);
|
|
|
|
font.setStyleHint(QFont::TypeWriter);
|
|
|
|
viewSourceTV->setFont(font);
|
|
|
|
// again, personal taste
|
|
|
|
viewSourceTV->setWordWrapMode(QTextOption::NoWrap);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QViewSourceDialog::update()
|
|
|
|
{
|
|
|
|
if (autoUpdateCB->isChecked())
|
|
|
|
form_->update(viewFullSourceCB->isChecked());
|
|
|
|
|
|
|
|
QWidget::update();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// LaTeXHighlighter
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
LaTeXHighlighter::LaTeXHighlighter(QTextDocument * parent)
|
|
|
|
: QSyntaxHighlighter(parent)
|
2006-04-15 14:13:41 +00:00
|
|
|
{
|
|
|
|
keywordFormat.setForeground(Qt::darkBlue);
|
|
|
|
keywordFormat.setFontWeight(QFont::Bold);
|
2007-03-28 00:26:04 +00:00
|
|
|
commentFormat.setForeground(Qt::darkGray);
|
2006-04-15 14:13:41 +00:00
|
|
|
mathFormat.setForeground(Qt::red);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-24 14:08:53 +00:00
|
|
|
void LaTeXHighlighter::highlightBlock(QString const & text)
|
2006-04-15 14:13:41 +00:00
|
|
|
{
|
|
|
|
// $ $
|
|
|
|
QRegExp exprMath("\\$[^\\$]*\\$");
|
2007-03-26 15:51:34 +00:00
|
|
|
int index = text.indexOf(exprMath);
|
2006-04-15 14:13:41 +00:00
|
|
|
while (index >= 0) {
|
|
|
|
int length = exprMath.matchedLength();
|
|
|
|
setFormat(index, length, mathFormat);
|
|
|
|
index = text.indexOf(exprMath, index + length);
|
|
|
|
}
|
|
|
|
// [ ]
|
2007-03-26 15:10:59 +00:00
|
|
|
QRegExp exprStartDispMath("(\\\\\\[|"
|
|
|
|
"\\\\begin\\{equation\\**\\}|"
|
|
|
|
"\\\\begin\\{eqnarray\\**\\}|"
|
|
|
|
"\\\\begin\\{align(ed|at)*\\**\\}|"
|
|
|
|
"\\\\begin\\{flalign\\**\\}|"
|
|
|
|
"\\\\begin\\{gather\\**\\}|"
|
|
|
|
"\\\\begin\\{multline\\**\\}|"
|
|
|
|
"\\\\begin\\{array\\**\\}|"
|
|
|
|
"\\\\begin\\{cases\\**\\}"
|
|
|
|
")");
|
|
|
|
QRegExp exprEndDispMath("(\\\\\\]|"
|
|
|
|
"\\\\end\\{equation\\**\\}|"
|
|
|
|
"\\\\end\\{eqnarray\\**\\}|"
|
|
|
|
"\\\\end\\{align(ed|at)*\\**\\}|"
|
|
|
|
"\\\\end\\{flalign\\**\\}|"
|
|
|
|
"\\\\end\\{gather\\**\\}|"
|
|
|
|
"\\\\end\\{multline\\**\\}|"
|
|
|
|
"\\\\end\\{array\\**\\}|"
|
|
|
|
"\\\\end\\{cases\\**\\}"
|
|
|
|
")");
|
|
|
|
int startIndex = 0;
|
|
|
|
// if previous block was in 'disp math'
|
|
|
|
// start search from 0 (for end disp math)
|
|
|
|
// otherwise, start search from 'begin disp math'
|
|
|
|
if (previousBlockState() != 1)
|
|
|
|
startIndex = text.indexOf(exprStartDispMath);
|
|
|
|
while (startIndex >= 0) {
|
|
|
|
int endIndex = text.indexOf(exprEndDispMath, startIndex);
|
|
|
|
int length;
|
|
|
|
if (endIndex == -1) {
|
|
|
|
setCurrentBlockState(1);
|
|
|
|
length = text.length() - startIndex;
|
|
|
|
} else {
|
|
|
|
length = endIndex - startIndex + exprEndDispMath.matchedLength();
|
|
|
|
}
|
|
|
|
setFormat(startIndex, length, mathFormat);
|
|
|
|
startIndex = text.indexOf(exprStartDispMath, startIndex + length);
|
2006-04-15 14:13:41 +00:00
|
|
|
}
|
|
|
|
// \whatever
|
|
|
|
QRegExp exprKeyword("\\\\[A-Za-z]+");
|
|
|
|
index = text.indexOf(exprKeyword);
|
|
|
|
while (index >= 0) {
|
|
|
|
int length = exprKeyword.matchedLength();
|
|
|
|
setFormat(index, length, keywordFormat);
|
|
|
|
index = text.indexOf(exprKeyword, index + length);
|
|
|
|
}
|
2007-03-26 15:51:34 +00:00
|
|
|
// comment
|
|
|
|
QRegExp exprComment("(^|[^\\\\])%.*$");
|
|
|
|
index = text.indexOf(exprComment);
|
|
|
|
while (index >= 0) {
|
2007-04-24 14:08:53 +00:00
|
|
|
int const length = exprComment.matchedLength();
|
2007-03-26 15:51:34 +00:00
|
|
|
setFormat(index, length, commentFormat);
|
|
|
|
index = text.indexOf(exprComment, index + length);
|
|
|
|
}
|
2006-04-15 14:13:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-25 01:25:29 +00:00
|
|
|
QViewSource::QViewSource(Dialog & parent)
|
|
|
|
: ControlViewSource(parent)
|
2006-04-15 14:13:41 +00:00
|
|
|
{
|
2007-03-25 01:25:29 +00:00
|
|
|
document_ = new QTextDocument(this);
|
2007-04-24 14:08:53 +00:00
|
|
|
highlighter_ = new LaTeXHighlighter(document_);
|
2006-08-04 13:59:12 +00:00
|
|
|
}
|
|
|
|
|
2006-04-15 14:13:41 +00:00
|
|
|
|
2007-04-24 14:08:53 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// QViewSource
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-03-25 01:25:29 +00:00
|
|
|
void QViewSource::update(bool full_source)
|
2006-04-15 14:13:41 +00:00
|
|
|
{
|
2007-03-25 01:25:29 +00:00
|
|
|
document_->setPlainText(toqstr(updateContent(full_source)));
|
2006-04-15 14:13:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
2006-05-18 08:51:12 +00:00
|
|
|
|
|
|
|
#include "QViewSource_moc.cpp"
|