RedPanda-CPP/RedPandaIDE/HighlighterManager.cpp

56 lines
2.4 KiB
C++
Raw Normal View History

2021-05-26 00:04:20 +08:00
#include "HighlighterManager.h"
#include <QFileInfo>
#include <QObject>
#include "qsynedit/highlighter/cpp.h"
HighlighterManager highlighterManager;
HighlighterManager::HighlighterManager()
{
}
2021-06-07 11:02:03 +08:00
PSynHighlighter HighlighterManager::getHighlighter(const QString &filename)
2021-05-26 00:04:20 +08:00
{
if (filename.isEmpty() || filename.startsWith(QObject::tr("untitled"))) {
2021-06-07 11:02:03 +08:00
return getCppHighlighter();
2021-05-26 00:04:20 +08:00
} else {
QFileInfo info(filename);
QString suffix = info.suffix();
if (suffix.isEmpty() || suffix == "c" || suffix == "cpp" || suffix == "cxx"
|| suffix == "cc" || suffix == "h" || suffix == "hpp"
|| suffix == "hxx" || suffix == "hh") {
2021-06-07 11:02:03 +08:00
return getCppHighlighter();
2021-05-26 00:04:20 +08:00
}
}
return PSynHighlighter();
}
2021-06-07 11:02:03 +08:00
PSynHighlighter HighlighterManager::getCppHighlighter()
2021-05-26 00:04:20 +08:00
{
SynEditCppHighlighter* highlighter = new SynEditCppHighlighter();
PSynHighlighter pHighlighter(highlighter);
highlighter->asmAttribute()->setForeground(QColorConstants::Blue);
highlighter->charAttribute()->setForeground(QColorConstants::Black);
highlighter->commentAttribute()->setForeground(0x8C8C8C);
highlighter->commentAttribute()->setStyles(SynFontStyle::fsItalic);
highlighter->classAttribute()->setForeground(0x008080);
highlighter->floatAttribute()->setForeground(QColorConstants::Svg::purple);
highlighter->functionAttribute()->setForeground(0x00627A);
highlighter->globalVarAttribute()->setForeground(0x660E7A);
highlighter->hexAttribute()->setForeground(QColorConstants::Svg::purple);
highlighter->identifierAttribute()->setForeground(0x080808);
highlighter->invalidAttribute()->setForeground(QColorConstants::Svg::red);
highlighter->localVarAttribute()->setForeground(QColorConstants::Black);
highlighter->numberAttribute()->setForeground(0x1750EB);
highlighter->octAttribute()->setForeground(QColorConstants::Svg::purple);
highlighter->direcAttribute()->setForeground(0x1f542e);
highlighter->keyAttribute()->setForeground(0x0033b3);
highlighter->whitespaceAttribute()->setForeground(QColorConstants::Svg::silver);
highlighter->stringAttribute()->setForeground(0x007d17);
highlighter->stringEscapeSequenceAttribute()->setForeground(QColorConstants::Svg::red);
highlighter->symbolAttribute()->setForeground(0xc10000);
highlighter->variableAttribute()->setForeground(0x400080);
return pHighlighter;
}