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_qcombobox.js

9 lines
204 B

var h=new QHBox(this);
var combo = new QComboBox(h, "combo");
combo.insertItem("Item 1");
combo.insertItem("Item 2");
combo.insertItem("Item 3");
combo.insertItem("Item 4");
h.show();
application.exec();