An object that represents the root javascript object and its global context, as well as information about its original script's source.
The root Javascript object is the initial Javascript object that is loaded from a string or file source. This evaluated root is often the global object and provides the context for other objects in ts context.
The Javascript root object provides utilities for reloading the file or script as needed, and maintains a cached copy of the script at the time it is run.
It is best to avoid re-evaluating the scripts constantly – this will help avoid unnecessary processing and allows for a more persistent scripting environment.
Loading a Javascript Root Object
The following is more of a proof of concept for the interoperability between Javascript and Python – the whole UI can be generated directly in Python/PySide instead.
from ToonBoom import harmony
sess = harmony.session()
js = sess.javascript
js_string = """
function setupUI( pythonFunc )
{
var mainWidget = new QWidget();
var button = new QPushButton( mainWidget );
var layout = new QHBoxLayout();
mainWidget.setLayout(layout);
layout.addWidget(button, 1, 0);
button.text = "Hello World"
button.pressed.connect( pythonFunc.call );
mainWidget.show();
return mainWidget;
}
"""
def myCallbackFunction():
print( "Hello Python World" )
js_obj = js.load_string( js_string )
js_obj["setupUI"].call( myCallbackFunction )
|
| JavascriptRootObject (const QString &javascript, const QString &filePath=QString()) |
| Construct the object based on its javascript and/or the absolute file path to that javascript. More...
|
|
void | reload (bool fromDisk=false) |
| Reevaluates the javascript object from the original string, or from the original file's path. More...
|
|
virtual bool | contains (const QVariant &propName) const override |
| Checks the if the object contains a given property at key or at value if the object is an array. More...
|
|
virtual void | remove (const QVariant &propValue) const |
| Removes a property from the object at key or at value if the object is an array. For removing at index on arrays, use pop() method instead.
|
|
virtual QVariant | pop (int propIdx) const |
| Pops a property from the array object at index. More...
|
|
virtual void | insert (int propIdx, const QVariant &propValue) const |
| Inserts a property in the middle of arrays.
|
|
virtual void | clear () const |
| Clears the object of any property.
|
|
virtual void | append (const QVariant &propValue) const |
| Appends a property to the end of an array.
|
|
QVariant | call (const QVariant &arguments=QVariant(), const QVariant &selfValue=QVariant()) |
| Calls the javascript function with the provided arguments and an object representing the object bound to the self at the function's execution. More...
|
|