aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/text/onLinkActivated.qml
blob: 25223a5d554a939cd6b9819ea6e13c2277bc0197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick

Rectangle {
    width: 700; height: 400

//![0]
    Text {
            textFormat: Text.RichText
            text: "See the <a href=\"http://qt-project.org\">Qt Project website</a>."
            onLinkActivated: (link)=> console.log(link + " link activated")
    }
//![0]

}