qmlFrontend/qml/qmlFrontend/main.qml
branchqmlfrontend
changeset 10402 3313336c1ee0
child 10420 02c573d19224
equal deleted inserted replaced
10401:c31276023295 10402:3313336c1ee0
       
     1 import QtQuick 2.0
       
     2 import Hedgewars.Engine 1.0
       
     3 
       
     4 Rectangle {
       
     5     width: 400
       
     6     height: 400
       
     7 
       
     8     HWButton {
       
     9         id: hwbutton1
       
    10         x: 8
       
    11         y: 66
       
    12         width: 166
       
    13         height: 158
       
    14 
       
    15         onClicked: {
       
    16             HWEngine.run()
       
    17         }
       
    18     }
       
    19 
       
    20     HWButton {
       
    21         id: hwbutton2
       
    22         x: 192
       
    23         y: 66
       
    24         width: 200
       
    25         height: 139
       
    26     }
       
    27 }