qmlfrontend/Page1Form.ui.qml
changeset 14915 a3ad06ac390e
parent 14298 00b56ec8b7df
child 16010 a73b9770467a
equal deleted inserted replaced
14914:9ab78e08a34c 14915:a3ad06ac390e
     3 import QtQuick.Layouts 1.3
     3 import QtQuick.Layouts 1.3
     4 
     4 
     5 import Hedgewars.Engine 1.0
     5 import Hedgewars.Engine 1.0
     6 
     6 
     7 Item {
     7 Item {
       
     8   id: element
     8   property alias button1: button1
     9   property alias button1: button1
     9   property alias previewImage: previewImage
    10   property alias previewImage: previewImage
    10   property alias gameButton: gameButton
    11   property alias gameButton: gameButton
    11   width: 1024
    12   width: 1024
    12   height: 800
    13   height: 800
       
    14   property alias netButton: netButton
    13   property alias tickButton: tickButton
    15   property alias tickButton: tickButton
    14   property alias gameView: gameView
    16   property alias gameView: gameView
    15 
    17 
    16   ColumnLayout {
    18   ColumnLayout {
    17     anchors.fill: parent
    19     anchors.fill: parent
    78 
    80 
    79       Layout.fillWidth: true
    81       Layout.fillWidth: true
    80       Layout.fillHeight: true
    82       Layout.fillHeight: true
    81     }
    83     }
    82   }
    84   }
       
    85 
       
    86   Button {
       
    87     id: netButton
       
    88     text: qsTr("Net")
       
    89     anchors.bottom: parent.bottom
       
    90     anchors.bottomMargin: 8
       
    91     anchors.left: parent.left
       
    92     anchors.leftMargin: 8
       
    93   }
    83 }
    94 }