You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
563 B
25 lines
563 B
#!/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();
|