# HG changeset patch # User Sebastien Jodogne # Date 1606468908 -3600 # Node ID 0598c87e1e88c7f665fb39af30b325d08901552c # Parent 8805a6a01655a9fc952490fc6f55ef0c4df448fb "WindowingPresets" configuration option diff -r 8805a6a01655 -r 0598c87e1e88 Applications/StoneWebViewer/WebApplication/app.js --- a/Applications/StoneWebViewer/WebApplication/app.js Fri Nov 27 10:13:15 2020 +0100 +++ b/Applications/StoneWebViewer/WebApplication/app.js Fri Nov 27 10:21:48 2020 +0100 @@ -862,7 +862,6 @@ axios.get(CONFIGURATION_SOURCE) .then(function(response) { app.globalConfiguration = ParseJsonWithComments(response.data); - console.log(app.globalConfiguration); // Option 1: Loading script using plain HTML diff -r 8805a6a01655 -r 0598c87e1e88 Applications/StoneWebViewer/WebApplication/configuration.json --- a/Applications/StoneWebViewer/WebApplication/configuration.json Fri Nov 27 10:13:15 2020 +0100 +++ b/Applications/StoneWebViewer/WebApplication/configuration.json Fri Nov 27 10:21:48 2020 +0100 @@ -10,6 +10,20 @@ * replaced by the day, "MM" by the month, and "YYYY" by the year. **/ // "DateFormat" : "DD/MM/YYYY", + + /** + * This option allows you to define windowing presets. + * For each preset, you must provide a name, the window width + * and window center. + **/ + "WindowingPresets" : [ + {"Name": "CT Lung", "WindowCenter": -400, "WindowWidth": 1600}, + {"Name": "CT Abdomen", "WindowCenter": 60, "WindowWidth": 400}, + {"Name": "CT Bone", "WindowCenter": 300, "WindowWidth": 1500}, + {"Name": "CT Brain", "WindowCenter": 40, "WindowWidth": 80}, + {"Name": "CT Chest", "WindowCenter": 40, "WindowWidth": 400}, + {"Name": "CT Angio", "WindowCenter": 300, "WindowWidth": 600} + ], /** * The allowed origin for messages corresponding to dynamic actions diff -r 8805a6a01655 -r 0598c87e1e88 Applications/StoneWebViewer/WebApplication/index.html --- a/Applications/StoneWebViewer/WebApplication/index.html Fri Nov 27 10:13:15 2020 +0100 +++ b/Applications/StoneWebViewer/WebApplication/index.html Fri Nov 27 10:21:48 2020 +0100 @@ -392,39 +392,19 @@