diff options
author | Geir Vattekar <geir.vattekar@nokia.com> | 2011-01-21 09:10:26 (GMT) |
---|---|---|
committer | Geir Vattekar <geir.vattekar@nokia.com> | 2011-01-21 09:10:26 (GMT) |
commit | 06a29fdb81a9ccb992062acf8ecd36b7e97494a3 (patch) | |
tree | 89fb7cdcd9b27dc1b02df5fb837951cfde4496d9 | |
parent | e0217bf3117b5c75400ff9a55513e0da82d9f579 (diff) | |
download | Qt-06a29fdb81a9ccb992062acf8ecd36b7e97494a3.zip Qt-06a29fdb81a9ccb992062acf8ecd36b7e97494a3.tar.gz Qt-06a29fdb81a9ccb992062acf8ecd36b7e97494a3.tar.bz2 |
Doc: Mentioned the QQ Parenthesis article in two examples
Task-number: QTBUG-15668
-rw-r--r-- | doc/src/examples/codeeditor.qdoc | 4 | ||||
-rw-r--r-- | doc/src/examples/syntaxhighlighter.qdoc | 10 |
2 files changed, 13 insertions, 1 deletions
diff --git a/doc/src/examples/codeeditor.qdoc b/doc/src/examples/codeeditor.qdoc index 23a2fd4..c4c72c0 100644 --- a/doc/src/examples/codeeditor.qdoc +++ b/doc/src/examples/codeeditor.qdoc @@ -190,6 +190,8 @@ used to implement parenthesis matching. In the \c highlightCurrentLine(), the data of the currentBlock() can be fetched with QTextBlock::userData(). Matching parentheses can be - highlighted with an extra selection. + highlighted with an extra selection. The "Matching Parentheses + with QSyntaxHighlighter" article in Qt Quarterly 31 implements + this. You find it here: \l{http://doc.qt.nokia.com/qq/}. */ diff --git a/doc/src/examples/syntaxhighlighter.qdoc b/doc/src/examples/syntaxhighlighter.qdoc index 4018be8..2511900 100644 --- a/doc/src/examples/syntaxhighlighter.qdoc +++ b/doc/src/examples/syntaxhighlighter.qdoc @@ -239,4 +239,14 @@ function. The QSyntaxHighlighter class also provides the \l {QSyntaxHighlighter::document()}{document()} function which returns the currently set document. + + \section1 Other Code Editor Features + + It is possible to implement parenthesis matching with + QSyntaxHighlighter. The "Matching Parentheses with + QSyntaxHighlighter" article in Qt Quarterly 31 + (\l{http://doc.qt.nokia.com/qq/}) implements this. We also have + the \l{Code Editor Example}, which shows how to implement line + numbers and how to highlight the current line. + */ |