summaryrefslogtreecommitdiffstats
path: root/kjsembed/docs/examples/readonlypart/readonlypart.js
blob: de06edd2d1621d7fb0ab0debcfec74313348f70e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env kjscmd

// Example that provides a basic HTML browser

// Get URL to load
var url = 'http://www.kde.org/';
if ( application.args.length )
   url = application.args[0];

// Create the UI
var mw = new TDEMainWindow();
var box = new TQHBox( mw );
mw.setCentralWidget(box);

// Create the view
var view = Factory.createROPart( "text/html", box, "view" );
view.connect(view.child(0), 'openURLRequest(const KURL&,const KParts::URLArgs&)', 'openURL(const KURL&)' )
view.openURL( url );

// Show the GUI
mw.resize(650,500);
mw.show();

application.exec();