diff options
Diffstat (limited to 'kjsembed/docs/write_classes.js')
-rw-r--r-- | kjsembed/docs/write_classes.js | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/kjsembed/docs/write_classes.js b/kjsembed/docs/write_classes.js new file mode 100644 index 00000000..ed47578c --- /dev/null +++ b/kjsembed/docs/write_classes.js @@ -0,0 +1,36 @@ + +text = ''; + + +text += '<html>\n'; + +text += '<head>\n'; +text += '<title>Constructors</title>\n'; +text += '<link href="../kjsembed.css" rel="stylesheet" type="text/css">\n'; +text += '</head>\n'; + +text += '<body>\n'; +text += '<h1>Constructors</h1>\n'; +text += '<hr>\n'; + +text += 'Object that scripts can create. This list includes objects\n'; +text += 'defined by QWidgetFactory as well as those with custom bindings.\n'; +text += '<ul>\n'; + + +var hrefroot = 'jsref/'; +var cons = constructors().sort(); +for ( var i = 0; i < cons.length; i++ ) { + text += '<li>'; + var href = cons[i].toLowerCase() + '.html'; + var name = cons[i]; + text += '<a href="' + hrefroot + href + '">' + name + '</a>\n'; +} +text += '</ul>\n'; +text += '<hr>\n'; +text += '</body>\n'; + +text += '</html>'; + +println( text ); + |