-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBugReportDialog.qml
More file actions
123 lines (100 loc) · 3.08 KB
/
BugReportDialog.qml
File metadata and controls
123 lines (100 loc) · 3.08 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
import QtQuick
import QtQuick.Layouts
import QtQuick.LegacyControls
TibiaDialog {
id: bugReportDialog
caption: qsTrId("bugreport_caption")
width: 300
property var controller: null;
property alias classifications: classificationTable.model
property int preselectedClassificationIndex: controller != null ? controller.preselectedClassificationIndex : -1;
onPreselectedClassificationIndexChanged: {
if (preselectedClassificationIndex > -1 && preselectedClassificationIndex < classifications.length) {
classificationTable.selection.clear();
classificationTable.selection.select(preselectedClassificationIndex, preselectedClassificationIndex);
classificationTable.positionViewAtRow(preselectedClassificationIndex, ListView.Contain);
}
}
onReturnPressedFunction: function() {
if (sendButton.enabled) {
sendButton.clicked();
}
}
onCancelPressedFunction: function() {
cancelButton.clicked()
}
initialFocusItem: commentTextArea
ColumnLayout {
spacing: 0
anchors {
top: parent.top;
left: parent.left;
right: parent.right;
}
TibiaText {
Layout.fillWidth: true
Layout.bottomMargin: TibiaStyle.marginRelated
wrapMode: Text.Wrap
text: qsTrId("bugreport_description")
}
TibiaTableView {
id: classificationTable
Layout.fillWidth: true
Layout.preferredHeight: 50
model: controller != null ? controller.classifications : []
KeyNavigation.tab: commentTextArea
TableViewColumn { }
}
TibiaTextArea {
id: commentTextArea
KeyNavigation.tab: classificationTable
Layout.fillWidth: true
Layout.preferredHeight: 150
maximumLength: 1024
wrapMode: TextEdit.Wrap
}
TibiaHorizontalSeparator {
Layout.fillWidth: true
Layout.topMargin: TibiaStyle.marginUnrelated
Layout.bottomMargin: TibiaStyle.marginUnrelated
} //TibiaHorizontalSeparator
RowLayout {
spacing: TibiaStyle.marginRelated
TibiaText {
visible: notAllowedInfo.visible
styleType: "MessageWarning"
text: qsTrId("bugreport_not_allowed")
} //TibiaText
TibiaGuiHelp {
id: notAllowedInfo
color: "orange"
text: controller != null ? controller.notAllowedReason : ""
visible: text.length > 0
} //TibiaGuiHelp
Item {
Layout.fillWidth: true
} //Item
TibiaButton {
id: sendButton
enabled: commentTextArea.length > 0 && !notAllowedInfo.visible
text: qsTrId("send")
onClicked: {
if (controller != null) {
classificationTable.selection.forEach(function (RowIndex) {
controller.requestSendBugReport(RowIndex, commentTextArea.text);
});
}
} //onClicked
} // TibiaButton
TibiaButton {
id: cancelButton
text: qsTrId("cancel")
onClicked: {
if (controller != null) {
controller.requestClose();
}
} //onClicked
} // TibiaButton
} // RowLayout
} // ColumnLayout
} // TibiaDialog