import QtQuick 2.0 import "qrc:/emulator/elements" import "qrc:/const" Item { y: 244 JoystickButtonBind { id: leftJoy // name: "depth" nameCenter: "depthCenter" nameLeft: "depthLeft" nameRight: "depthRight" nameTop: "depthTop" nameBottom: "depthBottom" x: 1481 } Row { spacing: 10 anchors.top: leftJoy.bottom anchors.topMargin: 10 anchors.horizontalCenter: leftJoy.horizontalCenter LightImageBind { nameLed: "depthCenterLed" image: "qrc:/icons/miniButton/zoom.png" } LightImageBind { nameLed: "depthBottomLed" image: "qrc:/icons/miniButton/depth.png" } } JoystickButtonBind { id: rightJoy // name: "focus" nameCenter: "focusCenter" nameLeft: "focusLeft" nameRight: "focusRight" nameTop: "focusTop" nameBottom: "focusBottom" x: 1711 } Row { spacing: 10 anchors.top: rightJoy.bottom anchors.topMargin: 10 anchors.horizontalCenter: rightJoy.horizontalCenter LightImageBind { nameLed: "focusLed" image: "qrc:/icons/miniButton/angle.png" } LightImageBind { nameLed: "focusCenterLed" image: "qrc:/icons/miniButton/focusZone.png" } LightImageBind { nameLed: "focusBottomLed" image: "qrc:/icons/miniButton/focusDepth.png" } } }