|
|
|
import QtQuick 2.0
|
|
|
|
import QtGraphicalEffects 1.13
|
|
|
|
|
|
|
|
import "qrc:/emulator/items"
|
|
|
|
import "qrc:/theme"
|
|
|
|
import "qrc:/const"
|
|
|
|
import "qrc:/emulator/elements"
|
|
|
|
|
|
|
|
|
|
|
|
Item {
|
|
|
|
width: Const.windowWidth
|
|
|
|
height: Const.windowHeight
|
|
|
|
|
|
|
|
Setting {
|
|
|
|
anchors.horizontalCenter: topLeft.horizontalCenter
|
|
|
|
anchors.top: topLeft.bottom
|
|
|
|
anchors.topMargin: 120
|
|
|
|
}
|
|
|
|
TopLeftTop {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
TopLeft {
|
|
|
|
id: topLeft
|
|
|
|
}
|
|
|
|
|
|
|
|
TopRight {}
|
|
|
|
|
|
|
|
BottomRight {}
|
|
|
|
|
|
|
|
CurveButtons {}
|
|
|
|
|
|
|
|
Joysticks {}
|
|
|
|
|
|
|
|
Encoders {}
|
|
|
|
|
|
|
|
JoystickCouple {}
|
|
|
|
|
|
|
|
TrackballGroup {}
|
|
|
|
|
|
|
|
|
|
|
|
ModeButtonBind {
|
|
|
|
id: frameRate
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: 20
|
|
|
|
anchors.rightMargin: 30
|
|
|
|
|
|
|
|
name: "frameRate"
|
|
|
|
nameLed: "frameRateLed"
|
|
|
|
nameIncrease: "frameRateRight"
|
|
|
|
nameDecrease: "frameRateLeft"
|
|
|
|
image: ""
|
|
|
|
Text {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
text: "FPS"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|