qmlFrontend/qml/qmlFrontend/First.qml
author unc0rr
Mon, 03 Nov 2014 00:01:02 +0300
branchqmlfrontend
changeset 10452 03519fd9f98d
parent 10422 4cf23d4c7624
child 10896 5a74923120d5
permissions -rw-r--r--
Show team color in teams list widget, also allow to change it on mouse click

import QtQuick 2.0

Rectangle {
    HWButton {
        id: btnLocalGame
        x: 8
        y: 80
        width: 166
        height: 166

        onClicked: pages.currentPage = "LocalGame"
    }

    HWButton {
        id: btnNetwork
        x: 192
        y: 80
        width: 166
        height: 166
    }

    HWButton {
        id: btnAbout
        x: 100
        y: 16
        width: 200
        height: 50
    }
}