2020-05-13 17:27:06 +00: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 19:44:45 +00:00
|
|
|
import "../../../imports"
|
2020-05-25 20:34:26 +00:00
|
|
|
import "."
|
2020-05-13 17:27:06 +00:00
|
|
|
|
|
|
|
SplitView {
|
|
|
|
id: chatView
|
|
|
|
x: 0
|
|
|
|
y: 0
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
// Those anchors show a warning too, but whithout them, there is a gap on the right
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 0
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
|
2020-05-25 20:34:26 +00:00
|
|
|
ContactsColumn {
|
2020-05-13 17:27:06 +00:00
|
|
|
id: contactsColumn
|
|
|
|
}
|
|
|
|
|
2020-05-25 20:34:26 +00:00
|
|
|
ChatColumn {
|
2020-05-13 17:27:06 +00:00
|
|
|
id: chatColumn
|
|
|
|
}
|
|
|
|
}
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-13 17:27:06 +00:00
|
|
|
/*##^##
|
|
|
|
Designer {
|
2020-05-20 19:10:09 +00:00
|
|
|
D{i:0;formeditorZoom:0.5;height:770;width:1152}
|
2020-05-13 17:27:06 +00:00
|
|
|
}
|
|
|
|
##^##*/
|