You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.5 KiB
69 lines
1.5 KiB
3 years ago
|
import QtQuick 2.12
|
||
|
import QtQuick.Layouts 1.12
|
||
|
|
||
|
RowLayout {
|
||
|
|
||
|
Item {
|
||
|
Layout.minimumWidth: 15
|
||
|
Layout.preferredWidth: 15
|
||
|
}
|
||
|
C_Title {
|
||
|
id: src
|
||
|
Layout.minimumWidth: 200
|
||
|
Layout.preferredWidth: 200
|
||
|
text: "Source"
|
||
|
onClicked: {
|
||
|
des.sortState = 0
|
||
|
mess.sortState = 0
|
||
|
dur.sortState = 0
|
||
|
setSortState()
|
||
|
}
|
||
|
}
|
||
|
C_Title {
|
||
|
id: des
|
||
|
Layout.minimumWidth: 200
|
||
|
Layout.preferredWidth: 200
|
||
|
text: "Destination"
|
||
|
onClicked: {
|
||
|
src.sortState = 0
|
||
|
mess.sortState = 0
|
||
|
dur.sortState = 0
|
||
|
setSortState()
|
||
|
}
|
||
|
}
|
||
|
C_Title {
|
||
|
id: mess
|
||
|
Layout.minimumWidth: 200
|
||
|
Layout.preferredWidth: 200
|
||
|
Layout.fillWidth: true
|
||
|
text: "Message"
|
||
|
onClicked: {
|
||
|
src.sortState = 0
|
||
|
des.sortState = 0
|
||
|
dur.sortState = 0
|
||
|
setSortState()
|
||
|
}
|
||
|
}
|
||
|
C_Title {
|
||
|
id: dur
|
||
|
Layout.minimumWidth: 100
|
||
|
Layout.preferredWidth: 100
|
||
|
text: "Duration"
|
||
|
onClicked: {
|
||
|
src.sortState = 0
|
||
|
des.sortState = 0
|
||
|
mess.sortState = 0
|
||
|
setSortState()
|
||
|
}
|
||
|
}
|
||
|
Item {
|
||
|
Layout.minimumWidth: 15
|
||
|
Layout.preferredWidth: 15
|
||
|
}
|
||
|
|
||
|
function setSortState() {
|
||
|
cpp.sortsChanged(src.sortState, des.sortState, mess.sortState,
|
||
|
dur.sortState)
|
||
|
}
|
||
|
}
|