Registers an event listener on the specified event. Supported window event types are:
- auth-requested
- begin-user-bounds-changing
- blurred
- bounds-changed
- bounds-changing
- close-requested
- closed
- closing
- crashed
- disabled-frame-bounds-changed
- disabled-frame-bounds-changing
- embedded
- end-user-bounds-changing
- external-process-exited
- external-process-started
- file-download-completed
- file-download-progress
- file-download-started
- focused
- frame-disabled
- frame-enabled
- hidden
- initialized
- maximized
- minimized
- navigation-rejected
- preload-scripts-state-changed
- preload-scripts-state-changing
- reloaded
- resource-load-failed
- resource-response-received
- restored
- show-requested
- shown
Example
var finWindow = fin.desktop.Window.getCurrent();
finWindow.addEventListener("bounds-changed", function (event) {
console.log("The window has been moved or resized");
}, function () {
console.log("The registration was successful");
},function (reason) {
console.log("failure:" + reason);
});
Window Events
auth-requested
Generated when a window within this application requires credentials from the user.
{
name: "windowName",
topic: "window",
type: "auth-requested",
uuid: "AppUUID" // the UUID of the application,
authInfo: {
host: "myserver",
isProxy: false,
port: 80,
realm: "",
scheme: "basic"
}
}
begin-user-bounds-changing
Generated at the beginning of a user-driven change to a window's size or position.
{
height: 2, //the height of the window prior to change.
left: 2, //the left-most coordinate of the window prior to change.
name: "windowName", //(string) the name of the window.
top: 2, //the top-most coordinate of the window prior to change.
topic: "window",
type: "begin-user-bounds-changing",
uuid: "appUUID",//the UUID of the application the window belongs to.
width: 2, //the width of the window prior to change.
windowState: "normal" // the state of the window: "minimized", "normal", or "maximized"
}
blurred
Generated when a window loses focus.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "blurred",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
bounds-changed
Generated after changes in a window's size and/or position.
//This response has the following shape:
{
changeType: 2, //describes what kind of change occurred.
//0 means a change in position.
//1 means a change in size.
//2 means a change in position and size.
deferred: true, //true when pending changes have been applied.
//to the window.
height: 2, //the new height of the window.
left: 2, //the left-most coordinate of the window.
name: "windowName", //(string) the name of the window.
top: 2, //the top-most coordinate of the window.
topic: "window",
type: "bounds-changed",
uuid: "appUUID",//the UUID of the application the window belongs to.
width: 2 //the new width of the window.
}
bounds-changing
Generated during changes to a window's size and/or position.
//This response has the following shape:
{
changeType: 2, //describes what kind of change occurred.
//0 means a change in position.
//1 means a change in size.
//2 means a change in position and size.
deferred: true, //true when pending changes have been applied.
//to the window.
height: 2, //the new height of the window.
left: 2, //the left-most coordinate of the window.
name: "windowName", //(string) the name of the window.
top: 2, //the top-most coordinate of the window.
topic: "window",
type: "bounds-changing",
uuid: "appUUID",//the UUID of the application the window belongs to.
width: 2 //the new width of the window.
}
close-requested
Generated when a window has been prevented from closing. A window will be prevented from closing by default, either through the API or by a user when ‘close-requested’ has been subscribed to and the Window.close(force) flag is false.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "close-requested",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
closed
Generated when a window has closed.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "closed",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
closing
Generated when a window has initiated the closing routine.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "closing",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
crashed
Generated when a window has crashed.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
reason: "killed", //possible values:
// "normal-termination" zero exit status
// "abnormal-termination" non-zero exit status
// "killed" e.g. SIGKILL or task manager kill
// "crashed" e.g. Segmentation fault
// "still-running" child hasn't exited yet
// "launch-failed" child process never launched
// "out-of-memory" process died due to oom
topic: "window",
type: "crashed",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
disabled-frame-bounds-changed
Generated when the frame is disabled after all prevent user changes in window's size and/or position have completed.
//This response has the following shape:
{
changeType: 2, //describes what kind of change occurred.
//0 means a change in position.
//1 means a change in size.
//2 means a change in position and size.
deferred: true, //true when pending changes have been applied.
//to the window.
height: 2, //the new height of the window.
left: 2, //the left-most coordinate of the window.
name: "windowName", //(string) the name of the window.
top: 2, //the top-most coordinate of the window.
topic: "window",
type: "disabled-frame-bounds-changed",
uuid: "appUUID",//the UUID of the application the window belongs to.
width: 2 //the new width of the window.
}
disabled-frame-bounds-changing
Generated when the frame is disabled during prevented user changes to a window's size and/or position.
//This response has the following shape:
{
changeType: 2, //describes what kind of change occurred.
//0 means a change in position.
//1 means a change in size.
//2 means a change in position and size.
deferred: true, //true when pending changes have been applied.
//to the window.
height: 2, //the new height of the window.
left: 2, //the left-most coordinate of the window.
name: "windowName", //(string) the name of the window.
top: 2, //the top-most coordinate of the window.
topic: "window",
type: "disabled-frame-bounds-changing",
uuid: "appUUID",//the UUID of the application the window belongs to.
width: 2 //the new width of the window.
}
embedded
Generated when a window has been embedded.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "window-embedded",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
end-user-bounds-changing
Generated at the end of a user-driven change to a window's size or position.
{
height: 2, //the height of the window prior to change.
left: 2, //the left-most coordinate of the window prior to change.
name: "windowName", //(string) the name of the window.
top: 2, //the top-most coordinate of the window prior to change.
topic: "window",
type: "end-user-bounds-changing",
uuid: "appUUID",//the UUID of the application the window belongs to.
width: 2, //the width of the window prior to change.
windowState: "normal" // the state of the window: "minimized", "normal", or "maximized"
}
external-process-exited
Generated when an external process has exited.
//This response has the following shape:
{
exitCode: 0, // the process exit code
name: "windowOne", //the name of the window.
processUuid: "3BAA4DA8-DBD6-4592-8C21-6427385911D2", // the process handle uuid
topic: "window",
type: "external-process-exited",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
external-process-started
Generated when an external process has started.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
processUuid: "3BAA4DA8-DBD6-4592-8C21-6427385911D2", // the process handle uuid
topic: "window",
type: "external-process-started",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
file-download-completed
Generated when a file download has completed.
//This response has the following shape:
{
type: "file-download-completed",
state: "started" | "completed" | "cancelled" | "interrupted" | "paused" | "interrupted" | "paused"
url: "https://download-location/file.pdf", //the url where the file is being downloaded from.
mimeType: "application/pdf", //the file mime type.
fileName: "file(1).pdf", //the name of the file as chosen by the user.
originalFileName: "file.pdf", //the original name of the file.
totalBytes: 347110, //the total size in bytes of the file.
startTime: 1537994725.335115, //the number of seconds since the UNIX epoch when the download was started.
contentDisposition: "", //the Content-Disposition field from the response header.
lastModifiedTime: "Fri, 24 Aug 2018 03:12:32 GMT", //the Last-Modified header value.
eTag: `W"54be6-16569eb4bad"`, //the ETag header value.
downloadedBytes: 347110, //the downloaded bytes of the download item.
topic: 'window',
uuid: "AppUUID", //(string) the UUID of the application the window belongs to.
name: "windowOne" //the name of the window.
}
file-download-progress
Generated during file download progress.
//This response has the following shape:
{
type: "file-download-progress",
state: "started" | "completed" | "cancelled" | "interrupted" | "paused" | "interrupted" | "paused"
url: "https://download-location/file.pdf", //the url where the file is being downloaded from.
mimeType: "application/pdf", //the file mime type.
fileName: null, //the name of the file as chosen by the user, can be null for progress events.
originalFileName: "file.pdf", //the original name of the file.
totalBytes: 347110, //the total size in bytes of the file.
startTime: 1537994725.335115, //the number of seconds since the UNIX epoch when the download was started.
contentDisposition: "", //the Content-Disposition field from the response header.
lastModifiedTime: "Fri, 24 Aug 2018 03:12:32 GMT", //the Last-Modified header value.
eTag: `W"54be6-16569eb4bad"`, //the ETag header value.
downloadedBytes: 23820, //the downloaded bytes of the download item.
topic: 'window',
uuid: "AppUUID", //(string) the UUID of the application the window belongs to.
name: "windowOne" //the name of the window.
}
file-download-started
Generated when a file download has started.
//This response has the following shape:
{
type: "file-download-started",
state: "started" | "completed" | "cancelled" | "interrupted" | "paused" | "interrupted" | "paused"
url: "https://download-location/file.pdf", //the url where the file is being downloaded from.
mimeType: "application/pdf", //the file mime type.
fileName: null, //the name of the file as chosen by the user, will be null for started events
originalFileName: "file.pdf", //the original name of the file.
totalBytes: 347110, //the total size in bytes of the file.
startTime: 1537994725.335115, //the number of seconds since the UNIX epoch when the download was started.
contentDisposition: "", //the Content-Disposition field from the response header.
lastModifiedTime: "Fri, 24 Aug 2018 03:12:32 GMT", //the Last-Modified header value.
eTag: `W"54be6-16569eb4bad"`, //the ETag header value.
downloadedBytes: 23820, //the downloaded bytes of the download item.
topic: 'window',
uuid: "AppUUID", //(string) the UUID of the application the window belongs to.
name: "windowOne" //the name of the window.
}
focused
Generated when a window receives focus.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "focused",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
frame-disabled
Generated when a window's frame becomes disabled.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "frame-disabled",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
frame-enabled
Generated when a window's frame becomes enabled.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "frame-enabled",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
hidden
Generated when a window has been hidden.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
reason: "hide", //What action prompted the close The reasons are:
//"closing" if the event is triggered by close of the window
//"hide"
//"hide-on-close"
topic: "window",
type: "hidden",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
initialized
Generated when a window is initialized.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "initialized",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
maximized
Generated when a window is maximized.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "maximized",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
minimized
Generated when a window is minimized.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "minimized",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
navigation-rejected
Generated when window navigation is rejected as per ContentNavigation whitelist/blacklist rules.
{
name: "windowOne", //the name of the window.
sourceName: "source of navigation window name",
topic: "window",
type: "navigation-rejected",
url: "http://blocked-content.url",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
preload-scripts-state-changed
Generated after the execution of all of a window's preload scripts. Contains information about all window's preload scripts' final states.
//This response has the following shape:
{
name: "windowOne", // the name of the window
topic: "window",
type: "preload-scripts-state-changed",
uuid: "AppUUID", // the UUID of the application the window belongs to
preloadScripts: [{ // an array of all final preload scripts' states
..., // original preload script's properties
state: 'load-failed'| // preload script failed to load
'failed'| // preload script failed to eval
'succeeded' // preload script eval'ed successfully
}, ...]
}
preload-scripts-state-changing
Generated during the execution of a window's preload script. Contains information about a single window's preload script's state, for which the event has been raised.
//This response has the following shape:
{
name: "windowOne", // the name of the window
topic: "window",
type: "preload-scripts-state-changing",
uuid: "AppUUID", // the UUID of the application the window belongs to
preloadScripts: [{ // an array of a single preload script's state change
..., // original preload script's properties
state: 'load-started'| // started loading preload script
'load-failed'| // preload script failed to load
'load-succeeded'| // preload script is loaded and ready to be eval'ed
'failed'| // preload script failed to eval
'succeeded' // preload script eval'ed successfully
}]
}
reloaded
Generated when a window has been reloaded
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "reloaded",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
url: "http://localhost:8080/index.html" //the url has has been reloaded.
}
resource-load-failed
Generated when an HTTP load was cancelled or failed.
{
name: "windowName",
topic: "window",
type: "resource-response-received",
uuid: "454C7F31-A915-4EA2-83F2-CFA655453C52", //the UUID of the application
errorCode: -102, //the Chromium error code
errorDescription: "",
validatedURL: "http://bad-domain/dead-link.html",
isMainFrame: true
}
resource-response-received
Generated when an HTTP resource request has received response details.
{
name: "windowName",
topic: "window",
type: "resource-response-received",
uuid: "454C7F31-A915-4EA2-83F2-CFA655453C52", //the UUID of the application
status: false,
newUrl: "https://www.google.com/?gws_rd=ssl", //the URL of the responded resource
originalUrl: "http://www.google.com/", //the requested URL
httpResponseCode: 200,
requestMethod: "GET",
referrer: "", //the URL of the referrer
headers: { //HTTP response headers
"cache-control": [
"private, max-age=0"
],
"content-type": [
"text/html; charset=UTF-8"
]
},
resourceType: "mainFrame" //"mainFrame", "subFrame",
//"styleSheet", "script", "image",
//"object", "xhr", or "other"
}
restored
Generated when a window is displayed after having been minimized or when a window leaves the maximize state without minimizing.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "restored",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
show-requested
Generated when a window has been prevented from showing. A window will be prevented from showing by default, either through the API or by a user when ‘show-requested’ has been subscribed to on the window or 'window-show-requested' on the parent application and the Window.show(force) flag is false.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "show-requested",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}
shown
Generated when a hidden window has been shown.
//This response has the following shape:
{
name: "windowOne", //the name of the window.
topic: "window",
type: "shown",
uuid: "AppUUID" //(string) the UUID of the application the window belongs to.
}