1 /*************************************************************************** 2 * Copyright (C) 2004-2021 by Pere Constans 3 * constans@molspaces.com 4 * cb2Bib version 2.0.1. Licensed under the GNU GPL version 3. 5 * See the LICENSE file that comes with this distribution. 6 ***************************************************************************/ 7 #ifndef C2BSAVEREHIGHLIGHTER_H 8 #define C2BSAVEREHIGHLIGHTER_H 9 10 #include <QSyntaxHighlighter> 11 12 13 /** 14 Save RegExp SyntaxHighLighter 15 16 @author Pere Constans 17 */ 18 19 class c2bColors; 20 21 class c2bSaveREHighlighter : public QSyntaxHighlighter 22 { 23 24 public: 25 c2bSaveREHighlighter(QRegExp& rx, QTextDocument* doc); 26 ~c2bSaveREHighlighter(); 27 28 29 protected: 30 virtual void highlightBlock(const QString& text); 31 32 33 private: 34 QColor text_color; 35 QRegExp& _current_rx; 36 c2bColors* c; 37 }; 38 39 #endif