SyntaxHighlighter::SyntaxHighlighter(QTextEdit *parent) : Sonnet::Highlighter(parent) , tagBrush(KColorScheme::View,KColorScheme::VisitedText) , m_approved(true) // , fuzzyState(false) // , fromDocbook(docbook) { setAutomatic(false); highlightingRules.reserve(NUM_OF_RULES); HighlightingRule rule; //rule.format.setFontItalic(true); // tagFormat.setForeground(tagBrush.brush(QApplication::palette())); tagFormat.setForeground(tagBrush.brush(QApplication::palette())); //QTextCharFormat format; //tagFormat.setForeground(Qt::darkBlue); // if (!docbook) //support multiline tags // { // rule.format = tagFormat; // rule.pattern = QRegExp("<.+>"); // rule.pattern.setMinimal(true); // highlightingRules.append(rule); // } //entity rule.format.setForeground(Qt::darkMagenta); rule.pattern = QRegExp("(&[A-Za-z_:][A-Za-z0-9_\\.:-]*;)"); highlightingRules.append(rule); QString accel=Project::instance()->accel(); if (!accel.isEmpty()) { rule.format.setForeground(Qt::darkMagenta); rule.pattern = QRegExp(accel); highlightingRules.append(rule); } //\n \t \" rule.format.setForeground(Qt::darkGreen); rule.pattern = QRegExp("(\\\\[abfnrtv'\?\\\\])|(\\\\\\d+)|(\\\\x[\\dabcdef]+)"); highlightingRules.append(rule); //spaces settingsChanged(); connect(SettingsController::instance(),SIGNAL(generalSettingsChanged()),this, SLOT(settingsChanged())); }
EMailQuoteHighlighter::EMailQuoteHighlighter( TextEdit *textEdit, const QColor &normalColor, const QColor "eDepth1, const QColor "eDepth2, const QColor "eDepth3, const QColor &misspelledColor ) : Highlighter( textEdit, textEdit->configFile() ), d( new EMailQuoteHighlighterPrivate() ) { Q_UNUSED( normalColor ); // Don't automatically disable the spell checker, for example because there // are too many misspelled words. That would also disable quote highlighting. // FIXME: disable this spell checking! setAutomatic( false ); setActive( true ); d->col1 = quoteDepth1; d->col2 = quoteDepth2; d->col3 = quoteDepth3; d->misspelledColor = misspelledColor; d->spellCheckingEnabled = false; d->parent = textEdit; }