2020-05-13 13:27:06 -04:00
|
|
|
import QtQuick 2.3
|
|
|
|
import QtQuick.Controls 1.3
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import Qt.labs.platform 1.1
|
2020-05-19 14:44:45 -05:00
|
|
|
import "../../../imports"
|
2020-05-25 16:34:26 -04:00
|
|
|
import "."
|
2020-05-13 13:27:06 -04:00
|
|
|
|
|
|
|
SplitView {
|
|
|
|
id: chatView
|
|
|
|
x: 0
|
|
|
|
y: 0
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
2020-05-27 13:10:50 -04:00
|
|
|
handleDelegate: Rectangle {
|
|
|
|
implicitWidth: 1
|
|
|
|
implicitHeight: 4
|
|
|
|
color: Theme.grey
|
|
|
|
}
|
|
|
|
|
2020-05-25 16:34:26 -04:00
|
|
|
ContactsColumn {
|
2020-05-13 13:27:06 -04:00
|
|
|
id: contactsColumn
|
|
|
|
}
|
|
|
|
|
2020-05-25 16:34:26 -04:00
|
|
|
ChatColumn {
|
2020-05-13 13:27:06 -04:00
|
|
|
id: chatColumn
|
2020-05-26 14:16:07 -04:00
|
|
|
chatGroupsListViewCount: contactsColumn.chatGroupsListViewCount
|
2020-05-13 13:27:06 -04:00
|
|
|
}
|
|
|
|
}
|
2020-05-25 16:34:26 -04:00
|
|
|
|
2020-05-13 13:27:06 -04:00
|
|
|
/*##^##
|
|
|
|
Designer {
|
2020-05-20 15:10:09 -04:00
|
|
|
D{i:0;formeditorZoom:0.5;height:770;width:1152}
|
2020-05-13 13:27:06 -04:00
|
|
|
}
|
|
|
|
##^##*/
|