mirror of
https://github.com/muesli/telephant
synced 2024-11-22 19:33:06 +00:00
74 lines
2.5 KiB
QML
74 lines
2.5 KiB
QML
import QtQuick 2.4
|
|
import QtQuick.Controls 2.1
|
|
import QtQuick.Controls.Material 2.1
|
|
import QtQuick.Layouts 1.3
|
|
|
|
Popup {
|
|
modal: true
|
|
focus: true
|
|
|
|
contentHeight: aboutColumn.height
|
|
|
|
Column {
|
|
id: aboutColumn
|
|
spacing: 20
|
|
|
|
Label {
|
|
text: qsTr("About")
|
|
font.bold: true
|
|
}
|
|
|
|
RowLayout {
|
|
ColumnLayout {
|
|
Label {
|
|
text: "<a style=\"text-decoration: none; color: white;\" href=\"https://mastodon.social/@telephant\">Telephant!</a>"
|
|
textFormat: Text.RichText
|
|
wrapMode: Label.Wrap
|
|
font.pointSize: 14
|
|
onLinkActivated: Qt.openUrlExternally(link)
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
acceptedButtons: Qt.NoButton // we don't want to eat clicks on the Label
|
|
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
}
|
|
}
|
|
|
|
Label {
|
|
text: "Version 0.1"
|
|
textFormat: Text.RichText
|
|
wrapMode: Label.Wrap
|
|
font.pointSize: 12
|
|
onLinkActivated: Qt.openUrlExternally(link)
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
acceptedButtons: Qt.NoButton // we don't want to eat clicks on the Label
|
|
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
}
|
|
}
|
|
}
|
|
|
|
Image {
|
|
smooth: true
|
|
source: "images/telephant_logo.png"
|
|
sourceSize.height: 64
|
|
}
|
|
}
|
|
|
|
Label {
|
|
width: aboutDialog.availableWidth
|
|
text: qsTr("Telephant! is a light-weight but modern social media client")
|
|
textFormat: Text.RichText
|
|
wrapMode: Label.Wrap
|
|
font.pointSize: 12
|
|
onLinkActivated: Qt.openUrlExternally(link)
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
acceptedButtons: Qt.NoButton // we don't want to eat clicks on the Label
|
|
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
}
|
|
}
|
|
}
|
|
}
|