git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
123 lines
4.8 KiB
C++
123 lines
4.8 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2008 Werner Mayer <wmayer[at]users.sourceforge.net> *
|
|
* *
|
|
* This file is part of the FreeCAD CAx development system. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this library; see the file COPYING.LIB. If not, *
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
|
* Suite 330, Boston, MA 02111-1307, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
#include "PreCompiled.h"
|
|
#ifndef _PreComp_
|
|
# include <QRegExp>
|
|
#endif
|
|
|
|
#include "PovrayHighlighter.h"
|
|
|
|
using namespace RaytracingGui;
|
|
|
|
namespace RaytracingGui {
|
|
class PovrayHighlighterP
|
|
{
|
|
public:
|
|
PovrayHighlighterP()
|
|
{
|
|
keywords << QLatin1String("include") << QLatin1String("if")
|
|
<< QLatin1String("ifdef") << QLatin1String("ifndef")
|
|
<< QLatin1String("switch") << QLatin1String("while")
|
|
<< QLatin1String("macro") << QLatin1String("else")
|
|
<< QLatin1String("end") << QLatin1String("declare")
|
|
<< QLatin1String("local") << QLatin1String("undef")
|
|
<< QLatin1String("fopen") << QLatin1String("fclose")
|
|
<< QLatin1String("read") << QLatin1String("write")
|
|
<< QLatin1String("default") << QLatin1String("version")
|
|
<< QLatin1String("debug") << QLatin1String("case")
|
|
<< QLatin1String("range") << QLatin1String("break")
|
|
<< QLatin1String("error") << QLatin1String("warning");
|
|
;
|
|
}
|
|
|
|
QStringList keywords;
|
|
};
|
|
} // namespace RaytracingGui
|
|
|
|
/**
|
|
* Constructs a syntax highlighter.
|
|
*/
|
|
PovrayHighlighter::PovrayHighlighter(QObject* parent)
|
|
: SyntaxHighlighter(parent)
|
|
{
|
|
d = new PovrayHighlighterP;
|
|
}
|
|
|
|
/** Destroys this object. */
|
|
PovrayHighlighter::~PovrayHighlighter()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
void PovrayHighlighter::highlightBlock(const QString &text)
|
|
{
|
|
enum { NormalState = -1, InsideCStyleComment };
|
|
|
|
int state = previousBlockState();
|
|
int start = 0;
|
|
|
|
for (int i = 0; i < text.length(); ++i) {
|
|
|
|
if (state == InsideCStyleComment) {
|
|
if (text.mid(i, 2) == QLatin1String("*/")) {
|
|
state = NormalState;
|
|
setFormat(start, i - start + 2, this->colorByType(SyntaxHighlighter::BlockComment));
|
|
}
|
|
}
|
|
else {
|
|
if (text.mid(i, 2) == QLatin1String("//")) {
|
|
setFormat(i, text.length() - i, this->colorByType(SyntaxHighlighter::Comment));
|
|
break;
|
|
}
|
|
else if (text.mid(i, 2) == QLatin1String("/*")) {
|
|
start = i;
|
|
state = InsideCStyleComment;
|
|
}
|
|
else if (text.mid(i,1) == QLatin1String("#")) {
|
|
QRegExp rx(QLatin1String("#\\s*(\\w*)"));
|
|
int pos = text.indexOf(rx, i);
|
|
if (pos != -1) {
|
|
if (d->keywords.contains(rx.cap(1)) != 0)
|
|
setFormat(i, rx.matchedLength(), this->colorByType(SyntaxHighlighter::Keyword));
|
|
i += rx.matchedLength();
|
|
}
|
|
}
|
|
else if (text[i] == QLatin1Char('"')) {
|
|
int j=i;
|
|
for (;j<text.length();j++) {
|
|
if (j > i && text[j] == QLatin1Char('"'))
|
|
break;
|
|
}
|
|
|
|
setFormat(i, j-i+1, this->colorByType(SyntaxHighlighter::String));
|
|
i = j;
|
|
}
|
|
}
|
|
}
|
|
if (state == InsideCStyleComment)
|
|
setFormat(start, text.length() - start, this->colorByType(SyntaxHighlighter::BlockComment));
|
|
|
|
setCurrentBlockState(state);
|
|
}
|