2019-12-19 22:46:16 +11:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2019-12-18 09:07:38 +11:00
|
|
|
import QtQuick 2.12
|
2019-12-03 07:29:29 +11:00
|
|
|
import ".."
|
|
|
|
import "../.."
|
2019-12-18 09:07:38 +11:00
|
|
|
|
|
|
|
QtObject {
|
|
|
|
function onExitRequested(exitCode) {
|
|
|
|
Qt.exit(exitCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function onAlertRequested() {
|
2020-03-25 02:31:32 +11:00
|
|
|
const msec = window.settings.alertOnMessageForMsec
|
|
|
|
|
|
|
|
if (Qt.application.state !== Qt.ApplicationActive && msec !== 0) {
|
|
|
|
window.alert(msec === -1 ? 0 : msec) // -1 → 0 = no time out
|
2019-12-18 09:07:38 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function onCoroutineDone(uuid, result, error, traceback) {
|
2020-03-08 19:46:20 +11:00
|
|
|
const onSuccess = Globals.pendingCoroutines[uuid].onSuccess
|
|
|
|
const onError = Globals.pendingCoroutines[uuid].onError
|
2019-12-18 09:07:38 +11:00
|
|
|
|
2019-12-03 07:29:29 +11:00
|
|
|
delete Globals.pendingCoroutines[uuid]
|
2019-12-27 00:20:51 +11:00
|
|
|
|
2019-12-18 09:07:38 +11:00
|
|
|
if (error) {
|
2019-12-27 00:20:51 +11:00
|
|
|
const type = py.getattr(py.getattr(error, "__class__"), "__name__")
|
|
|
|
const args = py.getattr(error, "args")
|
2019-12-18 09:07:38 +11:00
|
|
|
|
2020-03-13 17:52:38 +11:00
|
|
|
if (type === "CancelledError") return
|
2019-12-18 09:07:38 +11:00
|
|
|
|
2020-03-16 06:40:53 +11:00
|
|
|
onError ?
|
|
|
|
onError(type, args, error, traceback, uuid) :
|
2020-03-23 11:58:24 +11:00
|
|
|
utils.showError(type, traceback, "", uuid)
|
2020-03-16 06:40:53 +11:00
|
|
|
|
|
|
|
return
|
2019-12-27 00:20:51 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
if (onSuccess) onSuccess(result)
|
2019-12-18 09:07:38 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-27 01:05:01 +11:00
|
|
|
function onLoopException(message, error, traceback) {
|
|
|
|
// No need to log these here, the asyncio exception handler does it
|
|
|
|
const type = py.getattr(py.getattr(error, "__class__"), "__name__")
|
2020-03-23 11:58:24 +11:00
|
|
|
utils.showError(type, traceback, message)
|
2019-12-27 01:05:01 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-08 01:58:26 +10:00
|
|
|
function onModelItemSet(syncId, indexThen, indexNow, changedFields){
|
|
|
|
if (indexThen === undefined) {
|
2020-04-15 00:55:01 +10:00
|
|
|
// print("insert", syncId, indexThen, indexNow,
|
|
|
|
// JSON.stringify(changedFields))
|
2020-04-08 01:58:26 +10:00
|
|
|
ModelStore.get(syncId).insert(indexNow, changedFields)
|
|
|
|
|
|
|
|
} else {
|
2020-04-15 00:55:01 +10:00
|
|
|
// print("set", syncId, indexThen, indexNow,
|
|
|
|
// JSON.stringify(changedFields))
|
2020-04-08 01:58:26 +10:00
|
|
|
const model = ModelStore.get(syncId)
|
|
|
|
model.set(indexThen, changedFields)
|
2020-05-01 14:30:26 +10:00
|
|
|
|
2020-04-08 01:58:26 +10:00
|
|
|
if (indexThen !== indexNow) model.move(indexThen, indexNow, 1)
|
2020-05-01 14:30:26 +10:00
|
|
|
|
|
|
|
model.fieldsChanged(indexNow, changedFields)
|
2020-04-08 01:58:26 +10:00
|
|
|
}
|
2019-12-03 07:29:29 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function onModelItemDeleted(syncId, index) {
|
2020-04-08 01:58:26 +10:00
|
|
|
// print("delete", syncId, index)
|
2019-12-03 07:29:29 +11:00
|
|
|
ModelStore.get(syncId).remove(index)
|
|
|
|
}
|
|
|
|
|
2019-12-18 09:07:38 +11:00
|
|
|
|
2019-12-03 07:29:29 +11:00
|
|
|
function onModelCleared(syncId) {
|
|
|
|
// print("clear", syncId)
|
|
|
|
ModelStore.get(syncId).clear()
|
2019-12-18 09:07:38 +11:00
|
|
|
}
|
|
|
|
}
|