2018-07-06 03:07:05 +00:00
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
|
|
|
|
import AppModel 1.0
|
|
|
|
|
2018-07-06 05:08:55 +00:00
|
|
|
import ComputerManager 1.0
|
|
|
|
|
2018-07-06 03:07:05 +00:00
|
|
|
GridView {
|
|
|
|
property int computerIndex
|
2018-07-07 23:30:26 +00:00
|
|
|
property AppModel appModel : createModel()
|
2018-07-06 03:07:05 +00:00
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.leftMargin: 5
|
|
|
|
anchors.topMargin: 5
|
|
|
|
anchors.rightMargin: 5
|
|
|
|
anchors.bottomMargin: 5
|
|
|
|
cellWidth: 225; cellHeight: 350;
|
|
|
|
focus: true
|
|
|
|
|
2018-07-06 07:34:16 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
// Start polling when this view is shown
|
|
|
|
ComputerManager.startPolling()
|
|
|
|
}
|
|
|
|
|
|
|
|
Component.onDestruction: {
|
|
|
|
// Stop polling when this view is destroyed
|
|
|
|
ComputerManager.stopPollingAsync()
|
|
|
|
}
|
|
|
|
|
2018-07-06 03:07:05 +00:00
|
|
|
function createModel()
|
|
|
|
{
|
2018-07-06 05:08:55 +00:00
|
|
|
var model = Qt.createQmlObject('import AppModel 1.0; AppModel {}', parent, '')
|
|
|
|
model.initialize(ComputerManager, computerIndex)
|
2018-07-06 03:07:05 +00:00
|
|
|
return model
|
|
|
|
}
|
|
|
|
|
2018-07-07 23:30:26 +00:00
|
|
|
model: appModel
|
2018-07-06 03:07:05 +00:00
|
|
|
|
|
|
|
delegate: Item {
|
|
|
|
width: 200; height: 300;
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: appIcon
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter;
|
|
|
|
source: model.boxart
|
|
|
|
sourceSize {
|
|
|
|
width: 150
|
|
|
|
height: 200
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: appNameText
|
|
|
|
text: model.name
|
|
|
|
color: "white"
|
|
|
|
|
|
|
|
width: parent.width
|
|
|
|
height: 100
|
|
|
|
anchors.top: appIcon.bottom
|
|
|
|
font.pointSize: 26
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
2018-07-07 23:30:26 +00:00
|
|
|
var session = appModel.createSessionForGame(index);
|
|
|
|
session.exec();
|
2018-07-06 03:07:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|