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.
44 lines
950 B
44 lines
950 B
import QtQuick 2.0
|
|
import "qrc:/console/elements"
|
|
import "qrc:/ui"
|
|
|
|
Item {
|
|
width: 290 * UI.ratio
|
|
height: 46 * UI.ratio
|
|
x: 1590 * UI.ratio
|
|
y: 510 * UI.ratio
|
|
|
|
Row {
|
|
spacing: 10 * UI.ratio
|
|
|
|
MiniButton {
|
|
name: "zoom"
|
|
image: "qrc:/ui/Images/miniButton/zoom.png"
|
|
}
|
|
|
|
MiniButton {
|
|
name: "depth"
|
|
image: "qrc:/ui/Images/miniButton/depth.png"
|
|
}
|
|
|
|
Item {
|
|
width: 10 * UI.ratio
|
|
height: 46 * UI.ratio
|
|
}
|
|
|
|
MiniButton {
|
|
name: "angle"
|
|
image: "qrc:/ui/Images/miniButton/angle.png"
|
|
}
|
|
|
|
MiniButton {
|
|
name: "focusZone"
|
|
image: "qrc:/ui/Images/miniButton/focusZone.png"
|
|
}
|
|
|
|
MiniButton {
|
|
name: "focusDepth"
|
|
image: "qrc:/ui/Images/miniButton/focusDepth.png"
|
|
}
|
|
}
|
|
}
|
|
|