Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > c3bd6e126ae81acc081d0fe64668caba > files > 28

qtoctave-0.10.1-6.mga5.x86_64.rpm

function start()
{
	print("sombrero("+widget.comboBox.currentText+")");
	widget.close()
}

function change_value(x)
{
	widget.label.text=widget.comboBox.currentText;
}

widget.pushButton.clicked.connect(start);
widget.comboBox.activated.connect(change_value);
widget.comboBox.currentIndex=2;