qmlFrontend/qml/qmlFrontend/LobbyPage.qml
author unc0rr
Thu, 19 Nov 2015 23:04:53 +0300
branchqmlfrontend
changeset 11415 05cf35103206
child 11418 091149424aa4
permissions -rw-r--r--
Lobby page with chat widget(readonly)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11415
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
     1
import QtQuick 2.0
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
     2
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
     3
Rectangle {
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
     4
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
     5
    Chat {
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
     6
        x: 0;
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
     7
        y: 100;
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
     8
        width: parent.width;
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
     9
        height: parent.height - y;
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
    10
    }
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
    11
}
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
    12
05cf35103206 Lobby page with chat widget(readonly)
unc0rr
parents:
diff changeset
    13