-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutDialog.qml
38 lines (36 loc) · 1016 Bytes
/
AboutDialog.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import QtQuick 2.12
import QtQuick.Controls 2.12
Dialog {
height: icol.height+50
width: icol.width+50
anchors.centerIn: parent
dim: true
Column{
id: icol
spacing: 0
Image{
width: 256
height: 256
source: "qrc:/res/bitmap.png"
anchors.horizontalCenter: parent.horizontalCenter
}
Item{
width: 20
height: 20
}
Label{
text: "Payment File Editor©\nBy: Baadraan Universal Trading Co\nCopyright (c) 2019 Mehrdad Shobeyri"
}
Label{
color: "midnightblue"
text: "https://github.com/mshobeyri/PaymentFilesEditor.git"
font.underline: imareal.containsMouse
MouseArea{
id: imareal
hoverEnabled: true
anchors.fill: parent
onClicked: Qt.openUrlExternally("https://github.com/mshobeyri/PaymentFilesEditor.git")
}
}
}
}