RedPanda-CPP/RedPandaIDE/HighlighterManager.cpp

126 lines
5.2 KiB
C++
Raw Normal View History

2021-12-26 23:18:28 +08:00
/*
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2021-05-26 00:04:20 +08:00
#include "HighlighterManager.h"
#include <QFileInfo>
#include <QObject>
#include "qsynedit/highlighter/cpp.h"
2021-07-02 10:32:29 +08:00
#include "qsynedit/highlighter/asm.h"
2021-06-20 22:54:16 +08:00
#include "qsynedit/Constants.h"
#include "colorscheme.h"
2021-05-26 00:04:20 +08:00
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" || suffix == "C"
|| suffix == "CPP" || suffix =="H" || suffix == "c++"
|| suffix == "h++") {
2021-06-07 11:02:03 +08:00
return getCppHighlighter();
2021-05-26 00:04:20 +08:00
}
}
return PSynHighlighter();
}
2021-06-20 22:54:16 +08:00
PSynHighlighter HighlighterManager::copyHighlighter(PSynHighlighter highlighter)
{
if (!highlighter)
return PSynHighlighter();
if (highlighter->getName() == SYN_HIGHLIGHTER_CPP)
return getCppHighlighter();
2021-06-24 20:43:09 +08:00
//todo
return PSynHighlighter();
2021-06-20 22:54:16 +08:00
}
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);
2022-01-04 16:50:54 +08:00
highlighter->asmAttribute()->setForeground(Qt::blue);
highlighter->charAttribute()->setForeground(Qt::black);
2021-05-26 00:04:20 +08:00
highlighter->commentAttribute()->setForeground(0x8C8C8C);
highlighter->commentAttribute()->setStyles(SynFontStyle::fsItalic);
highlighter->classAttribute()->setForeground(0x008080);
2022-01-04 16:50:54 +08:00
highlighter->floatAttribute()->setForeground(Qt::darkMagenta);
2021-05-26 00:04:20 +08:00
highlighter->functionAttribute()->setForeground(0x00627A);
highlighter->globalVarAttribute()->setForeground(0x660E7A);
2022-01-04 16:50:54 +08:00
highlighter->hexAttribute()->setForeground(Qt::darkMagenta);
2021-05-26 00:04:20 +08:00
highlighter->identifierAttribute()->setForeground(0x080808);
2022-01-04 16:50:54 +08:00
highlighter->invalidAttribute()->setForeground(Qt::red);
highlighter->localVarAttribute()->setForeground(Qt::black);
2021-05-26 00:04:20 +08:00
highlighter->numberAttribute()->setForeground(0x1750EB);
2022-01-04 16:50:54 +08:00
highlighter->octAttribute()->setForeground(Qt::darkMagenta);
highlighter->preprocessorAttribute()->setForeground(0x1f542e);
2021-07-02 10:32:29 +08:00
highlighter->keywordAttribute()->setForeground(0x0033b3);
2022-01-04 16:50:54 +08:00
highlighter->whitespaceAttribute()->setForeground(Qt::lightGray);
2021-05-26 00:04:20 +08:00
highlighter->stringAttribute()->setForeground(0x007d17);
2022-01-04 16:50:54 +08:00
highlighter->stringEscapeSequenceAttribute()->setForeground(Qt::red);
2021-05-26 00:04:20 +08:00
highlighter->symbolAttribute()->setForeground(0xc10000);
highlighter->variableAttribute()->setForeground(0x400080);
return pHighlighter;
}
2021-06-20 22:54:16 +08:00
2021-07-02 10:32:29 +08:00
PSynHighlighter HighlighterManager::getAsmHighlighter()
{
SynEditASMHighlighter* highlighter = new SynEditASMHighlighter();
PSynHighlighter pHighlighter(highlighter);
highlighter->commentAttribute()->setForeground(0x8C8C8C);
highlighter->commentAttribute()->setStyles(SynFontStyle::fsItalic);
highlighter->identifierAttribute()->setForeground(0x080808);
highlighter->keywordAttribute()->setForeground(0x0033b3);
highlighter->numberAttribute()->setForeground(0x1750EB);
2022-01-04 16:50:54 +08:00
highlighter->whitespaceAttribute()->setForeground(Qt::lightGray);
2021-07-02 10:32:29 +08:00
highlighter->stringAttribute()->setForeground(0x007d17);
highlighter->symbolAttribute()->setForeground(0xc10000);
return pHighlighter;
}
2021-06-20 22:54:16 +08:00
void HighlighterManager::applyColorScheme(PSynHighlighter highlighter, const QString &schemeName)
{
if (!highlighter)
return;
2021-07-02 10:32:29 +08:00
if ( (highlighter->getName() == SYN_HIGHLIGHTER_CPP)
|| (highlighter->getName() == SYN_HIGHLIGHTER_ASM)
) {
2021-06-20 22:54:16 +08:00
for (QString name: highlighter->attributes().keys()) {
PColorSchemeItem item = pColorManager->getItem(schemeName,name);
if (item) {
PSynHighlighterAttribute attr = highlighter->attributes()[name];
attr->setBackground(item->background());
attr->setForeground(item->foreground());
SynFontStyles styles = SynFontStyle::fsNone;
styles.setFlag(SynFontStyle::fsBold, item->bold());
styles.setFlag(SynFontStyle::fsItalic, item->italic());
styles.setFlag(SynFontStyle::fsUnderline, item->underlined());
styles.setFlag(SynFontStyle::fsStrikeOut, item->strikeout());
attr->setStyles(styles);
2021-06-20 22:54:16 +08:00
}
}
}
}