blob: 23b5a3028d10abb6d6f695b56a707d4ed2232c07 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Controls.Material 2.12
import QtQuick.Layouts 1.12
Page {
id: page
height: ticketDescriptionLayout.height
property alias creatorText: creatorText
property alias ticketDescription: ticketDescription
property alias ticketDate: ticketDate
ColumnLayout {
id: ticketDescriptionLayout
anchors.right: parent.right
anchors.rightMargin: 0
anchors.left: parent.left
anchors.leftMargin: 0
spacing: 8
RowLayout {
Layout.topMargin: 8
spacing: 8
Text {
id: creatorText
text: qsTr("Username")
Layout.rightMargin: 0
Layout.fillWidth: true
Layout.bottomMargin: 0
Layout.topMargin: 0
font.weight: Font.Medium
font.pixelSize: 14
font.family: "Work Sans"
Layout.leftMargin: 16
}
Text {
id: ticketDate
text: qsTr("2017-07-25 15:05:30")
horizontalAlignment: Text.AlignRight
Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
Layout.bottomMargin: 0
Layout.topMargin: 0
Layout.fillWidth: false
Layout.leftMargin: 0
Layout.rightMargin: 16
font.pixelSize: 12
font.family: "Work Sans"
color: "#8a000000"
}
}
Text {
id: ticketDescription
text: qsTr("You may put ticket activity description here. Such as editing, commenting, or updating the ticket status.")
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
Layout.leftMargin: 16
Layout.rightMargin: 16
Layout.bottomMargin: 8
Layout.topMargin: 0
Layout.fillWidth: true
font.pixelSize: 14
font.family: "Work Sans"
width: ticketDescription.width
color: "#000000"
}
}
}
|