QGIS API Documentation  3.22.4-Białowieża (ce8e65e95e)
qgscodeeditorcss.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgscodeeditorcss.cpp - A CSS editor based on QScintilla
3  --------------------------------------
4  Date : 27-Jul-2014
5  Copyright : (C) 2014 by Nyall Dawson
6  Email : nyall dot dawson at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #include "qgsapplication.h"
17 #include "qgscodeeditorcss.h"
18 
19 #include <QWidget>
20 #include <QString>
21 #include <QFont>
22 #include <Qsci/qscilexercss.h>
23 
24 
26  : QgsCodeEditor( parent )
27 {
28  if ( !parent )
29  {
30  setTitle( tr( "CSS Editor" ) );
31  }
32  setFoldingVisible( true );
34 }
35 
37 {
38  QsciLexerCSS *lexer = new QgsQsciLexerCSS( this );
39 
40  QFont font = lexerFont();
41  lexer->setDefaultFont( font );
42  lexer->setFont( font, -1 );
43 
44  font.setItalic( true );
45  lexer->setFont( font, QsciLexerCSS::Comment );
46 
47  font.setItalic( false );
48  font.setBold( true );
49  lexer->setFont( font, QsciLexerCSS::SingleQuotedString );
50  lexer->setFont( font, QsciLexerCSS::DoubleQuotedString );
51 
52  lexer->setDefaultColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Default ) );
55 
56  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Tag ), QsciLexerCSS::Tag );
57  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Class ), QsciLexerCSS::ClassSelector );
58  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Keyword ), QsciLexerCSS::Attribute );
59  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Method ), QsciLexerCSS::PseudoClass );
60  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Method ), QsciLexerCSS::UnknownPseudoClass );
61  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Operator ), QsciLexerCSS::Operator );
62  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Number ), QsciLexerCSS::Value );
63  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Comment ), QsciLexerCSS::Comment );
64  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::DoubleQuote ), QsciLexerCSS::DoubleQuotedString );
65  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::SingleQuote ), QsciLexerCSS::SingleQuotedString );
66  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Identifier ), QsciLexerCSS::CSS1Property );
67  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Identifier ), QsciLexerCSS::UnknownProperty );
68  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Identifier ), QsciLexerCSS::CSS2Property );
69  lexer->setColor( lexerColor( QgsCodeEditorColorScheme::ColorRole::Identifier ), QsciLexerCSS::CSS3Property );
70 
71  setLexer( lexer );
72 
74 }
75 
77 //
78 // QgsQsciLexerCSS
79 //
80 QgsQsciLexerCSS::QgsQsciLexerCSS( QObject *parent )
81  : QsciLexerCSS( parent )
82 {
83 
84 }
85 
86 QString QgsQsciLexerCSS::description( int style ) const
87 {
88  // see https://www.riverbankcomputing.com/pipermail/qscintilla/2019-July/001415.html
89  if ( style == QsciLexerCSS::Comment )
90  return QStringLiteral( "Comment" );
91 
92  return QsciLexerCSS::description( style );
93 }
void initializeLexer() override
Called when the dialect specific code lexer needs to be initialized (or reinitialized).
QgsCodeEditorCSS(QWidget *parent=nullptr)
Constructor for QgsCodeEditorCSS.
@ DoubleQuote
Double quote color.
@ SingleQuote
Single quote color.
A text editor based on QScintilla2.
Definition: qgscodeeditor.h:42
void setFoldingVisible(bool folding)
Set whether the folding controls are visible in the editor.
void runPostLexerConfigurationTasks()
Performs tasks which must be run after a lexer has been set for the widget.
void setTitle(const QString &title)
Set the widget title.
QFont lexerFont() const
Returns the font to use in the lexer.
QColor lexerColor(QgsCodeEditorColorScheme::ColorRole role) const
Returns the color to use in the lexer for the specified role.