QGIS API Documentation 3.41.0-Master (45a0abf3bec)
Loading...
Searching...
No Matches
qgscodeeditorpython.h
Go to the documentation of this file.
1/***************************************************************************
2 qgscodeeditorpython.h - A Python editor based on QScintilla
3 --------------------------------------
4 Date : 06-Oct-2013
5 Copyright : (C) 2013 by Salvatore Larosa
6 Email : lrssvtml (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#ifndef QGSCODEEDITORPYTHON_H
17#define QGSCODEEDITORPYTHON_H
18
19#include "qgscodeeditor.h"
20#include "qgis_sip.h"
21#include "qgis_gui.h"
22#include <Qsci/qscilexerpython.h>
23
26template<class T> class QgsSettingsEntryEnumFlag;
27
28SIP_IF_MODULE( HAVE_QSCI_SIP )
29
30#ifndef SIP_RUN
32class QgsQsciLexerPython : public QsciLexerPython
33{
34 Q_OBJECT
35 public:
36
37 QgsQsciLexerPython( QObject *parent = nullptr );
38
39 const char *keywords( int set ) const override;
40
41};
43#endif
44
51class GUI_EXPORT QgsCodeEditorPython : public QgsCodeEditor
52{
53 Q_OBJECT
54
55 public:
56
57#ifndef SIP_RUN
59 static inline QgsSettingsTreeNode *sTreePythonCodeEditor = QgsCodeEditor::sTreeCodeEditor->createChildNode( QStringLiteral( "python" ) );
60 static const QgsSettingsEntryString *settingCodeFormatter;
61 static const QgsSettingsEntryInteger *settingMaxLineLength;
62 static const QgsSettingsEntryBool *settingSortImports;
63 static const QgsSettingsEntryInteger *settingAutopep8Level;
64 static const QgsSettingsEntryBool *settingBlackNormalizeQuotes;
65 static const QgsSettingsEntryString *settingExternalPythonEditorCommand;
66 static const QgsSettingsEntryEnumFlag< Qgis::DocumentationBrowser > *settingContextHelpBrowser;
68#endif
69
78 QgsCodeEditorPython( QWidget *parent SIP_TRANSFERTHIS = nullptr, const QList<QString> &filenames = QList<QString>(),
80
81 Qgis::ScriptLanguage language() const override;
83
88 void loadAPIs( const QList<QString> &filenames );
89
93 bool loadScript( const QString &script );
94
100 bool isCursorInsideStringLiteralOrComment() const;
101
107 QString characterBeforeCursor() const;
108
114 QString characterAfterCursor() const;
115
121 void updateCapabilities();
122
123 bool checkSyntax() override;
124
125 public slots:
126
132 void searchSelectedTextInPyQGISDocs();
133
139 virtual void showApiDocumentation( const QString &item );
140
146 void toggleComment() override;
147
148 protected:
149
150 void initializeLexer() override;
151 virtual void keyPressEvent( QKeyEvent *event ) override;
152 QString reformatCodeString( const QString &string ) override;
153 void populateContextMenu( QMenu *menu ) override;
154
155 protected slots:
156
162 void autoComplete();
163
164 private:
165
166 QList<QString> mAPISFilesList;
167 QString mPapFile;
168
170
171 static const QMap<QString, QString> sCompletionPairs;
172
173 // Only used for selected text
174 static const QStringList sCompletionSingleCharacters;
175
176};
177
178#endif
ScriptLanguage
Scripting languages.
Definition qgis.h:4181
QFlags< ScriptLanguageCapability > ScriptLanguageCapabilities
Script language capabilities.
Definition qgis.h:4216
A Python editor based on QScintilla2.
A text editor based on QScintilla2.
Mode
Code editor modes.
@ ScriptEditor
Standard mode, allows for display and edit of entire scripts.
virtual void toggleComment()
Toggle comment for the selected text.
void keyPressEvent(QKeyEvent *event) override
virtual void populateContextMenu(QMenu *menu)
Called when the context menu for the widget is about to be shown, after it has been fully populated w...
QFlags< Flag > Flags
Flags controlling behavior of code editor.
static QgsSettingsTreeNode * sTreeCodeEditor
virtual Qgis::ScriptLanguageCapabilities languageCapabilities() const
Returns the associated scripting language capabilities.
virtual void initializeLexer()
Called when the dialect specific code lexer needs to be initialized (or reinitialized).
@ CodeFolding
Indicates that code folding should be enabled for the editor.
virtual Qgis::ScriptLanguage language() const
Returns the associated scripting language.
virtual QString reformatCodeString(const QString &string)
Applies code reformatting to a string and returns the result.
virtual bool checkSyntax()
Applies syntax checking to the editor.
A boolean settings entry.
A template class for enum and flag settings entry.
An integer settings entry.
A string settings entry.
QgsSettingsTreeNode is a tree node for the settings tree to help organizing and introspecting the tre...
QgsSettingsTreeNode * createChildNode(const QString &key)
Creates a normal tree node It will return the existing child node if it exists at the given key.
#define SIP_IF_MODULE(condition)
Definition qgis_sip.h:28
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53