|
| QgsCodeEditorSQL (QWidget *parent=nullptr) |
| Constructor for QgsCodeEditorSQL. More...
|
|
virtual | ~QgsCodeEditorSQL () |
|
QStringList | extraKeywords () const |
| Returns the extra keywords. More...
|
|
QStringList | fieldNames () const |
| Returns field names from the lexer API. More...
|
|
void | setExtraKeywords (const QStringList &extraKeywords) |
| Set extra keywords to extraKeywords. More...
|
|
void | setFieldNames (const QStringList &fieldNames) |
| Set field names to fieldNames to be added to the lexer API. More...
|
|
void | setFields (const QgsFields &fields) |
| Set field names to be added to the lexer API. More...
|
|
| QgsCodeEditor (QWidget *parent=nullptr, const QString &title=QString(), bool folding=false, bool margin=false, QgsCodeEditor::Flags flags=QgsCodeEditor::Flags()) |
| Flags controlling behavior of code editor. More...
|
|
void | addWarning (int lineNumber, const QString &warning) |
| Adds a warning message and indicator to the specified a lineNumber. More...
|
|
void | clearWarnings () |
| Clears all warning messages from the editor. More...
|
|
bool | foldingVisible () |
| Returns true if the folding controls are visible in the editor. More...
|
|
void | insertText (const QString &text) |
| Insert text at cursor position, or replace any selected text if user has made a selection. More...
|
|
bool | isCursorOnLastLine () const |
| Returns true if the cursor is on the last line of the document. More...
|
|
bool | lineNumbersVisible () const |
| Returns whether line numbers are visible in the editor. More...
|
|
Q_DECL_DEPRECATED bool | marginVisible () |
| Returns whether margins are in a visible state. More...
|
|
void | setCustomAppearance (const QString &scheme=QString(), const QMap< QgsCodeEditorColorScheme::ColorRole, QColor > &customColors=QMap< QgsCodeEditorColorScheme::ColorRole, QColor >(), const QString &fontFamily=QString(), int fontSize=0) |
| Sets a custom appearance for the widget, disconnecting it from using the standard appearance taken from QSettings. More...
|
|
void | setFoldingVisible (bool folding) |
| Set whether the folding controls are visible in the editor. More...
|
|
void | setLineNumbersVisible (bool visible) |
| Sets whether line numbers should be visible in the editor. More...
|
|
Q_DECL_DEPRECATED void | setMarginVisible (bool margin) |
| Set margin visible state. More...
|
|
void | setTitle (const QString &title) |
| Set the widget title. More...
|
|