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.
59 lines
1.0 KiB
59 lines
1.0 KiB
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"
|
|
}
|
|
}
|
|
}
|
|
|