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.
14 lines
325 B
14 lines
325 B
var vbox=new TQVBox();
|
|
var te=new TQTimeEdit(vbox);
|
|
var okButton=new TQToolButton(vbox);
|
|
okButton.text="Ok";
|
|
|
|
function TimeChanged(q) {
|
|
alert("Time Changed: " +q);
|
|
}
|
|
|
|
vbox.connect(te, "valueChanged(const TQTime&)", this, "TimeChanged");
|
|
vbox.connect(okButton, "clicked()", this, "exit");
|
|
vbox.show();
|
|
application.exec();
|