mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-18 19:31:37 -05:00
34 lines
668 B
QML
34 lines
668 B
QML
|
import QtQuick 2.2
|
||
|
import "."
|
||
|
|
||
|
Item {
|
||
|
id: item
|
||
|
width: parent.width
|
||
|
height: 50
|
||
|
|
||
|
Column {
|
||
|
Text { text: '<b>' + model.GroupName + '</b>' }
|
||
|
Text { text: GroupId }
|
||
|
}
|
||
|
|
||
|
MouseArea {
|
||
|
hoverEnabled: false
|
||
|
anchors.fill: parent
|
||
|
onClicked: {
|
||
|
item.ListView.view.currentIndex = index
|
||
|
//channelMsgModel.updateEntries(model.GroupId)
|
||
|
//console.log("Clicked on Channel GroupId: " + model.GroupId)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Rectangle {
|
||
|
width: parent.width
|
||
|
height: 1
|
||
|
color: "#AAAAAA"
|
||
|
anchors.left: parent.left
|
||
|
anchors.top: parent.bottom
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|