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.
tdebindings/kjsembed/tests/test_qlistview.js

31 lines
554 B

var lv = new QListView();
lv.rootIsDecorated = true;
lv.addColumn('Name');
lv.addColumn('Description');
var i = new QListViewItem( lv );
i.setText( 0, 'One' );
i.setText( 1, 'First item' );
var j = new QListViewItem( lv );
j.setText( 0, 'Two' );
j.setText( 1, 'Second item' );
var k = new QListViewItem( i );
k.setText( 0, 'Three' );
k.setText( 1, 'Third item' );
var l = new QCheckListItem( lv );
l.setText(0, 'Four' );
lv.show();
var lvi = lv.firstChild();
while( lvi )
{
println( lvi.text(0) );
lvi = lvi.nextSibling();
}
application.exec();