Difference between revisions of "Jmol JavaScript Object/Info"

From Jmol
Jump to navigation Jump to search
(Documentation of parameters of the Info variable)
(grouping in categories, and some more details)
Line 3: Line 3:
 
This page explains the parameters of the <code>Info</code> variable, an essential part of the [[Jmol JavaScript Object]].
 
This page explains the parameters of the <code>Info</code> variable, an essential part of the [[Jmol JavaScript Object]].
  
<tt>Info</tt> is an associative array (a set of key/value pairs) indicating all the desired characteristics of the Jmol / JSmol applet or surrogate. For a full, up-to-date description of all of the options, see [{{SVN Trunk}}Jmol/appletweb/JmolApi.js JmolApi.js]. It is recommended that any page developer interested in utilizing Jmol extensively takes a look at this file.
+
<tt>Info</tt> is an associative array (a set of key/value pairs) indicating all the desired characteristics of the Jmol object (Jmol applet or JSmol). For a full, up-to-date description of all of the options, see [{{SVN Trunk}}Jmol/appletweb/JmolApi.js JmolApi.js]. It is recommended that any page developer interested in utilizing Jmol extensively takes a look at this file.
  
 
Values may be defined  
 
Values may be defined  
Line 19: Line 19:
 
</pre>  
 
</pre>  
  
The value shown between angle brackets below is the default.
+
== Jmol object definition ==
 +
(The values shown in the listing below are the defaults)
  
== General ==
+
=== Dimensions ===
 +
* '''height''' <code>300</code>
 +
:The size of the Jmol object in pixels or expressed as percent of its container height as a string in quotes: "100%".
 +
* '''width''' <code>300</code>
 +
:The width of the Jmol object in pixels or expressed as percent of its container width as a string in quotes: "100%".
  
* '''addSelectionOptions''' <<code>false</code>> Set this value to <code>true</code> if you want to display, below the applet, a menu with options for loading structures from public databases.
+
Note that for a percent to work, '''''all''''' surrounding HTML elements must explicitly implement the CSS attributes <code>style=height:...</code> and <code>style=width:...</code>. That includes setting height to 100% for <code>body</code> and <code>html</code>.
* '''color''' <<code>white</code>> The background color of the applet, in any JmolScript-supported format: color name, decimal triplet <code>[r,g,b]</code> or hexadecimal <code>[xRRGGBB]</code>. Note that default is now white, in contrast to black in the classic Jmol.js method.
+
Note also that, despite that, non-Java JSmol uses the <code>canvas</code> element, which will not resize correctly.  
* '''console''' The ID in html of the container or div that will receive output from Jmol. Default value is the Jmol Object name/id followed by "_infodiv", and it is contained in the info panel that may be displayed alternatively to the Jmol viewer.
+
 
* '''coverImage''' <empty> Set the path and filename of an image that will be displayed on top of the Jmol object (usually as an initial replacemente or during loading, see <code>deferApplet</code> and <code>deferUncover</code> parameters below).
+
=== Background color ===
* '''coverTitle''' <empty> Set a tip that is displayed before model starts to load.
+
* '''color''' <code>"white"</code>
* '''coverCommand''' <empty> Set a Jmol command or script that will be executed upon clicking the cover image.
+
:The background color of the Jmol object, as a quoted text string in any JmolScript-supported format: color name, decimal triplet <code>[r,g,b]</code> or hexadecimal <code>[xRRGGBB]</code>. Note that default is now white, in contrast to black in the classic Jmol.js method.
* '''debug''' <<code>false</code>> Set this value to <code>true</code> if you are having problems getting your page to show the applet or buttons.
+
 
* '''defaultModel''' <empty> A model to be retrieved from a public database and displayed when the applet is loaded.
+
=== Files and paths ===
* '''deferApplet''' <<code>false</code>> If set <code>true</code>, the model will not be loaded until the user clicks on the cover image (see <code>coverImage</code> parameter above).
+
* '''jarFile''' <code>"JmolApplet0.jar"</code>
* '''deferUncover''' <<code>false</code>> If set <code>true</code>, the cover image will remain until command execution is complete.
+
:''(Java modality only)'' The file to be used, usually either <code>JmolApplet0.jar</code> (for faster incremental loading) or <code>JmolApplet.jar</code> (a single 2.5+ MB download), or the signed versions <code>JmolAppletSigned0.jar</code> and <code>JmolAppletSigned.jar</code>. Be careful that the setting here should match that of '''isSigned'''.
* '''disableInitialConsole''' <<code>false</code>> If set <code>true</code>, avoids the display of messages ('console') in the Jmol panel while the Jmol object is being built initially.
+
* '''isSigned''' <code>false</code>
* '''disableJ2SLoadMonitor''' <<code>false</code>> If set <code>true</code>, avoids the display of messages in a single line, colored, at bottom-left of the page while code loads (both initially and every time a new module is requested by a running script).
+
:''(Java modality only)'' Make sure to change this to <code>true</code> if the file indicated for '''jarFile''' is the signed applet.
* '''height''' <<code>300</code>> The size of the applet (or surrogate) in pixels or expressed as percent of its container height as a string in quotes: "100%". Note that for a percent to work, '''''all''''' surrounding HTML elements (including <code>body</code> and <code>html</code>) must explicitly implement the CSS attribute <code>style=height:...</code>.
+
* '''jarPath''' <code>"."</code>
* '''isSigned''' <<code>false</code>>  Make sure to change this to <code>true</code> if the file indicated for '''jarFile''' is the signed applet.
+
:''(Java modality only)'' The path to the applet files. Note that if the unsigned applet is used and the page is tested locally, then all model files must be in or under the folder indicated by this value, to satisfy Java security policy.
* '''jarFile''' <<code>JmolApplet0.jar</code>> The file used, usually either <code>JmolApplet0.jar</code> (for faster incremental loading) or <code>JmolApplet.jar</code> (a single 2.5+ MB download), or the signed versions <code>JmolAppletSigned0.jar</code> and <code>JmolAppletSigned.jar</code>. The setting here should match that of '''isSigned'''.
+
* '''j2sPath''' <code>"j2s"</code>
* '''jarPath''' <<code>.</code>> The path to the applet files. Note that if the unsigned applet is used and the page is tested locally, then all model files must be in or under the folder indicated by this value, to satisfy Java security policy.
+
:''(HTML5 modality)'' The path to {{folder|j2s}} including its own name; the contents of this folder are essential for JSmol to work.
* '''j2sPath''' <<code>j2s</code>> The path to {{folder|j2s}} including its own name; the contents of this folder are essential for JSmol to work.
+
 
* '''memoryLimit''' <<code>512</code>> The maximum amount of memory allowed for the applet, in MB.
+
=== Modality ===
* '''readyFunction''' <empty> The name of a JavaScript function to call when the applet has been created and is ready to receive commands (and also called when the applet is destroyed e.g. when the page is closed).
+
* '''use''' <code>"Java noWebGL noHTML5 noImage"</code> This string determines the various options to be tried (applet and surrogates) and the order in which to try them.
*: For example, with <code>readyFunction: jmolIsReady</code> any of the following JavaScript function definitions could be used:
 
*: <code>jmolIsReady = function(theJmol) { document.title = theJmol._id + " is ready"; }</code>
 
*: <code>jmolIsReady = function() { alert('Welcome to Jmol!'); }</code>
 
*: <code>function jmolIsReady() { alert('Welcome to Jmol!'); }</code>
 
* '''script''' <empty> A script to run when the applet has loaded. Note that indicating a script here is not necessary; with Jmol-JSO, unlike with Jmol.js, you can start making script calls to the applet as soon as the applet wrapper object has been created in JavaScript; there is no need to wait for Java applet initialization to have completed.
 
* '''serverURL''' <<code><nowiki>http://chemapps.stolaf.edu/jmol/jsmol/jsmol.php</nowiki></code>> The URL of the server to be used for getting file data into non-JmolApplet options. This can be left as default, since that is a public site accessible to cross-domain AJAX calls, but it can perhaps better be installed on the user's host for better performance.
 
* '''src''' Same as '''script''', only included because it is the syntax commonly used for images.
 
* '''use''' <<code>Java noWebGL noHTML5 noImage</code>> This string determines the various options to be tried (applet and surrogates) and the order in which to try them.
 
 
** The default setting is the same as just <code>Java</code> by itself and indicates to just use Java (and display a message if Java is not enabled).
 
** The default setting is the same as just <code>Java</code> by itself and indicates to just use Java (and display a message if Java is not enabled).
** The value <code>HTML5</code> forces use of JSmol.  
+
** The value <code>HTML5</code> forces use of JSmol in html5-only mode.  
 
** A value of <code>Java Image</code> would allow PNGJ files to be displayed as images or simple file loading to be delivered as an image from a server if Java is not available.
 
** A value of <code>Java Image</code> would allow PNGJ files to be displayed as images or simple file loading to be delivered as an image from a server if Java is not available.
 
** The value <code>Java HTML5</code> would test for Java and then, if that is not available, use JSmol or maybe GLmol or HTML5-only ChemDoodle (whichever is made available).  
 
** The value <code>Java HTML5</code> would test for Java and then, if that is not available, use JSmol or maybe GLmol or HTML5-only ChemDoodle (whichever is made available).  
 
** The value <code>Java WebGL HTML5 Image</code> allows at least some model on all standard platforms.  
 
** The value <code>Java WebGL HTML5 Image</code> allows at least some model on all standard platforms.  
: Note that Jmol-JSO cannot detect if the user has intentionally disabled Java in some browsers (at least Microsoft Internet Explorer). Thus, users intentionally disabling Java may only get the Java option, and a message will be displayed that Java is not available.
+
Note that Jmol-JSO cannot detect if the user has intentionally disabled Java in some browsers. Thus, users intentionally disabling Java may only get the Java modality, and a message will be displayed that Java is not available.
* '''width''' <<code>300</code>> The width of the applet in pixels or expressed as percent of its container width as a string in quotes: "100%". Note that for a percent to work, '''''all''''' surrounding HTML elements must explicitly implement the CSS attribute <code>style=width:...</code>.
+
 
 +
== Startup period ==
 +
(The values shown in the listing below are the defaults)
 +
 
 +
* '''coverImage''' <code>""</code>
 +
:Set the path and filename of an image that will be displayed on top of the Jmol object (usually as an initial replacemente or during loading, see <code>deferApplet</code> and <code>deferUncover</code> parameters below).
 +
* '''coverTitle''' <code>""</code>
 +
:Set a tip that is displayed before model starts to load.
 +
* '''coverCommand''' <code>""</code>
 +
:Set a Jmol command or script that will be executed upon clicking the cover image.
 +
* '''deferApplet''' <code>false</code>
 +
:If set <code>true</code>, the model will not be loaded until the user clicks on the cover image (see <code>coverImage</code> parameter above).
 +
* '''deferUncover''' <code>false</code>
 +
:If set <code>true</code>, the cover image will remain until command execution is complete.
 +
* '''disableInitialConsole''' <code>false</code>
 +
:If set <code>true</code>, avoids the display of messages ('console') in the Jmol panel while the Jmol object is being built initially.
 +
* '''disableJ2SLoadMonitor''' <code>false</code>
 +
:If set <code>true</code>, avoids the display of messages in a single line, colored, at bottom-left of the page while code loads (both initially and every time a new module is requested by a running script).
 +
* '''readyFunction''' <code>""</code>
 +
:The name of a JavaScript function to call when the Jmol object has been created and is ready to receive commands (and also called when the object is destroyed e.g. when the page is closed).
 +
: For example, with <code>readyFunction: jmolIsReady</code> any of the following JavaScript function definitions could be used:
 +
:: <code>jmolIsReady = function(theJmol) { document.title = theJmol._id + " is ready"; }</code>
 +
:: <code>jmolIsReady = function() { alert('Welcome to Jmol!'); }</code>
 +
:: <code>function jmolIsReady() { alert('Welcome to Jmol!'); }</code>
 +
 
 +
== Model loading ==
 +
(The values shown in the listing below are the defaults)
 +
 
 +
* '''defaultModel''' <code>""</code>
 +
:A model to be retrieved from a public database and displayed when the Jmol object has finished loading.
 +
* '''script''' <code>""</code>
 +
:A script to run when the Jmol object has finished loading. Note that indicating a script here is not necessary; with Jmol-JSO, unlike with Jmol.js, you can start making script calls to Jmol as soon as the Jmol wrapper object has been created in JavaScript; there is no need to wait for Jmol object initialization to have completed.
 +
* '''src''' <code>""</code>
 +
:is the same as '''script''' (only included because it is the syntax commonly used for images).
 +
 
 +
== Customization or extras ==
 +
(The values shown in the listing below are the defaults)
 +
 
 +
* '''addSelectionOptions''' <code>false</code>
 +
:Set this value to <code>true</code> if you want to display, below the Jmol object, a menu with options for loading structures from public databases.
 +
* '''console''' <code>"***_infodiv"</code>
 +
:The ID in html of the container or div that will receive output from Jmol. Default value is the Jmol Object name/id followed by "_infodiv", and it is contained in the info panel that may be displayed alternatively to the Jmol viewer.
 +
* '''debug''' <code>false</code>
 +
:Set this value to <code>true</code> if you are having problems getting your page to show the Jmol object, buttons or ther controls.
 +
* '''memoryLimit''' <code>512</code>
 +
:''(Java modality only)'' The maximum amount of memory allowed for the Java applet, in MB.
 +
* '''serverURL''' <code>"<nowiki>http://chemapps.stolaf.edu/jmol/jsmol/jsmol.php</nowiki>"</code>
 +
:The URL of the server to be used for getting file data into non-Java modalities. This can be left as default, since that is a public site accessible to cross-domain AJAX calls, but it can perhaps better be installed on the user's host for better performance.
 +
* '''usecommandthread''' <code>false</code>
 +
:The signed Jmol Java applet generally runs commands by passing them to a command thread that is established when the applet is created, while the unsigned applet does not. You can change this behavior if you are observing Java security issues. Otherwise, it should not be adjusted.
  
 
== Callbacks ==
 
== Callbacks ==
Line 77: Line 123:
 
* '''synccallback'''
 
* '''synccallback'''
  
These callbacks allow the page designer to get information about what is happening within the applet. The name of a JavaScript function, in single- or double-quotes should be given here if desired. Do not use <code>function() {....}</code> syntax.
+
These callbacks allow the page designer to get information about what is happening within the Jmol object. The name of a JavaScript function, in single- or double-quotes should be given here if desired. Do not use <code>function() {....}</code> syntax.
  
 
== Misc. ==
 
== Misc. ==
  
 
* '''language'''  
 
* '''language'''  
This setting can be used to specify a language to be used in the JmolApplet interface (primarily for testing; the default language used in the applet is automatically detected from the system settings of the user's browser).
+
:This setting can be used to specify a language to be used in the JmolApplet interface (only for the Java version and primarily for testing; the default language used in the applet is automatically detected from the system settings of the user's browser).
Please note that language (localization) is not currently implemented in non-Java surrogates (including JSmol).
+
:Please note that language (localization) is not currently implemented in non-Java surrogates (including JSmol).
 
 
* '''usecommandthread'''
 
The signed Jmol applet generally runs commands by passing them to a command thread that is established when the applet is created, while the unsigned applet does not. You can change this behavior if you are observing Java security issues. Otherwise, it should not be adjusted.
 
  
 
* '''boxbgcolor'''
 
* '''boxbgcolor'''
Line 93: Line 136:
 
* '''progressbar'''
 
* '''progressbar'''
 
* '''progresscolor'''
 
* '''progresscolor'''
These five values generally should not be adjusted.
+
:These five values generally should not be adjusted.

Revision as of 20:56, 6 March 2013

Documentation of parameters of the Info variable

This page explains the parameters of the Info variable, an essential part of the Jmol JavaScript Object.

Info is an associative array (a set of key/value pairs) indicating all the desired characteristics of the Jmol object (Jmol applet or JSmol). For a full, up-to-date description of all of the options, see JmolApi.js. It is recommended that any page developer interested in utilizing Jmol extensively takes a look at this file.

Values may be defined

  • either during initialization of the Info variable:
  var Info = {
    color: "#E8F4FF",
    height: 400,
    width: 400
  };
  • or separately:
  Info.color = "#E8F4FF";

Jmol object definition

(The values shown in the listing below are the defaults)

Dimensions

  • height 300
The size of the Jmol object in pixels or expressed as percent of its container height as a string in quotes: "100%".
  • width 300
The width of the Jmol object in pixels or expressed as percent of its container width as a string in quotes: "100%".

Note that for a percent to work, all surrounding HTML elements must explicitly implement the CSS attributes style=height:... and style=width:.... That includes setting height to 100% for body and html. Note also that, despite that, non-Java JSmol uses the canvas element, which will not resize correctly.

Background color

  • color "white"
The background color of the Jmol object, as a quoted text string in any JmolScript-supported format: color name, decimal triplet [r,g,b] or hexadecimal [xRRGGBB]. Note that default is now white, in contrast to black in the classic Jmol.js method.

Files and paths

  • jarFile "JmolApplet0.jar"
(Java modality only) The file to be used, usually either JmolApplet0.jar (for faster incremental loading) or JmolApplet.jar (a single 2.5+ MB download), or the signed versions JmolAppletSigned0.jar and JmolAppletSigned.jar. Be careful that the setting here should match that of isSigned.
  • isSigned false
(Java modality only) Make sure to change this to true if the file indicated for jarFile is the signed applet.
  • jarPath "."
(Java modality only) The path to the applet files. Note that if the unsigned applet is used and the page is tested locally, then all model files must be in or under the folder indicated by this value, to satisfy Java security policy.
  • j2sPath "j2s"
(HTML5 modality) The path to Folder icon.gifj2s including its own name; the contents of this folder are essential for JSmol to work.

Modality

  • use "Java noWebGL noHTML5 noImage" This string determines the various options to be tried (applet and surrogates) and the order in which to try them.
    • The default setting is the same as just Java by itself and indicates to just use Java (and display a message if Java is not enabled).
    • The value HTML5 forces use of JSmol in html5-only mode.
    • A value of Java Image would allow PNGJ files to be displayed as images or simple file loading to be delivered as an image from a server if Java is not available.
    • The value Java HTML5 would test for Java and then, if that is not available, use JSmol or maybe GLmol or HTML5-only ChemDoodle (whichever is made available).
    • The value Java WebGL HTML5 Image allows at least some model on all standard platforms.

Note that Jmol-JSO cannot detect if the user has intentionally disabled Java in some browsers. Thus, users intentionally disabling Java may only get the Java modality, and a message will be displayed that Java is not available.

Startup period

(The values shown in the listing below are the defaults)

  • coverImage ""
Set the path and filename of an image that will be displayed on top of the Jmol object (usually as an initial replacemente or during loading, see deferApplet and deferUncover parameters below).
  • coverTitle ""
Set a tip that is displayed before model starts to load.
  • coverCommand ""
Set a Jmol command or script that will be executed upon clicking the cover image.
  • deferApplet false
If set true, the model will not be loaded until the user clicks on the cover image (see coverImage parameter above).
  • deferUncover false
If set true, the cover image will remain until command execution is complete.
  • disableInitialConsole false
If set true, avoids the display of messages ('console') in the Jmol panel while the Jmol object is being built initially.
  • disableJ2SLoadMonitor false
If set true, avoids the display of messages in a single line, colored, at bottom-left of the page while code loads (both initially and every time a new module is requested by a running script).
  • readyFunction ""
The name of a JavaScript function to call when the Jmol object has been created and is ready to receive commands (and also called when the object is destroyed e.g. when the page is closed).
For example, with readyFunction: jmolIsReady any of the following JavaScript function definitions could be used:
jmolIsReady = function(theJmol) { document.title = theJmol._id + " is ready"; }
jmolIsReady = function() { alert('Welcome to Jmol!'); }
function jmolIsReady() { alert('Welcome to Jmol!'); }

Model loading

(The values shown in the listing below are the defaults)

  • defaultModel ""
A model to be retrieved from a public database and displayed when the Jmol object has finished loading.
  • script ""
A script to run when the Jmol object has finished loading. Note that indicating a script here is not necessary; with Jmol-JSO, unlike with Jmol.js, you can start making script calls to Jmol as soon as the Jmol wrapper object has been created in JavaScript; there is no need to wait for Jmol object initialization to have completed.
  • src ""
is the same as script (only included because it is the syntax commonly used for images).

Customization or extras

(The values shown in the listing below are the defaults)

  • addSelectionOptions false
Set this value to true if you want to display, below the Jmol object, a menu with options for loading structures from public databases.
  • console "***_infodiv"
The ID in html of the container or div that will receive output from Jmol. Default value is the Jmol Object name/id followed by "_infodiv", and it is contained in the info panel that may be displayed alternatively to the Jmol viewer.
  • debug false
Set this value to true if you are having problems getting your page to show the Jmol object, buttons or ther controls.
  • memoryLimit 512
(Java modality only) The maximum amount of memory allowed for the Java applet, in MB.
  • serverURL "http://chemapps.stolaf.edu/jmol/jsmol/jsmol.php"
The URL of the server to be used for getting file data into non-Java modalities. This can be left as default, since that is a public site accessible to cross-domain AJAX calls, but it can perhaps better be installed on the user's host for better performance.
  • usecommandthread false
The signed Jmol Java applet generally runs commands by passing them to a command thread that is established when the applet is created, while the unsigned applet does not. You can change this behavior if you are observing Java security issues. Otherwise, it should not be adjusted.

Callbacks

There are several parameters that in Jmol.js could be set using the jmolSetParameter() or jmolSetCallback() functions. These are discussed in sets:

  • animframecallback
  • appletreadycallback
  • atommovedcallback
  • echocallback
  • evalcallback
  • hovercallback
  • loadstructcallback
  • messagecallback
  • pickcallback
  • measurecallback
  • minimizationcallback
  • resizecallback
  • scriptcallback
  • synccallback

These callbacks allow the page designer to get information about what is happening within the Jmol object. The name of a JavaScript function, in single- or double-quotes should be given here if desired. Do not use function() {....} syntax.

Misc.

  • language
This setting can be used to specify a language to be used in the JmolApplet interface (only for the Java version and primarily for testing; the default language used in the applet is automatically detected from the system settings of the user's browser).
Please note that language (localization) is not currently implemented in non-Java surrogates (including JSmol).
  • boxbgcolor
  • boxfgcolor
  • boxmessage
  • progressbar
  • progresscolor
These five values generally should not be adjusted.

Contributors

AngelHerraez