blob: d1ef27468ab40dce9424f40e53a6b69ab6151a4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/usr/bin/env kjscmd
/**
* Test of TQChildEvent handling. This example will not work at the moment
* because support for these events is disabled. The problem occurs because we
* reenter the interpreter if the object was created by js.
*/
var top = new TQVBox();
var hbox = new TQHBox(top, 'button_hbox');
var add = new TQPushButton(hbox, 'add_button');
var del = new TQPushButton(hbox, 'del_button');
add.text = 'Add';
del.text = 'Delete';
top.childInsertEvent = function(ev)
{
println( 'Inserted!!!!!' );
}
top.childRemoveEvent = function(ev)
{
println( 'Removed! ' + ev.className );
}
top.addSlot = function()
{
l = new TQLabel( this, 'demo_label' );
l.text = 'Hello World';
l.show();
}
top.delSlot = function()
{
if ( top.childCount() > 2 ) {
top.child( top.childCount()-1 ).deleteLater();
}
}
top.connect( add, 'clicked()', top, 'addSlot' );
top.connect( del, 'clicked()', top, 'delSlot' );
top.show();
application.exec();
|