28 setTitle( tr(
"Expression Editor" ) );
30 setAutoCompletionCaseSensitivity(
false );
39 for (
const QString &var : variableNames )
41 mVariables <<
'@' + var;
46 mVariables << QStringLiteral(
"@feature" );
47 mVariables << QStringLiteral(
"@id" );
48 mVariables << QStringLiteral(
"@geometry" );
55 for (
int i = 0; i < count; i++ )
67 QString signature = func->
name();
68 if ( !signature.startsWith(
'$' ) )
72 QStringList paramNames;
76 paramNames << param.name();
80 if ( parameters.isEmpty() && func->
params() )
81 signature += QChar( 0x2026 );
83 signature += paramNames.join(
", " );
87 mFunctions << signature;
110 mSqlLexer =
new QgsLexerExpression(
this );
111 mSqlLexer->setDefaultFont( font );
114 mSqlLexer->setFont( font, -1 );
115 font.setBold(
true );
116 mSqlLexer->setFont( font, QsciLexerSQL::Keyword );
118 font.setBold(
false );
119 font.setItalic(
true );
120 mSqlLexer->setFont( font, QsciLexerSQL::Comment );
121 mSqlLexer->setFont( font, QsciLexerSQL::CommentLine );
123 mSqlLexer->setColor( Qt::darkYellow, QsciLexerSQL::DoubleQuotedString );
125 mSqlLexer->setColor(
defaultColor, QsciLexerSQL::Default );
137 setLexer( mSqlLexer );
141void QgsCodeEditorExpression::updateApis()
143 mApis =
new QgsSciApisExpression( mSqlLexer );
145 for (
const QString &var : std::as_const( mVariables ) )
150 for (
const QString &function : std::as_const( mContextFunctions ) )
152 mApis->add( function );
155 for (
const QString &function : std::as_const( mFunctions ) )
157 mApis->add( function );
160 for (
const QString &fieldName : std::as_const( mFieldNames ) )
162 mApis->add( fieldName );
165 mApis->add( QString(
"NULL" ) );
167 mSqlLexer->setAPIs( mApis );
171QgsLexerExpression::QgsLexerExpression( QObject *parent )
172 : QsciLexerSQL( parent )
174 setBackslashEscapes(
true );
177const char *QgsLexerExpression::language()
const
179 return "QGIS Expression";
182bool QgsLexerExpression::caseSensitive()
const
187const char *QgsLexerExpression::wordCharacters()
const
189 return "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_@";
192QgsSciApisExpression::QgsSciApisExpression( QsciLexer *lexer )
198QStringList QgsSciApisExpression::callTips(
const QStringList &context,
int commas, QsciScintilla::CallTipsStyle style, QList<int> &shifts )
200 const QStringList originalTips = QsciAPIs::callTips( context, commas, style, shifts );
201 QStringList lowercaseTips;
202 for (
const QString &tip : originalTips )
203 lowercaseTips << tip.toLower();
205 return lowercaseTips;
@ 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.
void initializeLexer() override
Called when the dialect specific code lexer needs to be initialized (or reinitialized).
QgsCodeEditorExpression(QWidget *parent=nullptr)
Constructor for QgsCodeEditorExpression.
void setExpressionContext(const QgsExpressionContext &context)
Variables and functions from this expression context will be added to the API.
void setFields(const QgsFields &fields)
Field names will be added to the 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.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QStringList functionNames() const
Retrieves a list of function names contained in the context.
QStringList filteredVariableNames() const
Returns a filtered list of variables names set by all scopes in the context.
Represents a single parameter passed to a function.
A abstract base class for defining QgsExpression functions.
QList< QgsExpressionFunction::Parameter > ParameterList
List of parameters, used for function definition.
bool isContextual() const
Returns whether the function is only available if provided by a QgsExpressionContext object.
int params() const
The number of parameters this function takes.
virtual bool isDeprecated() const
Returns true if the function is deprecated and should not be presented as a valid option to users in ...
QString name() const
The name of the function.
const QgsExpressionFunction::ParameterList & parameters() const
Returns the list of named parameters for the function, if set.
static const QList< QgsExpressionFunction * > & Functions()
static int functionCount()
Returns the number of functions defined in the parser.
Encapsulate a field in an attribute table or data source.
Container of fields for a vector layer.