index.js
2.23 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
if (typeof (i3GEOF) === 'undefined') {
var i3GEOF = {};
}
/*
* Classe: i3GEOF.sobre
*/
i3GEOF.sobre =
{
/*
* Variavel: aguarde
*
* Estilo do objeto DOM com a imagem de aguarde existente no cabeçalho da janela.
*/
aguarde : "",
/**
* Template no formato mustache. E preenchido na carga do javascript com o programa dependencias.php
*/
MUSTACHE : "",
/**
* Susbtitutos para o template
*/
mustacheHash : function() {
//var dicionario = i3GEO.idioma.objetoIdioma(i3GEOF.sobre.dicionario);
return i3GEO.idioma.OBJETOIDIOMA;
},
/*
* Function: inicia
*
* Inicia a ferramenta. É chamado por criaJanelaFlutuante
*
* Parametro:
*
* iddiv {String} - id do div que receberá o conteudo HTML da ferramenta
*/
inicia : function(iddiv) {
if(i3GEOF.sobre.MUSTACHE == ""){
$.get(i3GEO.configura.locaplic + "/ferramentas/sobre/template_mst.html", function(template) {
i3GEOF.sobre.MUSTACHE = template;
i3GEOF.sobre.inicia(iddiv);
});
return;
}
$i(iddiv).innerHTML = i3GEOF.sobre.html();
},
/*
* Function: html
*
* Gera o código html para apresentação das opções da ferramenta
*
* Retorno:
*
* String com o código html
*/
html : function() {
var ins = Mustache.render(i3GEOF.sobre.MUSTACHE, i3GEOF.sobre.mustacheHash());
return ins;
},
/*
* Function: iniciaJanelaFlutuante
*
* Cria a janela flutuante para controle da ferramenta.
*/
iniciaJanelaFlutuante : function() {
var janela, divid, titulo, cabecalho, minimiza;
if ($i("i3GEOF.sobre")) {
return;
}
cabecalho = function() {
};
minimiza = function() {
i3GEO.janela.minimiza("i3GEOF.sobre",200);
};
// cria a janela flutuante
titulo = "<span class='i3GeoTituloJanelaBsNolink' >" + $trad("u1") + "</span></div>";
janela = i3GEO.janela.cria(
"400px",
"350px",
"",
"",
"",
titulo,
"i3GEOF.sobre",
false,
"hd",
cabecalho,
minimiza,
"",
true,
"",
"",
"",
"",
""
);
divid = janela[2].id;
i3GEOF.sobre.aguarde = $i("i3GEOF.sobre_imagemCabecalho").style;
i3GEOF.sobre.inicia(divid);
}
};