import QtQuick 2.0 import QtQuick.Controls 1.2 import "qrc:/qml/genericqml" Rectangle{ color:"white" width:infoBoxText.contentWidth height:infoBoxText.contentHeight Text{id:infoBoxText anchors.top:closeButton.bottom anchors.topMargin: mm textFormat: Text.RichText wrapMode: Text.Wrap text: "Friendiqa v0.003
Licensed under GPL 3
"+ "Profile https://freunde.ma-nic.de/profile/friendiqa
"+ "Sourcecode: https://github.com/LubuWest/Friendica
"+ "C++ code by Fabio
"+ "QML and Javascript code by Marco
"+ "Qt Framework www.qt.io
"+ "Icons by FontAwesome
"+ "Folder Icon by KDE Breeze Icons" onLinkActivated:{ Qt.openUrlExternally(link)} } BlueButton{ id:closeButton anchors.top: parent.top anchors.topMargin: 1*mm anchors.right: parent.right anchors.rightMargin: 1*mm text: "\uf057" //qsTr("Close") onClicked:{configStack.pop()} } }