diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 90825e2392b2d70e43c7a25b8a3752299a933894 (patch) | |
tree | e33aa27f02b74604afbfd0ea4f1cfca8833d882a /kjsembed/docs/write_classes.js | |
download | tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.tar.gz tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 ); + |