30 setAutoCompletionCaseSensitivity(
false );
43 mApis->cancelPreparation( );
52 mSqlLexer =
new QgsCaseInsensitiveLexerSQL(
this );
53 mSqlLexer->setDefaultFont( font );
56 mSqlLexer->setFont( font, -1 );
58 mSqlLexer->setFont( font, QsciLexerSQL::Keyword );
60 font.setBold(
false );
61 font.setItalic(
true );
62 mSqlLexer->setFont( font, QsciLexerSQL::Comment );
63 mSqlLexer->setFont( font, QsciLexerSQL::CommentLine );
65 mSqlLexer->setColor(
defaultColor, QsciLexerSQL::Default );
77 setLexer( mSqlLexer );
87 for (
const QgsField &field : std::as_const( fields ) )
96void QgsCodeEditorSQL::updateApis()
98 mApis =
new QsciAPIs( mSqlLexer );
100 for (
const QString &fieldName : std::as_const( mFieldNames ) )
102 mApis->add( fieldName );
105 for (
const QString &keyword : std::as_const( mExtraKeywords ) )
107 mApis->add( keyword );
111 mSqlLexer->setAPIs( mApis );
116 return mExtraKeywords.values();
127 return mFieldNames.values();
ScriptLanguage
Scripting languages.
@ QuotedOperator
Quoted operator color.
@ Identifier
Identifier color.
@ DoubleQuote
Double quote color.
@ QuotedIdentifier
Quoted identifier color.
@ CommentLine
Line comment color.
@ Default
Default text color.
@ Background
Background color.
@ SingleQuote
Single quote color.
@ Operator
Operator color.
QStringList extraKeywords() const
Returns the extra keywords.
Qgis::ScriptLanguage language() const override
Returns the associated scripting language.
void setExtraKeywords(const QStringList &extraKeywords)
Set extra keywords to extraKeywords.
QStringList fieldNames() const
Returns field names from the lexer API.
virtual ~QgsCodeEditorSQL()
QgsCodeEditorSQL(QWidget *parent=nullptr)
Constructor for QgsCodeEditorSQL.
void setFieldNames(const QStringList &fieldNames)
Set field names to fieldNames to be added to the lexer API.
void initializeLexer() override
Called when the dialect specific code lexer needs to be initialized (or reinitialized).
void setFields(const QgsFields &fields)
Set field names to be added to the lexer API.
A text editor based on QScintilla2.
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.
static QColor defaultColor(QgsCodeEditorColorScheme::ColorRole role, const QString &theme=QString())
Returns the default color for the specified role.
Encapsulate a field in an attribute table or data source.
Container of fields for a vector layer.