2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2020-05-27 21:28:25 +00:00
|
|
|
import "../../../../imports"
|
2020-06-19 18:06:58 +00:00
|
|
|
import "../../../../shared"
|
2020-06-13 13:49:20 +00:00
|
|
|
import "./Contacts"
|
2020-05-27 21:28:25 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: contactsContainer
|
|
|
|
width: 200
|
|
|
|
height: 200
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-27 21:28:25 +00:00
|
|
|
id: element2
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Contacts"
|
|
|
|
text: qsTrId("contacts")
|
2020-05-27 21:28:25 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 24
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 24
|
|
|
|
font.weight: Font.Bold
|
|
|
|
font.pixelSize: 20
|
|
|
|
}
|
|
|
|
|
2020-06-13 13:49:20 +00:00
|
|
|
ContactList {
|
2020-05-27 21:28:25 +00:00
|
|
|
id: contactListView
|
2020-06-13 13:49:20 +00:00
|
|
|
contacts: profileModel.contactList
|
2020-06-16 18:04:56 +00:00
|
|
|
selectable: false
|
2020-05-27 21:28:25 +00:00
|
|
|
}
|
2020-06-13 13:49:20 +00:00
|
|
|
}
|
2020-06-16 18:04:56 +00:00
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;width:600}
|
|
|
|
}
|
|
|
|
##^##*/
|