2019-12-03 07:29:29 +11:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
|
|
|
pragma Singleton
|
|
|
|
import QtQuick 2.12
|
|
|
|
import "PythonBridge"
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
property QtObject privates: QtObject {
|
|
|
|
readonly property var store: ({})
|
|
|
|
|
|
|
|
readonly property PythonBridge py: PythonBridge {}
|
|
|
|
|
|
|
|
readonly property Component model: Component {
|
|
|
|
ListModel {
|
|
|
|
property var modelId
|
|
|
|
|
2020-03-10 20:38:28 +11:00
|
|
|
function findIndex(id) {
|
|
|
|
for (let i = 0; i < count; i++)
|
|
|
|
if (get(i).id === id) return i
|
|
|
|
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
2019-12-03 07:29:29 +11:00
|
|
|
function find(id) {
|
|
|
|
for (let i = 0; i < count; i++)
|
|
|
|
if (get(i).id === id) return get(i)
|
|
|
|
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function get(...modelId) {
|
|
|
|
if (modelId.length === 1) modelId = modelId[0]
|
|
|
|
|
|
|
|
if (! privates.store[modelId])
|
|
|
|
privates.store[modelId] =
|
|
|
|
privates.model.createObject(this, {modelId})
|
|
|
|
|
|
|
|
return privates.store[modelId]
|
|
|
|
}
|
|
|
|
}
|