aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/guiSQLiteStudio/sqleditor.h
diff options
context:
space:
mode:
Diffstat (limited to 'SQLiteStudio3/guiSQLiteStudio/sqleditor.h')
-rw-r--r--SQLiteStudio3/guiSQLiteStudio/sqleditor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/SQLiteStudio3/guiSQLiteStudio/sqleditor.h b/SQLiteStudio3/guiSQLiteStudio/sqleditor.h
index c56492c..ca79a1c 100644
--- a/SQLiteStudio3/guiSQLiteStudio/sqleditor.h
+++ b/SQLiteStudio3/guiSQLiteStudio/sqleditor.h
@@ -165,13 +165,14 @@ class GUI_API_EXPORT SqlEditor : public QPlainTextEdit, public ExtActionContaine
void refreshValidObjects();
void checkForSyntaxErrors();
void checkForValidObjects();
- Dialect getDialect();
void setObjectLinks(bool enabled);
void addDbObject(int from, int to, const QString& dbName);
void clearDbObjects();
void lineNumberAreaPaintEvent(QPaintEvent* event);
int lineNumberAreaWidth();
- void highlightParenthesis();
+ void highlightParenthesis(QList<QTextEdit::ExtraSelection>& selections);
+ void highlightCurrentLine(QList<QTextEdit::ExtraSelection>& selections);
+ void highlightCurrentCursorContext();
const TextBlockData::Parenthesis* matchParenthesis(QList<const TextBlockData::Parenthesis*> parList, const TextBlockData::Parenthesis* thePar);
void markMatchedParenthesis(int pos1, int pos2, QList<QTextEdit::ExtraSelection>& selections);
void doBackspace(int repeats = 1);
@@ -269,7 +270,6 @@ class GUI_API_EXPORT SqlEditor : public QPlainTextEdit, public ExtActionContaine
void parseContents();
void scheduleQueryParser(bool force = false);
void updateLineNumberAreaWidth();
- void highlightCurrentLine();
void updateLineNumberArea(const QRect&rect, int dy);
void cursorMoved();
void checkContentSize();