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
67
68
69
70
71
72
73
74
75
76
|
/* --------------------- options ------------ */
SQL.Options = function(owner) {
this.owner = owner;
this.dom = {
container:OZ.$("opts"),
btn:OZ.$("options")
}
this.dom.btn.value = _("options");
this.save = this.save.bind(this);
this.build();
}
SQL.Options.prototype.build = function() {
this.dom.optionlocale = OZ.$("optionlocale");
this.dom.optiondb = OZ.$("optiondb");
this.dom.optionsnap = OZ.$("optionsnap");
this.dom.optionpattern = OZ.$("optionpattern");
this.dom.optionhide = OZ.$("optionhide");
this.dom.optionvector = OZ.$("optionvector");
this.dom.optionshowsize = OZ.$("optionshowsize");
this.dom.optionshowtype = OZ.$("optionshowtype");
var ids = ["language","db","snap","pattern","hide","vector","showsize","showtype","optionsnapnotice","optionpatternnotice","optionsnotice"];
for (var i=0;i<ids.length;i++) {
var id = ids[i];
var elm = OZ.$(id);
elm.innerHTML = _(id);
}
var ls = CONFIG.AVAILABLE_LOCALES;
OZ.DOM.clear(this.dom.optionlocale);
for (var i=0;i<ls.length;i++) {
var o = OZ.DOM.elm("option");
o.value = ls[i];
o.innerHTML = ls[i];
this.dom.optionlocale.appendChild(o);
if (this.owner.getOption("locale") == ls[i]) { this.dom.optionlocale.selectedIndex = i; }
}
var dbs = CONFIG.AVAILABLE_DBS;
OZ.DOM.clear(this.dom.optiondb);
for (var i=0;i<dbs.length;i++) {
var o = OZ.DOM.elm("option");
o.value = dbs[i];
o.innerHTML = dbs[i];
this.dom.optiondb.appendChild(o);
if (this.owner.getOption("db") == dbs[i]) { this.dom.optiondb.selectedIndex = i; }
}
OZ.Event.add(this.dom.btn, "click", this.click.bind(this));
this.dom.container.parentNode.removeChild(this.dom.container);
}
SQL.Options.prototype.save = function() {
this.owner.setOption("locale",this.dom.optionlocale.value);
this.owner.setOption("db",this.dom.optiondb.value);
this.owner.setOption("snap",this.dom.optionsnap.value);
this.owner.setOption("pattern",this.dom.optionpattern.value);
this.owner.setOption("hide",this.dom.optionhide.checked ? "1" : "");
this.owner.setOption("vector",this.dom.optionvector.checked ? "1" : "");
this.owner.setOption("showsize",this.dom.optionshowsize.checked ? "1" : "");
this.owner.setOption("showtype",this.dom.optionshowtype.checked ? "1" : "");
}
SQL.Options.prototype.click = function() {
this.owner.window.open(_("options"),this.dom.container,this.save);
this.dom.optionsnap.value = this.owner.getOption("snap");
this.dom.optionpattern.value = this.owner.getOption("pattern");
this.dom.optionhide.checked = this.owner.getOption("hide");
this.dom.optionvector.checked = this.owner.getOption("vector");
this.dom.optionshowsize.checked = this.owner.getOption("showsize");
this.dom.optionshowtype.checked = this.owner.getOption("showtype");
}
|