summaryrefslogtreecommitdiffstats
path: root/kjsembed/tests/test_connectsignal.js
blob: e0392375e0898059f9ca13cac8dc606bd18844da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var box = new QHBox( 'tree_view' );
box.margin = 6;

var led = new KLed( box );
var check = new QCheckBox(box);
var check2 = new QCheckBox(box);

check.text = 'Light';
check2.text = 'Bounce';

check.connect( 'toggled(bool)', led, 'toggle()' );
check2.connect( 'toggled(bool)', check, 'toggled(bool)' );

box.show();