removed the folding ribbon from the default configuration, instead

turned a new block highlighting mechanism on.
This commit is contained in:
mae
2009-04-23 17:28:53 +02:00
parent f933f52111
commit a71436649c
4 changed files with 150 additions and 19 deletions

View File

@@ -167,6 +167,9 @@ public:
static bool findPreviousOpenParenthesis(QTextCursor *cursor, bool select = false);
static bool findNextClosingParenthesis(QTextCursor *cursor, bool select = false);
static bool findPreviousBlockOpenParenthesis(QTextCursor *cursor);
static bool findNextBlockClosingParenthesis(QTextCursor *cursor);
private:
TextMarks m_marks;
@@ -464,6 +467,7 @@ private:
// parentheses matcher
private slots:
void _q_matchParentheses();
void _q_highlightBlocks();
void slotSelectionChanged();
};