diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-08-18 04:51:33 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-08-18 04:51:33 (GMT) |
commit | e03276273b77006df4fe7bad4361998a8f894466 (patch) | |
tree | db7256b73d50effaf8ff4ee373826ed8cfd15643 /src/declarative/fx/qfxtext.cpp | |
parent | 563dba9c0a672b6a326767bbaa189cb01d3f9852 (diff) | |
download | Qt-e03276273b77006df4fe7bad4361998a8f894466.zip Qt-e03276273b77006df4fe7bad4361998a8f894466.tar.gz Qt-e03276273b77006df4fe7bad4361998a8f894466.tar.bz2 |
Some Text cleanup.
Diffstat (limited to 'src/declarative/fx/qfxtext.cpp')
-rw-r--r-- | src/declarative/fx/qfxtext.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/declarative/fx/qfxtext.cpp b/src/declarative/fx/qfxtext.cpp index 11fef69..216374c 100644 --- a/src/declarative/fx/qfxtext.cpp +++ b/src/declarative/fx/qfxtext.cpp @@ -480,13 +480,6 @@ void QFxText::setElideMode(Qt::TextElideMode mode) d->updateSize(); } - -QString QFxText::activeLink() const -{ - Q_D(const QFxText); - return d->activeLink; -} - void QFxText::geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry) { @@ -854,6 +847,12 @@ void QFxText::mousePressEvent(QGraphicsSceneMouseEvent *event) } /*! + \qmlsignal Text::linkActivated(link) + + This handler is called when the user clicks on a link embedded in the text. +*/ + +/*! \overload Handles the given mouse \a event. */ |