summaryrefslogtreecommitdiff
path: root/smarttv-client/Javascript/Options.js
blob: d60a9ff917792b08bd54df652ac6f42dd42bab54 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
var Options = {
	imeBox : null
};

Options.init = function() {
	_g_ime.Recog_use_YN = false;
	_g_ime.keySet = '12key';

	this.imeBox = new IMEShell("widgetServerAddr", Options.onImeCreated, 'de');
	alert ("Options Initiated");
};

Options.onComplete = function () {
	alert("Colpleted");
};

Options.onEnter = function () {
	alert("Enter: " + document.getElementById("widgetServerAddr").value );
	Config.updateContext(document.getElementById("widgetServerAddr").value);
	
	document.getElementById('widgetServerAddr').blur();

	document.getElementById("optionsScreen").style.display="none";

	if (Config.firstLaunch == true)
		Main.state = 1;
	Main.changeState(0);
	
	Config.fetchConfig();
//	Main.enableKeys();
};

Options.onBlue = function () {
	var val = document.getElementById("widgetServerAddr").value + ".";
	Options.imeBox.setString(val);
};

Options.onImeCreated = function(obj) {
//	_g_ime.keySet ("12key");
//	obj.setKeySetFunc('12key');

	obj.setKeyFunc(tvKey.KEY_RETURN, function(keyCode) { widgetAPI.sendReturnEvent(); return false; } );
	obj.setKeyFunc(tvKey.KEY_EXIT, function(keyCode) { widgetAPI.sendExitEvent(); return false; } );

	obj.setKeypadPos(650, 135);
	obj.setWordBoxPos(18, 6);
	obj.setKeyFunc(tvKey.KEY_BLUE, Options.onBlue);

	obj.setString(Config.serverAddr);
	obj.setEnterFunc(Options.onEnter);

	if (obj.setMode("_num") == false) {
		Main.log("obj.setMode(\"_num\") returns false"); 
	}

	Options.imeBox.setOnCompleteFunc(Options.onComplete);

	Options.onReady ();
};

Options.onReady = function () {
	document.getElementById('widgetServerAddr').focus();
	alert ("KeySet= " + this.imeBox.getKeySet());
};