forked from Sepanta/console-emulator
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.2 KiB
70 lines
1.2 KiB
3 years ago
|
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"
|
||
|
}
|
||
|
}
|
||
|
}
|