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.
37 lines
491 B
37 lines
491 B
3 years ago
|
import QtQuick 2.0
|
||
|
import QtGraphicalEffects 1.13
|
||
|
|
||
|
import "qrc:/emulator/items"
|
||
|
import "qrc:/theme"
|
||
|
import "qrc:/const"
|
||
|
|
||
|
Item {
|
||
|
width: Const.windowWidth
|
||
|
height: Const.windowHeight
|
||
|
|
||
|
Setting {
|
||
|
anchors.horizontalCenter: topLeft.horizontalCenter
|
||
|
anchors.top: topLeft.bottom
|
||
|
anchors.topMargin: 120
|
||
|
}
|
||
|
|
||
|
TopLeft {
|
||
|
id: topLeft
|
||
|
}
|
||
|
|
||
|
TopRight {}
|
||
|
|
||
|
BottomRight {}
|
||
|
|
||
|
CurveButtons {}
|
||
|
|
||
|
Joysticks {}
|
||
|
|
||
|
Encoders {}
|
||
|
|
||
|
JoystickCouple {}
|
||
|
|
||
|
TrackballGroup {}
|
||
|
|
||
|
}
|