2019-03-22 14:28:14 +11:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
import QtQuick.Layouts 1.4
|
|
|
|
|
|
|
|
ColumnLayout {
|
2019-03-26 18:19:55 +11:00
|
|
|
property var user: null
|
2019-03-22 14:28:14 +11:00
|
|
|
property var room: null
|
|
|
|
|
|
|
|
id: chatPage
|
|
|
|
spacing: 0
|
|
|
|
onFocusChanged: sendBox.setFocus()
|
|
|
|
|
|
|
|
RoomHeader {}
|
2019-03-26 20:52:43 +11:00
|
|
|
MessageList {}
|
2019-03-22 14:28:14 +11:00
|
|
|
SendBox { id: sendBox }
|
|
|
|
}
|