status-desktop/ui/app/AppLayouts/Chat/ChatColumn/EmptyChat.qml

51 lines
1.6 KiB
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.13
2020-05-28 00:12:07 +00:00
import "../../../../shared"
import "../../../../imports"
2020-07-09 15:21:45 +00:00
import "../components"
2020-05-28 00:12:07 +00:00
Item {
id: element
2020-05-28 00:12:07 +00:00
Layout.fillHeight: true
Layout.fillWidth: true
Image {
id: walkieTalkieImage
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
source: "../../../../onboarding/img/chat@2x.jpg"
}
StyledText {
2020-07-09 15:21:45 +00:00
text: `<a href="shareKey" style="color:${Style.current.blue};text-decoration:none;">${qsTr("Share your chat key")}</a>` +
` ${qsTr("or")} ` +
`<a href="invite" style="color:${Style.current.blue};text-decoration:none">${qsTr("invite")}</a>`+
` ${qsTr("friends to start messaging in Status")}`
textFormat: Text.RichText
wrapMode: Text.WordWrap
horizontalAlignment: Text.AlignHCenter
anchors.right: walkieTalkieImage.right
anchors.left: walkieTalkieImage.left
anchors.top: walkieTalkieImage.bottom
font.pixelSize: 15
color: Style.current.darkGrey
onLinkActivated: function (linkClicked) {
switch (linkClicked) {
case "shareKey": console.log('Go to share key'); break;
2020-07-09 15:21:45 +00:00
case "invite": inviteFriendsPopup.open(); break;
default: //no idea what was clicked
}
2020-05-28 00:12:07 +00:00
}
}
2020-07-09 15:21:45 +00:00
InviteFriendsPopup {
id: inviteFriendsPopup
}
2020-06-17 19:18:31 +00:00
}
/*##^##
Designer {
D{i:0;autoSize:true;formeditorColor:"#ffffff";formeditorZoom:2;height:480;width:640}
2020-06-17 19:18:31 +00:00
}
##^##*/