Files
SysTray-X/webext/schema_windowEvent.json
Ximi1970 b9259102c8 WIP
2023-10-30 21:58:12 +01:00

48 lines
1.0 KiB
JSON

[
{
"namespace": "windowEvent",
"functions": [
{
"name": "setCloseType",
"type": "function",
"description": "Set the close type.",
"async": true,
"parameters": [
{
"type": "integer",
"name": "type",
"minimum": 0,
"maximum": 4
}
]
},
{
"name": "setMainWindowId",
"type": "function",
"description": "Set the main window id.",
"async": true,
"parameters": [
{
"type": "integer",
"name": "type"
}
]
}
],
"events": [
{
"name": "onNewWindow",
"type": "function",
"description": "Fires when the user opens a new window.",
"parameters": []
},
{
"name": "onCloseButtonClick",
"type": "function",
"description": "Fires when the user clicks on the close button of a window.",
"parameters": []
}
]
}
]