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.
63 lines
994 B
63 lines
994 B
import QtQuick 2.0
|
|
|
|
import "qrc:/emulator/elements"
|
|
import "qrc:/const"
|
|
|
|
Item {
|
|
y: 244
|
|
|
|
JoystickButtonBind {
|
|
id: leftJoy
|
|
name: "depth"
|
|
x: 1481
|
|
}
|
|
|
|
Row {
|
|
spacing: 10
|
|
anchors.top: leftJoy.bottom
|
|
anchors.topMargin: 10
|
|
anchors.horizontalCenter: leftJoy.horizontalCenter
|
|
|
|
LightImageBind {
|
|
name: "zoom"
|
|
image: "qrc:/icons/miniButton/zoom.png"
|
|
}
|
|
|
|
LightImageBind {
|
|
name: "depth"
|
|
image: "qrc:/icons/miniButton/depth.png"
|
|
colorMode: 2
|
|
}
|
|
}
|
|
|
|
JoystickButtonBind {
|
|
id: rightJoy
|
|
name: "focus"
|
|
x: 1711
|
|
}
|
|
|
|
Row {
|
|
spacing: 10
|
|
anchors.top: rightJoy.bottom
|
|
anchors.topMargin: 10
|
|
anchors.horizontalCenter: rightJoy.horizontalCenter
|
|
|
|
LightImageBind {
|
|
name: "angle"
|
|
image: "qrc:/icons/miniButton/angle.png"
|
|
colorMode: 1
|
|
}
|
|
|
|
LightImageBind {
|
|
name: "focusZone"
|
|
image: "qrc:/icons/miniButton/focusZone.png"
|
|
colorMode: 2
|
|
}
|
|
|
|
LightImageBind {
|
|
name: "focusDepth"
|
|
image: "qrc:/icons/miniButton/focusDepth.png"
|
|
colorMode: 3
|
|
}
|
|
}
|
|
}
|
|
|