summaryrefslogtreecommitdiffstats
path: root/kjsembed/docs/examples/connect/connect.js
blob: 28cec189fe12feff7b1fb447da2a1c3f6d676451 (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

//
// Demo that connects C++ signals to JS slots of various types.
//

// Load the demo gui
var top = Factory.loadui( 'connect.ui' );

// Util func to print a msg
function msg(s)
{
  top.child('output').append(s);
}

// JS object we connect to
function DemoObj()
{
   this.func_void = function() { msg('void'); }
   this.func_bool = function(b) { msg(b); }
   this.func_int = function(i) { msg(i); }
   this.func_string = function(s) { msg(s); }
   this.func_double = function(d) { msg(d); }
}

//
// Main
//

var obj = new DemoObj();

var ve = top.child('v');
var be = top.child('b');
var ie = top.child('i');
var se = top.child('s');
var de = top.child('d');

top.connect( ve, 'clicked()', obj, 'func_void' );
top.connect( be, 'toggled(bool)', obj, 'func_bool' );
top.connect( ie, 'valueChanged(int)', obj, 'func_int' );
top.connect( se, 'textChanged(const TQString&)', obj, 'func_string' );
top.connect( de, 'valueChanged(double)', obj, 'func_double' );

top.show();
application.exec();