import QtQuick 2.0 import "qrc:/emulator/elements" import "qrc:/const" Item { // width: 820 // height: 80 width: childrenRect.width height: childrenRect.height anchors.horizontalCenter: parent.horizontalCenter // x: 550 y: 50 Row { spacing: 64 JoystickButtonBind { name: "joystick1" } JoystickButtonBind { name: "joystick2" } JoystickButtonBind { name: "joystick3" } JoystickButtonBind { name: "joystick4" } JoystickButtonBind { name: "joystick5" } } }