| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118 | 
							- var counter_new_functions = 0;
 
- var counter_new_parameters = 0;
 
- var counter_new_variables = 0;
 
- var counter_new_globals = 0;
 
- function addFunctionHandler() {
 
- 	new_function = new Funcao(i18n("new_function") + "_" + counter_new_functions, tiposDados.void, 0, new Array(), false, false, null, new Comentario(i18n('text_comment_start')));
 
- 	adicionarFuncao(new_function);
 
- 	counter_new_functions ++;
 
- 	renderAlgorithm();
 
- }
 
- function addGlobalVar() {
 
- 	var v = new Variavel(tiposDados.integer, i18n('new_global') + '_' + counter_new_globals, 1);
 
- 	counter_new_globals ++;
 
- 	programa.globais.push(v);
 
- 	renderAlgorithm();
 
- }
 
- function updateSequenceFunctionHandler(index_from, index_to) {
 
- 	programa.funcoes.splice(index_to, 0, programa.funcoes.splice(index_from, 1)[0]);
 
- 	renderAlgorithm();
 
- }
 
- function removeFunctionHandler(div_function, sequence) {
 
- 	programa.funcoes.splice(sequence, 1);
 
- 	$(div_function).slideUp(400, function(){
 
- 	    renderAlgorithm();
 
- 	});
 
-     
 
- }
 
- function minimizeFunctionHandler(div_function, sequence) {
 
- 	$(div_function).find(".function_area").toggle();
 
- 	programa.funcoes[sequence].esta_oculta = !programa.funcoes[sequence].esta_oculta;
 
- }
 
- function renderAlgorithm() {
 
- 	$('.all_functions').empty();
 
- 	for (i = 0; i < programa.funcoes.length; i++) {
 
- 		appendFunction(programa.funcoes[i], i);
 
- 	}
 
- 	$('.list_globals').empty();
 
- 	if (programa.globais.length > 0) {
 
- 		renderGlobals();
 
- 	}
 
- 	$('.data_types_dropdown').dropdown();
 
- 	
 
- 	$('.parameter_data_types_dropdown').dropdown();
 
- 	addHandlers();
 
- }
 
- function deleteGlobal(which_global) {
 
- 	programa.globais.splice(which_global, 1);
 
- 	renderAlgorithm();
 
- }
 
- function alternateGlobalConst(which_global) {
 
- 	programa.globais[which_global].eh_constante = !programa.globais[which_global].eh_constante;
 
- 	renderAlgorithm();
 
- }
 
- function renderGlobals() {
 
- 	var ret = "";
 
- 	if (programa.globais.length > 0) {
 
- 		for (var j = 0; j < programa.globais.length; j++) {
 
- 			var par_temp = programa.globais[j];
 
- 			ret += '<div class="ui label name_variable"><div class="global_const">const: ';
 
- 			ret += '<i class="ui icon toggle '+(par_temp.eh_constante?"on":"off")+' " onclick="alternateGlobalConst('+j+')"></i></div><span class="span_name_variable" ondblclick="enableNameGlobalUpdate(this.parentNode, '+j+')">'+par_temp.nome+'</span> <i class="icon small pencil alternate enable_edit_name_parameter" onclick="enableNameGlobalUpdate(this.parentNode, '+j+')"></i>';
 
- 			ret += '<div class="ui dropdown global_type seq_'+j+'">';
 
-   	
 
- 		  	if (par_temp.dimensoes > 0) {
 
- 		  		ret += '<div class="text seq_'+j+'">'+ i18n(tiposDados.vector)+':'+i18n(par_temp.tipo);
 
- 		  		for (i = 0; i < par_temp.dimensoes; i ++) {
 
- 		  			ret += ' [ ] ';
 
- 		  		}
 
- 		  		ret += '</div>';
 
- 		  	} else {
 
- 		  		ret += '<div class="text seq_'+j+'">'+i18n(par_temp.tipo)+'</div>';
 
- 		  	}
 
- 		  	ret += '<i class="dropdown icon"></i>'
 
- 		  		+ '<div class="menu seq_'+j+'">';
 
- 		  	var i = 0;
 
- 		  	for (tm in tiposDados) {
 
- 		  		i ++;
 
- 		  		if (i == 1) { continue; }
 
- 		  		if (i == (Object.keys(tiposDados).length)) { break; }
 
- 		  		ret += '<div class="item ' + (par_temp.tipo == tm ? ' selected ' : '') + ' seq_'+j+' '+tm+'" >'+i18n(tm)+'</div>';
 
- 		  	}
 
- 		  	i = 0;
 
- 		  	for (tm in tiposDados) {
 
- 		  		i ++;
 
- 		  		if (i == 1) { continue; }
 
- 		  		if (i == (Object.keys(tiposDados).length)) { break; }
 
- 		  		ret += '<div class="item seq_'+j+' ">'
 
- 			    	+ '<i class="dropdown icon"></i>'
 
- 			    	+  i18n(tiposDados.vector)+':'+i18n(tm)
 
- 			      	+  '<div class="menu seq_'+j+' ">'
 
- 				        + '<div class="item seq_'+j+' '+tm+'" data-text="'+ i18n(tiposDados.vector)+':'+i18n(tm)+' [ ] ">[ ]</div>'
 
- 				        + '<div class="item seq_'+j+' '+tm+'" data-text="'+ i18n(tiposDados.vector)+':'+i18n(tm)+' [ ] [ ] ">[ ] [ ] </div>'
 
- 			      	+  '</div>'
 
- 			    	+ '</div>';	
 
- 		  	}
 
-     		ret += '</div></div>  = ';
 
-     		if (par_temp.dimensoes == 0) {
 
-     			if (par_temp.tipo == tiposDados.real) {
 
-     				ret += '<div class="div_valor_var"><span class="span_value_variable" ondblclick="enableGlobalValueUpdate(this.parentNode, '+j+')" >'+par_temp.valor.toFixed(1)+'</span> <i class="icon small pencil alternate enable_edit_name_function" onclick="enableGlobalValueUpdate(this.parentNode, '+j+')"></i></div> ';
 
-     			} else {
 
-     				if (par_temp.tipo == tiposDados.boolean) {
 
- 	    				ret += '<div class="div_valor_var"><span class="span_value_variable" ondblclick="alternateBooleanGlobalValue(this.parentNode, '+j+')" >'+par_temp.valor+'</span> <i class="icon small pencil alternate enable_edit_name_function" onclick="alternateBooleanGlobalValue(this.parentNode, '+j+')"></i></div> ';
 
- 	    			} else {
 
-     					ret += '<div class="div_valor_var"><span class="span_value_variable" ondblclick="enableGlobalValueUpdate(this.parentNode, '+j+')" >'+par_temp.valor+'</span> <i class="icon small pencil alternate enable_edit_name_function" onclick="enableGlobalValueUpdate(this.parentNode, '+j+')"></i></div> ';
 
- 	    			}
 
-     			}
 
-     		} else {
 
-     			ret += '<table class="tabela_var">';
 
-     			if (par_temp.dimensoes == 1) {
 
-     				ret += '<tr>';
 
-     				if (par_temp.tipo == tiposDados.real) {
 
-     					for (var k = 0; k < par_temp.colunas; k++) {
 
- 	    					ret += '<td><span class="span_value_variable" ondblclick="enableGlobalVectorValueUpdate(this.parentNode, '+j+', '+k+')" >'+par_temp.valor[k].toFixed(1)+'</span>'+'</td>';
 
- 	    				}
 
-     				} else {
 
-     					for (var k = 0; k < par_temp.colunas; k++) {
 
-     						if (par_temp.tipo == tiposDados.boolean) {
 
-     							ret += '<td><span class="span_value_variable" ondblclick="alternateBooleanGlobalVectorValue(this.parentNode, '+j+', '+k+')" >'+par_temp.valor[k]+'</span>'+'</td>';
 
-     						} else {
 
-     							ret += '<td><span class="span_value_variable" ondblclick="enableGlobalVectorValueUpdate(this.parentNode, '+j+', '+k+')" >'+par_temp.valor[k]+'</span>'+'</td>';
 
-     						}
 
-     					}
 
-     				}
 
-     				
 
-     				ret += '</tr>';
 
-     				ret += '</table>';
 
-     				ret += '<div class="buttons_manage_columns"><i class="ui icon minus square outline" onclick="removeGlobalColumnVector('+j+')"></i>'
 
-     			    	+ ' <i class="ui icon plus square outline" onclick="addGlobalColumnVector('+j+')"></i></div>';
 
-     			}
 
-     			if (par_temp.dimensoes == 2) {
 
-     				if (par_temp.tipo == tiposDados.real) {
 
-     					for (var l = 0; l < par_temp.linhas; l++) {
 
- 		    				ret += '<tr>';
 
- 		    				for (var k = 0; k < par_temp.colunas; k++) {
 
- 		    					ret += '<td><span class="span_value_variable" ondblclick="enableGlobalMatrixValueUpdate(this.parentNode, '+j+', '+l+', '+k+')" >'+par_temp.valor[l][k].toFixed(1)+'</span>'+'</td>';
 
- 		    				} 
 
- 		    				ret += '</tr>';
 
- 	    				}
 
-     				} else {
 
-     					for (var l = 0; l < par_temp.linhas; l++) {
 
- 		    				ret += '<tr>';
 
- 		    				for (var k = 0; k < par_temp.colunas; k++) {
 
- 		    					if (par_temp.tipo == tiposDados.boolean) { 
 
- 		    						ret += '<td><span class="span_value_variable" ondblclick="alternateBooleanGlobalMatrixValue(this.parentNode, '+j+', '+l+', '+k+')" >'+par_temp.valor[l][k]+'</span>'+'</td>';
 
- 		    					} else {
 
- 		    						ret += '<td><span class="span_value_variable" ondblclick="enableGlobalMatrixValueUpdate(this.parentNode, '+j+', '+l+', '+k+')" >'+par_temp.valor[l][k]+'</span>'+'</td>';
 
- 		    					}
 
- 		    				} 
 
- 		    				ret += '</tr>';
 
- 	    				}
 
-     				}
 
-     				if (par_temp.linhas == 0) {
 
-     					ret += '<tr><td></td></tr>';
 
-     				}
 
-     				ret += '<tr><td colspan="'+par_temp.colunas+'" class="tr_manage_lines"><i class="ui icon minus square outline" onclick="removeLineGlobalMatrix('+j+')"></i>'
 
-     			    	+ ' <i class="ui icon plus square outline" onclick="addLineGlobalMatrix('+j+')"></i></td></tr>';
 
-     				ret += '</table>';
 
-     				ret += '<div class="buttons_manage_columns"><i class="ui icon minus square outline" onclick="removeColumnGlobalMatrix('+j+')"></i>'
 
-     			    	+ ' <i class="ui icon plus square outline" onclick="addColumnGlobalMatrix('+j+')"></i></div>';
 
-     			}
 
-     			
 
-     		}
 
- 			ret += ' <i class="red icon times remove_parameter" onclick="deleteGlobal('+j+')"></i></div>';
 
- 		}
 
- 	}
 
- 	$('.list_globals').append(ret); 
 
- }
 
- var has_element_created_draged = false;
 
- var which_element_is_draged = null;
 
- function createCommentDragObject() {
 
- 	var ret = '';
 
- 	ret += '<div class="ui comment created_element"> <i class="ui icon small quote left"></i> <span class="span_comment_text" "> Testando </span>';
 
- 	ret += '</div>';
 
- 	has_element_created_draged = true;
 
- 	which_element_is_draged = tiposComandos.comment;
 
- 	$('body').append(ret);
 
- }
 
- var myDraggable = null;
 
- // Yeah... we're going to hack the widget
 
- var widget = null;
 
- var clickEvent = null;
 
- function flutuateCreatedElement() {
 
- 	$('.created_element').css('top', mouseY);
 
-     $('.created_element').css('left', mouseX);
 
-       myDraggable = $('.created_element').draggable();
 
-   
 
- 	  // Yeah... we're going to hack the widget
 
- 	  widget = myDraggable.data('ui-draggable');
 
- 	  clickEvent = null;
 
- 	  
 
- 	  myDraggable.click(function(event){
 
- 	      if(!clickEvent){
 
- 	        widget._mouseStart(event);
 
- 	        clickEvent = event;
 
- 	      }
 
- 	      else {
 
- 	        widget._mouseUp(event);
 
- 	        clickEvent = null;
 
- 	      }
 
- 	    });
 
- 	    
 
- 	  $(document).mousemove(function(event){
 
- 	    if(clickEvent){
 
- 	      // We need to set this to our own clickEvent, otherwise
 
- 	      // it won't position correctly.
 
- 	      widget._mouseDownEvent = clickEvent;
 
- 	      widget._mouseMove(event);
 
- 	    }
 
- 	  });
 
- }
 
- function addHandlers() {
 
- 	$('.ui.buttons .dropdown').dropdown({
 
- 		    onChange: function(value, text, $selectedItem) {
 
- 		    	if (value == tiposComandos.comment) {
 
- 		    		createCommentDragObject();
 
- 		    	}
 
- 		    	flutuateCreatedElement();
 
- 		    }
 
- 		});
 
- 	$('.ui.dropdown.function_return')
 
-     	.dropdown({
 
- 		    onChange: function(value, text, $selectedItem) {
 
- 		    	classList = $selectedItem.attr('class').split(/\s+/);
 
- 				$.each(classList, function(index, item) {
 
- 				    if (item.indexOf("seq_") > -1) {
 
- 				        seq = item.split("seq_")[1];
 
- 						for (tm in tiposDados) {
 
- 							if ($selectedItem.hasClass(tm)) {
 
- 								programa.funcoes[seq].tipo_retorno = tm;
 
- 							} 
 
- 						}
 
- 				        updateFunctionReturn(seq, value);
 
- 				    }
 
- 				});
 
- 		    }
 
- 		})
 
-   	;
 
-   	$('.ui.dropdown.parameter_type').dropdown({
 
- 		    onChange: function(value, text, $selectedItem) {
 
- 		    	classList = $selectedItem.attr('class').split(/\s+/);
 
- 		    	var fun;
 
- 				var seq;
 
- 				$.each(classList, function(index, item) {
 
- 					if (item.indexOf("fun_") > -1) {
 
- 						fun = item.split("fun_")[1];
 
- 					}
 
- 				    if (item.indexOf("seq_") > -1) {
 
- 				        seq = item.split("seq_")[1];
 
- 				    }
 
- 				});
 
- 				var dim = 0;
 
- 				if (value.indexOf(i18n(tiposDados.vector)) > -1) {
 
- 					dim = 1;
 
- 				}
 
- 				for (tm in tiposDados) {
 
- 					if ($selectedItem.hasClass(tm)) {
 
- 						updateParameterType(fun, seq, tm, dim);
 
- 						break;
 
- 					} 
 
- 				}
 
- 		    }
 
- 		});
 
-   	$('.ui.dropdown.variable_type').dropdown({
 
- 		    onChange: function(value, text, $selectedItem) {
 
- 		    	classList = $selectedItem.attr('class').split(/\s+/);
 
- 		    	var fun;
 
- 				var seq;
 
- 				$.each(classList, function(index, item) {
 
- 					if (item.indexOf("fun_") > -1) {
 
- 						fun = item.split("fun_")[1];
 
- 					}
 
- 				    if (item.indexOf("seq_") > -1) {
 
- 				        seq = item.split("seq_")[1];
 
- 				    }
 
- 				});
 
- 				var dim = 0;
 
- 				if (value.indexOf(i18n(tiposDados.vector)) > -1) {
 
- 					dim = value.split('[').length - 1;
 
- 				}
 
- 				for (tm in tiposDados) {
 
- 					if ($selectedItem.hasClass(tm)) {
 
- 						updateVariableType(fun, seq, tm, dim);
 
- 						break;
 
- 					} 
 
- 				}
 
- 		    }
 
- 		});
 
-   	$('.ui.dropdown.global_type').dropdown({
 
- 		    onChange: function(value, text, $selectedItem) {
 
- 		    	classList = $selectedItem.attr('class').split(/\s+/);
 
- 		    	var fun;
 
- 				var seq;
 
- 				$.each(classList, function(index, item) {
 
- 				    if (item.indexOf("seq_") > -1) {
 
- 				        seq = item.split("seq_")[1];
 
- 				    }
 
- 				});
 
- 				var dim = 0;
 
- 				if (value.indexOf(i18n(tiposDados.vector)) > -1) {
 
- 					dim = value.split('[').length - 1;
 
- 				}
 
- 				for (tm in tiposDados) {
 
- 					if ($selectedItem.hasClass(tm)) {
 
- 						updateGlobalType(seq, tm, dim);
 
- 						break;
 
- 					} 
 
- 				}
 
- 		    }
 
- 		});
 
- }
 
- function updateGlobalType(wich_variable, new_value, new_dimensions) {
 
- 	programa.globais[wich_variable].tipo = new_value;
 
- 	programa.globais[wich_variable].dimensoes = new_dimensions;
 
- 	if (new_dimensions > 0) {
 
- 		programa.globais[wich_variable].linhas = new_dimensions;
 
- 		programa.globais[wich_variable].colunas = 2;
 
- 	}
 
- 	if (new_value == tiposDados.integer) {
 
- 		if (new_dimensions == 0) {
 
- 			programa.globais[wich_variable].valor = 1;
 
- 		}
 
- 		if (new_dimensions == 1) {
 
- 			programa.globais[wich_variable].valor = [1, 1];
 
- 		}
 
- 		if (new_dimensions == 2) {
 
- 			programa.globais[wich_variable].valor = [[1, 1], [1, 1]];
 
- 		}
 
- 	}
 
- 	if (new_value == tiposDados.real) {
 
- 		if (new_dimensions == 0) {
 
- 			programa.globais[wich_variable].valor = 1.0;
 
- 		}
 
- 		if (new_dimensions == 1) {
 
- 			programa.globais[wich_variable].valor = [1.0, 1.0];
 
- 		}
 
- 		if (new_dimensions == 2) {
 
- 			programa.globais[wich_variable].valor = [[1.0, 1.0], [1.0, 1.0]];
 
- 		}
 
- 	}
 
- 	if (new_value == tiposDados.text) {
 
- 		if (new_dimensions == 0) {
 
- 			programa.globais[wich_variable].valor = i18n(tiposDados.text);
 
- 		}
 
- 		if (new_dimensions == 1) {
 
- 			programa.globais[wich_variable].valor = [i18n(tiposDados.text), i18n(tiposDados.text)];
 
- 		}
 
- 		if (new_dimensions == 2) {
 
- 			programa.globais[wich_variable].valor = [[i18n(tiposDados.text), i18n(tiposDados.text)], [i18n(tiposDados.text), i18n(tiposDados.text)]];
 
- 		}
 
- 	}
 
- 	if (new_value == tiposDados.boolean) {
 
- 		if (new_dimensions == 0) {
 
- 			programa.globais[wich_variable].valor = true;
 
- 		}
 
- 		if (new_dimensions == 1) {
 
- 			programa.globais[wich_variable].valor = [true, true];
 
- 		}
 
- 		if (new_dimensions == 2) {
 
- 			programa.globais[wich_variable].valor = [[true, true], [true, true]];
 
- 		}
 
- 	}
 
- 	renderAlgorithm();
 
- }
 
- function updateVariableType(wich_function, wich_variable, new_value, new_dimensions) {
 
- 	programa.funcoes[wich_function].variaveis[wich_variable].tipo = new_value;
 
- 	programa.funcoes[wich_function].variaveis[wich_variable].dimensoes = new_dimensions;
 
- 	if (new_dimensions > 0) {
 
- 		programa.funcoes[wich_function].variaveis[wich_variable].linhas = new_dimensions;
 
- 		programa.funcoes[wich_function].variaveis[wich_variable].colunas = 2;
 
- 	}
 
- 	if (new_value == tiposDados.integer) {
 
- 		if (new_dimensions == 0) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = 1;
 
- 		}
 
- 		if (new_dimensions == 1) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = [1, 1];
 
- 		}
 
- 		if (new_dimensions == 2) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = [[1, 1], [1, 1]];
 
- 		}
 
- 	}
 
- 	if (new_value == tiposDados.real) {
 
- 		if (new_dimensions == 0) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = 1.0;
 
- 		}
 
- 		if (new_dimensions == 1) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = [1.0, 1.0];
 
- 		}
 
- 		if (new_dimensions == 2) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = [[1.0, 1.0], [1.0, 1.0]];
 
- 		}
 
- 	}
 
- 	if (new_value == tiposDados.text) {
 
- 		if (new_dimensions == 0) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = i18n(tiposDados.text);
 
- 		}
 
- 		if (new_dimensions == 1) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = [i18n(tiposDados.text), i18n(tiposDados.text)];
 
- 		}
 
- 		if (new_dimensions == 2) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = [[i18n(tiposDados.text), i18n(tiposDados.text)], [i18n(tiposDados.text), i18n(tiposDados.text)]];
 
- 		}
 
- 	}
 
- 	if (new_value == tiposDados.boolean) {
 
- 		if (new_dimensions == 0) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = true;
 
- 		}
 
- 		if (new_dimensions == 1) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = [true, true];
 
- 		}
 
- 		if (new_dimensions == 2) {
 
- 			programa.funcoes[wich_function].variaveis[wich_variable].valor = [[true, true], [true, true]];
 
- 		}
 
- 	}
 
- 	renderAlgorithm();
 
- }
 
- function addGlobalColumnVector(which_variable) {
 
- 	programa.globais[which_variable].colunas ++;
 
- 	if (programa.globais[which_variable].tipo == tiposDados.integer) {
 
- 		programa.globais[which_variable].valor.push(1);
 
- 	}
 
- 	if (programa.globais[which_variable].tipo == tiposDados.real) {
 
- 		programa.globais[which_variable].valor.push(1.0);
 
- 	}
 
- 	if (programa.globais[which_variable].tipo == tiposDados.text) {
 
- 		programa.globais[which_variable].valor.push(i18n(tiposDados.text));
 
- 	}
 
- 	if (programa.globais[which_variable].tipo == tiposDados.boolean) {
 
- 		programa.globais[which_variable].valor.push(true);
 
- 	}
 
- 	renderAlgorithm();
 
- }
 
- function addColumnVector(which_function, which_variable) {
 
- 	programa.funcoes[which_function].variaveis[which_variable].colunas ++;
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.integer) {
 
- 		programa.funcoes[which_function].variaveis[which_variable].valor.push(1);
 
- 	}
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.real) {
 
- 		programa.funcoes[which_function].variaveis[which_variable].valor.push(1.0);
 
- 	}
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.text) {
 
- 		programa.funcoes[which_function].variaveis[which_variable].valor.push(i18n(tiposDados.text));
 
- 	}
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.boolean) {
 
- 		programa.funcoes[which_function].variaveis[which_variable].valor.push(true);
 
- 	}
 
- 	renderAlgorithm();
 
- }
 
- function addColumnMatrix(which_function, which_variable) {
 
- 	programa.funcoes[which_function].variaveis[which_variable].colunas ++;
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.integer) {
 
- 		for (i = 0; i < programa.funcoes[which_function].variaveis[which_variable].linhas; i++) {
 
- 			programa.funcoes[which_function].variaveis[which_variable].valor[i].push(1);
 
- 		}
 
- 	}
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.real) {
 
- 		for (i = 0; i < programa.funcoes[which_function].variaveis[which_variable].linhas; i++) {
 
- 			programa.funcoes[which_function].variaveis[which_variable].valor[i].push(1.0);
 
- 		}
 
- 	}
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.text) {
 
- 		for (i = 0; i < programa.funcoes[which_function].variaveis[which_variable].linhas; i++) {
 
- 			programa.funcoes[which_function].variaveis[which_variable].valor[i].push(i18n(tiposDados.text));
 
- 		}
 
- 	}
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.boolean) {
 
- 		for (i = 0; i < programa.funcoes[which_function].variaveis[which_variable].linhas; i++) {
 
- 			programa.funcoes[which_function].variaveis[which_variable].valor[i].push(true);
 
- 		}
 
- 	}
 
- 	renderAlgorithm();
 
- }
 
- function addColumnGlobalMatrix(which_variable) {
 
- 	programa.globais[which_variable].colunas ++;
 
- 	if (programa.globais[which_variable].tipo == tiposDados.integer) {
 
- 		for (i = 0; i < programa.globais[which_variable].linhas; i++) {
 
- 			programa.globais[which_variable].valor[i].push(1);
 
- 		}
 
- 	}
 
- 	if (programa.globais[which_variable].tipo == tiposDados.real) {
 
- 		for (i = 0; i < programa.globais[which_variable].linhas; i++) {
 
- 			programa.globais[which_variable].valor[i].push(1.0);
 
- 		}
 
- 	}
 
- 	if (programa.globais[which_variable].tipo == tiposDados.text) {
 
- 		for (i = 0; i < programa.globais[which_variable].linhas; i++) {
 
- 			programa.globais[which_variable].valor[i].push(i18n(tiposDados.text));
 
- 		}
 
- 	}
 
- 	if (programa.globais[which_variable].tipo == tiposDados.boolean) {
 
- 		for (i = 0; i < programa.globais[which_variable].linhas; i++) {
 
- 			programa.globais[which_variable].valor[i].push(true);
 
- 		}
 
- 	}
 
- 	renderAlgorithm();
 
- }
 
- function addLineMatrix(which_function, which_variable) {
 
- 	programa.funcoes[which_function].variaveis[which_variable].linhas ++;
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.integer) {
 
- 		var n_l = [];
 
- 		for (i = 0; i < programa.funcoes[which_function].variaveis[which_variable].colunas; i++) {
 
- 			n_l.push(1);
 
- 		}
 
- 		programa.funcoes[which_function].variaveis[which_variable].valor.push(n_l);
 
- 	}
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.real) {
 
- 		var n_l = [];
 
- 		for (i = 0; i < programa.funcoes[which_function].variaveis[which_variable].colunas; i++) {
 
- 			n_l.push(1.0);
 
- 		}
 
- 		programa.funcoes[which_function].variaveis[which_variable].valor.push(n_l);
 
- 	}
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.text) {
 
- 		var n_l = [];
 
- 		for (i = 0; i < programa.funcoes[which_function].variaveis[which_variable].colunas; i++) {
 
- 			n_l.push(i18n(tiposDados.text));
 
- 		}
 
- 		programa.funcoes[which_function].variaveis[which_variable].valor.push(n_l);
 
- 	}
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].tipo == tiposDados.boolean) {
 
- 		var n_l = [];
 
- 		for (i = 0; i < programa.funcoes[which_function].variaveis[which_variable].colunas; i++) {
 
- 			n_l.push(true);
 
- 		}
 
- 		programa.funcoes[which_function].variaveis[which_variable].valor.push(n_l);
 
- 	}
 
- 	renderAlgorithm();
 
- }
 
- function addLineGlobalMatrix(which_variable) {
 
- 	programa.globais[which_variable].linhas ++;
 
- 	if (programa.globais[which_variable].tipo == tiposDados.integer) {
 
- 		var n_l = [];
 
- 		for (i = 0; i < programa.globais[which_variable].colunas; i++) {
 
- 			n_l.push(1);
 
- 		}
 
- 		programa.globais[which_variable].valor.push(n_l);
 
- 	}
 
- 	if (programa.globais[which_variable].tipo == tiposDados.real) {
 
- 		var n_l = [];
 
- 		for (i = 0; i < programa.globais[which_variable].colunas; i++) {
 
- 			n_l.push(1.0);
 
- 		}
 
- 		programa.globais[which_variable].valor.push(n_l);
 
- 	}
 
- 	if (programa.globais[which_variable].tipo == tiposDados.text) {
 
- 		var n_l = [];
 
- 		for (i = 0; i < programa.globais[which_variable].colunas; i++) {
 
- 			n_l.push(i18n(tiposDados.text));
 
- 		}
 
- 		programa.globais[which_variable].valor.push(n_l);
 
- 	}
 
- 	if (programa.globais[which_variable].tipo == tiposDados.boolean) {
 
- 		var n_l = [];
 
- 		for (i = 0; i < programa.globais[which_variable].colunas; i++) {
 
- 			n_l.push(true);
 
- 		}
 
- 		programa.globais[which_variable].valor.push(n_l);
 
- 	}
 
- 	renderAlgorithm();
 
- }
 
- function removeGlobalColumnVector(which_variable) {
 
- 	if (programa.globais[which_variable].colunas == 0) {
 
- 		return;
 
- 	}
 
- 	programa.globais[which_variable].colunas --;
 
- 	programa.globais[which_variable].valor.splice(programa.globais[which_variable].valor.length - 1, 1);
 
- 	renderAlgorithm();
 
- }
 
- function removeColumnVector(which_function, which_variable) {
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].colunas == 0) {
 
- 		return;
 
- 	}
 
- 	programa.funcoes[which_function].variaveis[which_variable].colunas --;
 
- 	programa.funcoes[which_function].variaveis[which_variable].valor.splice(programa.funcoes[which_function].variaveis[which_variable].valor.length - 1, 1);
 
- 	renderAlgorithm();
 
- }
 
- function removeColumnMatrix(which_function, which_variable) {
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].colunas == 0) {
 
- 		return;
 
- 	}
 
- 	programa.funcoes[which_function].variaveis[which_variable].colunas --;
 
- 	for (i = 0; i < programa.funcoes[which_function].variaveis[which_variable].linhas; i++) {
 
- 		programa.funcoes[which_function].variaveis[which_variable].valor[i].splice(programa.funcoes[which_function].variaveis[which_variable].valor[i].length - 1, 1);
 
- 	}
 
- 	renderAlgorithm();
 
- }
 
- function removeColumnGlobalMatrix(which_variable) {
 
- 	if (programa.globais[which_variable].colunas == 0) {
 
- 		return;
 
- 	}
 
- 	programa.globais[which_variable].colunas --;
 
- 	for (i = 0; i < programa.globais[which_variable].linhas; i++) {
 
- 		programa.globais[which_variable].valor[i].splice(programa.globais[which_variable].valor[i].length - 1, 1);
 
- 	}
 
- 	renderAlgorithm();
 
- }
 
- function removeLineGlobalMatrix(which_variable) {
 
- 	if (programa.globais[which_variable].linhas == 0) {
 
- 		return;
 
- 	}
 
- 	programa.globais[which_variable].linhas --;
 
- 	programa.globais[which_variable].valor.splice(programa.globais[which_variable].valor.length - 1, 1);
 
- 	renderAlgorithm();
 
- }
 
- function removeLineMatrix(which_function, which_variable) {
 
- 	if (programa.funcoes[which_function].variaveis[which_variable].linhas == 0) {
 
- 		return;
 
- 	}
 
- 	programa.funcoes[which_function].variaveis[which_variable].linhas --;
 
- 	programa.funcoes[which_function].variaveis[which_variable].valor.splice(programa.funcoes[which_function].variaveis[which_variable].valor.length - 1, 1);
 
- 	renderAlgorithm();
 
- }
 
- function addVariable(sequence) {//tipo, nome, valor
 
- 	var v = new Variavel(tiposDados.integer, i18n('new_variable') + '_' + counter_new_variables, 1);
 
- 	adicionarVariavel(sequence, v);
 
- 	counter_new_variables ++;
 
- 	renderAlgorithm();
 
- }
 
- function deleteVariable(which_function, which_variable) {
 
- 	programa.funcoes[which_function].variaveis.splice(which_variable, 1);
 
- 	renderAlgorithm();
 
- }
 
- function addParameter(sequence) {
 
- 	if (programa.funcoes[sequence].lista_parametros == null) {
 
- 		programa.funcoes[sequence].lista_parametros = new Array();
 
- 	}
 
- 	programa.funcoes[sequence].lista_parametros.push(new Variavel(tiposDados.integer, i18n("new_parameter") + "_" + counter_new_parameters));
 
- 	counter_new_parameters ++;
 
- 	renderAlgorithm();
 
- }
 
- function updateFunctionReturn(sequence, new_value) {
 
- 	if (new_value.indexOf(i18n(tiposDados.vector)) > -1) {
 
- 		programa.funcoes[sequence].dimensoes_retorno = 1;
 
- 	} else {
 
- 		programa.funcoes[sequence].dimensoes_retorno = 0;
 
- 	}
 
- 	
 
- }
 
- function updateParameterType(wich_function, wich_parameter, new_value, new_dimensions) {
 
- 	programa.funcoes[wich_function].lista_parametros[wich_parameter].tipo = new_value;
 
- 	programa.funcoes[wich_function].lista_parametros[wich_parameter].dimensoes = new_dimensions;
 
- }
 
- var opened_name_global = false;
 
- var opened_input_global = null;
 
- var sequence_name_opened_global;
 
- function enableNameGlobalUpdate(div_el, sequence) {
 
- 	if (opened_name_global) {
 
- 		$(opened_input_global).focus();
 
- 		return;
 
- 	}
 
- 	opened_name_global = true;
 
- 	sequence_name_opened_global = sequence;
 
- 	$(div_el).find('.span_name_variable').text('');
 
- 	$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"+programa.globais[sequence].nome+"' />" ).insertBefore($(div_el).find('.span_name_variable'));
 
- 	$('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    opened_input_global = this;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	$('.width-dynamic').focusout(function() {
 
- 		/// update array:
 
- 		if ($(this).val().trim()) {
 
- 			programa.globais[sequence].nome = $(this).val().trim();
 
- 		}
 
- 		$(this).remove();
 
- 		/// update elements:
 
- 		opened_name_global = false;
 
- 		opened_input_global = false;
 
- 		renderAlgorithm();
 
- 	});
 
- 	$('.width-dynamic').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				programa.globais[sequence].nome = $(this).val().trim();
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_global = false;
 
- 			opened_input_global = false;
 
- 			renderAlgorithm();
 
- 		}
 
- 		if(code == 27) {
 
- 			$(div_el).find('.span_name_function').text(programa.globais[sequence].nome);
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_global = false;
 
- 			opened_input_global = false;
 
- 		}
 
- 	});
 
- 	
 
- }
 
- var opened_name_function = false;
 
- var opened_input = null;
 
- var sequence_name_opened;
 
- function enableNameFunctionUpdate(div_el, sequence) {
 
- 	if (opened_name_function) {
 
- 		$(opened_input).focus();
 
- 		return;
 
- 	}
 
- 	opened_name_function = true;
 
- 	sequence_name_opened = sequence;
 
- 	$(div_el).find('.span_name_function').text('');
 
- 	$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"+programa.funcoes[sequence].nome+"' />" ).insertBefore($(div_el).find('.span_name_function'));
 
- 	$('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    opened_input = this;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	$('.width-dynamic').focusout(function() {
 
- 		/// update array:
 
- 		if ($(this).val().trim()) {
 
- 			programa.funcoes[sequence_name_opened].nome = $(this).val().trim();
 
- 		}
 
- 		$(this).remove();
 
- 		/// update elements:
 
- 		opened_name_function = false;
 
- 		opened_input = false;
 
- 		renderAlgorithm();
 
- 	});
 
- 	$('.width-dynamic').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				programa.funcoes[sequence_name_opened].nome = $(this).val().trim();
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_function = false;
 
- 			opened_input = false;
 
- 			renderAlgorithm();
 
- 		}
 
- 		if(code == 27) {
 
- 			$(div_el).find('.span_name_function').text(programa.funcoes[sequence_name_opened].nome);
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_function = false;
 
- 			opened_input = false;
 
- 		}
 
- 	});
 
- 	
 
- }
 
- function alternateBooleanVarVectorValue(parent_node, which_function, which_var, column_index) {
 
- 	programa.funcoes[which_function].variaveis[which_var].valor[column_index] = !programa.funcoes[which_function].variaveis[which_var].valor[column_index];
 
- 	renderAlgorithm();
 
- }
 
- function alternateBooleanGlobalVectorValue(parent_node, which_var, column_index) {
 
- 	programa.globais[which_var].valor[column_index] = !programa.globais[which_var].valor[column_index];
 
- 	renderAlgorithm();
 
- }
 
- function alternateBooleanVarMatrixValue(parent_node, which_function, which_var, row_index, column_index) {
 
- 	programa.funcoes[which_function].variaveis[which_var].valor[row_index][column_index] = !programa.funcoes[which_function].variaveis[which_var].valor[row_index][column_index];
 
- 	renderAlgorithm();
 
- }
 
- function alternateBooleanGlobalMatrixValue(parent_node, which_var, row_index, column_index) {
 
- 	programa.globais[which_var].valor[row_index][column_index] = !programa.globais[which_var].valor[row_index][column_index];
 
- 	renderAlgorithm();
 
- }
 
- function alternateBooleanGlobalValue(parent_node, which_var) {
 
- 	programa.globais[which_var].valor = !programa.globais[which_var].valor;
 
- 	renderAlgorithm();
 
- }
 
- function alternateBooleanVarValue(parent_node, which_function, which_var) {
 
- 	programa.funcoes[which_function].variaveis[which_var].valor = !programa.funcoes[which_function].variaveis[which_var].valor;
 
- 	renderAlgorithm();
 
- }
 
- var opened_name_value_vector_global_ = false;
 
- var opened_input_value_vector_global_ = null;
 
- var sequence_name_opened_value_vector_global_;
 
- function enableGlobalVectorValueUpdate(parent_node, which_parameter, column_index) {
 
- 	if (opened_name_value_vector_global_) {
 
- 		$(opened_input_value_vector_global_).focus();
 
- 		return;
 
- 	}
 
- 	opened_name_value_vector_global_ = true;
 
- 	sequence_name_opened_value_vector_global_ = which_parameter;
 
- 	$(parent_node).find('.span_value_variable').text('');
 
- 	if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.globais[which_parameter].valor[column_index].toFixed(1) + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	} else {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.globais[which_parameter].valor[column_index] + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	}
 
- 	$('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    opened_input_value_vector_global_ = this;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	$('.width-dynamic').focusout(function() {
 
- 		/// update array:
 
- 		if ($(this).val().trim()) {
 
- 			if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 				programa.globais[which_parameter].valor[column_index] = parseFloat($(this).val().trim());
 
- 			} else {
 
- 				if (programa.globais[which_parameter].tipo == tiposDados.integer) {
 
- 					programa.globais[which_parameter].valor[column_index] = parseInt($(this).val().trim());
 
- 				} else {
 
- 					programa.globais[which_parameter].valor[column_index] = $(this).val().trim();
 
- 				}
 
- 			}
 
- 		}
 
- 		$(this).remove();
 
- 		/// update elements:
 
- 		opened_name_value_vector_global_ = false;
 
- 		opened_input_value_vector_global_ = false;
 
- 		renderAlgorithm();
 
- 	});
 
- 	$('.width-dynamic').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 					programa.globais[which_parameter].valor[column_index] = parseFloat($(this).val().trim());
 
- 				} else {
 
- 					if (programa.globais[which_parameter].tipo == tiposDados.integer) {
 
- 						programa.globais[which_parameter].valor[column_index] = parseInt($(this).val().trim());
 
- 					} else {
 
- 						programa.globais[which_parameter].valor[column_index] = $(this).val().trim();
 
- 					}
 
- 				}
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_vector_global_ = false;
 
- 			opened_input_value_vector_global_ = false;
 
- 			renderAlgorithm();
 
- 		}
 
- 		if(code == 27) {
 
- 			if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 				$(parent_node).find('.span_value_variable').text(programa.globais[which_parameter].valor[column_index].toFixed(1));
 
- 			} else {
 
- 				$(parent_node).find('.span_value_variable').text(programa.globais[which_parameter].valor[column_index]);
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_vector_global_ = false;
 
- 			opened_input_value_vector_global_ = false;
 
- 		}
 
- 	});
 
- }
 
- var opened_name_value_vector_variable = false;
 
- var opened_input_value_vector_variable = null;
 
- var sequence_name_opened_value_vector_variable;
 
- var sequence_function_opened_value_vector_variable;
 
- function enableVarVectorValueUpdate(parent_node, which_function, which_parameter, column_index) {
 
- 	if (opened_name_value_vector_variable) {
 
- 		$(opened_input_value_vector_variable).focus();
 
- 		return;
 
- 	}
 
- 	opened_name_value_vector_variable = true;
 
- 	sequence_name_opened_value_vector_variable = which_parameter;
 
- 	sequence_function_opened_value_vector_variable = which_function;
 
- 	$(parent_node).find('.span_value_variable').text('');
 
- 	if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.funcoes[which_function].variaveis[which_parameter].valor[column_index].toFixed(1) + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	} else {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.funcoes[which_function].variaveis[which_parameter].valor[column_index] + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	}
 
- 	$('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    opened_input_value_vector_variable = this;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	$('.width-dynamic').focusout(function() {
 
- 		/// update array:
 
- 		if ($(this).val().trim()) {
 
- 			if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 				programa.funcoes[which_function].variaveis[which_parameter].valor[column_index] = parseFloat($(this).val().trim());
 
- 			} else {
 
- 				if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.integer) {
 
- 					programa.funcoes[which_function].variaveis[which_parameter].valor[column_index] = parseInt($(this).val().trim());
 
- 				} else {
 
- 					programa.funcoes[which_function].variaveis[which_parameter].valor[column_index] = $(this).val().trim();
 
- 				}
 
- 			}
 
- 		}
 
- 		$(this).remove();
 
- 		/// update elements:
 
- 		opened_name_value_vector_variable = false;
 
- 		opened_input_value_vector_variable = false;
 
- 		renderAlgorithm();
 
- 	});
 
- 	$('.width-dynamic').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 					programa.funcoes[which_function].variaveis[which_parameter].valor[column_index] = parseFloat($(this).val().trim());
 
- 				} else {
 
- 					if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.integer) {
 
- 						programa.funcoes[which_function].variaveis[which_parameter].valor[column_index] = parseInt($(this).val().trim());
 
- 					} else {
 
- 						programa.funcoes[which_function].variaveis[which_parameter].valor[column_index] = $(this).val().trim();
 
- 					}
 
- 				}
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_vector_variable = false;
 
- 			opened_input_value_vector_variable = false;
 
- 			renderAlgorithm();
 
- 		}
 
- 		if(code == 27) {
 
- 			if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 				$(parent_node).find('.span_value_variable').text(programa.funcoes[which_function].variaveis[which_parameter].valor[column_index].toFixed(1));
 
- 			} else {
 
- 				$(parent_node).find('.span_value_variable').text(programa.funcoes[which_function].variaveis[which_parameter].valor[column_index]);
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_vector_variable = false;
 
- 			opened_input_value_vector_variable = false;
 
- 		}
 
- 	});
 
- }
 
- var opened_name_value_matrix_global_v = false;
 
- var opened_input_value_matrix_global_v = null;
 
- var sequence_name_opened_value_matrix_global_v;
 
- function enableGlobalMatrixValueUpdate(parent_node, which_parameter, row_index, column_index) {
 
- 	if (opened_name_value_matrix_global_v) {
 
- 		$(opened_input_value_matrix_global_v).focus();
 
- 		return;
 
- 	}
 
- 	opened_name_value_matrix_global_v = true;
 
- 	sequence_name_opened_value_matrix_global_v = which_parameter;
 
- 	$(parent_node).find('.span_value_variable').text('');
 
- 	if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.globais[which_parameter].valor[row_index][column_index].toFixed(1) + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	} else {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.globais[which_parameter].valor[row_index][column_index] + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	}
 
- 	$('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    opened_input_value_matrix_global_v = this;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	$('.width-dynamic').focusout(function() {
 
- 		/// update array:
 
- 		if ($(this).val().trim()) {
 
- 			if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 				programa.globais[which_parameter].valor[row_index][column_index] = parseFloat($(this).val().trim());
 
- 			} else {
 
- 				if (programa.globais[which_parameter].tipo == tiposDados.integer) {
 
- 					programa.globais[which_parameter].valor[row_index][column_index] = parseInt($(this).val().trim());
 
- 				} else {
 
- 					programa.globais[which_parameter].valor[row_index][column_index] = $(this).val().trim();
 
- 				}
 
- 			}
 
- 		}
 
- 		$(this).remove();
 
- 		/// update elements:
 
- 		opened_name_value_matrix_global_v = false;
 
- 		opened_input_value_matrix_global_v = false;
 
- 		renderAlgorithm();
 
- 	});
 
- 	$('.width-dynamic').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 					programa.globais[which_parameter].valor[row_index][column_index] = parseFloat($(this).val().trim());
 
- 				} else {
 
- 					if (programa.globais[which_parameter].tipo == tiposDados.integer) {
 
- 						programa.globais[which_parameter].valor[row_index][column_index] = parseInt($(this).val().trim());
 
- 					} else {
 
- 						programa.globais[which_parameter].valor[row_index][column_index] = $(this).val().trim();
 
- 					}
 
- 				}
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_matrix_global_v = false;
 
- 			opened_input_value_matrix_global_v = false;
 
- 			renderAlgorithm();
 
- 		}
 
- 		if(code == 27) {
 
- 			if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 				$(parent_node).find('.span_value_variable').text(programa.globais[which_parameter].valor[row_index][column_index].toFixed(1));
 
- 			} else {
 
- 				$(parent_node).find('.span_value_variable').text(programa.globais[which_parameter].valor[row_index][column_index]);
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_matrix_global_v = false;
 
- 			opened_input_value_matrix_global_v = false;
 
- 		}
 
- 	});
 
- }
 
- var opened_name_value_matrix_variable = false;
 
- var opened_input_value_matrix_variable = null;
 
- var sequence_name_opened_value_matrix_variable;
 
- var sequence_function_opened_value_matrix_variable;
 
- function enableVarMatrixValueUpdate(parent_node, which_function, which_parameter, row_index, column_index) {
 
- 	if (opened_name_value_matrix_variable) {
 
- 		$(opened_input_value_matrix_variable).focus();
 
- 		return;
 
- 	}
 
- 	opened_name_value_matrix_variable = true;
 
- 	sequence_name_opened_value_matrix_variable = which_parameter;
 
- 	sequence_function_opened_value_matrix_variable = which_function;
 
- 	$(parent_node).find('.span_value_variable').text('');
 
- 	if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.funcoes[which_function].variaveis[which_parameter].valor[row_index][column_index].toFixed(1) + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	} else {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.funcoes[which_function].variaveis[which_parameter].valor[row_index][column_index] + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	}
 
- 	$('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    opened_input_value_matrix_variable = this;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	$('.width-dynamic').focusout(function() {
 
- 		/// update array:
 
- 		if ($(this).val().trim()) {
 
- 			if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 				programa.funcoes[which_function].variaveis[which_parameter].valor[row_index][column_index] = parseFloat($(this).val().trim());
 
- 			} else {
 
- 				if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.integer) {
 
- 					programa.funcoes[which_function].variaveis[which_parameter].valor[row_index][column_index] = parseInt($(this).val().trim());
 
- 				} else {
 
- 					programa.funcoes[which_function].variaveis[which_parameter].valor[row_index][column_index] = $(this).val().trim();
 
- 				}
 
- 			}
 
- 		}
 
- 		$(this).remove();
 
- 		/// update elements:
 
- 		opened_name_value_matrix_variable = false;
 
- 		opened_input_value_matrix_variable = false;
 
- 		renderAlgorithm();
 
- 	});
 
- 	$('.width-dynamic').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 					programa.funcoes[which_function].variaveis[which_parameter].valor[row_index][column_index] = parseFloat($(this).val().trim());
 
- 				} else {
 
- 					if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.integer) {
 
- 						programa.funcoes[which_function].variaveis[which_parameter].valor[row_index][column_index] = parseInt($(this).val().trim());
 
- 					} else {
 
- 						programa.funcoes[which_function].variaveis[which_parameter].valor[row_index][column_index] = $(this).val().trim();
 
- 					}
 
- 				}
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_matrix_variable = false;
 
- 			opened_input_value_matrix_variable = false;
 
- 			renderAlgorithm();
 
- 		}
 
- 		if(code == 27) {
 
- 			if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 				$(parent_node).find('.span_value_variable').text(programa.funcoes[which_function].variaveis[which_parameter].valor[row_index][column_index].toFixed(1));
 
- 			} else {
 
- 				$(parent_node).find('.span_value_variable').text(programa.funcoes[which_function].variaveis[which_parameter].valor[row_index][column_index]);
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_matrix_variable = false;
 
- 			opened_input_value_matrix_variable = false;
 
- 		}
 
- 	});
 
- }
 
- var opened_name_value_global_var = false;
 
- var opened_input_value_global_ar = null;
 
- var sequence_name_opened_value_global_var;
 
- function enableGlobalValueUpdate(parent_node, which_parameter) {
 
- 	if (opened_name_value_global_var) {
 
- 		$(opened_input_value_global_ar).focus();
 
- 		return;
 
- 	}
 
- 	opened_name_value_global_var = true;
 
- 	sequence_name_opened_value_global_var = which_parameter;
 
- 	$(parent_node).find('.span_value_variable').text('');
 
- 	if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.globais[which_parameter].valor.toFixed(1) + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	} else {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.globais[which_parameter].valor + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	}
 
- 	$('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    opened_input_value_global_ar = this;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	$('.width-dynamic').focusout(function() {
 
- 		/// update array:
 
- 		if ($(this).val().trim()) {
 
- 			if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 				programa.globais[which_parameter].valor = parseFloat($(this).val().trim());
 
- 			} else{
 
- 				if (programa.globais[which_parameter].tipo == tiposDados.integer) {
 
- 					programa.globais[which_parameter].valor = parseInt($(this).val().trim());
 
- 				} else {
 
- 					programa.globais[which_parameter].valor = $(this).val().trim();
 
- 				}
 
- 				
 
- 			}
 
- 		}
 
- 		$(this).remove();
 
- 		/// update elements:
 
- 		opened_name_value_global_var = false;
 
- 		opened_input_value_global_ar = false;
 
- 		renderAlgorithm();
 
- 	});
 
- 	$('.width-dynamic').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 					programa.globais[which_parameter].valor = parseFloat($(this).val().trim());
 
- 				} else{
 
- 					if (programa.globais[which_parameter].tipo == tiposDados.integer) {
 
- 						programa.globais[which_parameter].valor = parseInt($(this).val().trim());
 
- 					} else {
 
- 						programa.globais[which_parameter].valor = $(this).val().trim();
 
- 					}
 
- 					
 
- 				}
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_global_var = false;
 
- 			opened_input_value_global_ar = false;
 
- 			renderAlgorithm();
 
- 		}
 
- 		if(code == 27) {
 
- 			if (programa.globais[which_parameter].tipo == tiposDados.real) {
 
- 				$(parent_node).find('.span_value_variable').text(programa.globais[which_parameter].valor.toFixed(1));
 
- 			} else{
 
- 				$(parent_node).find('.span_value_variable').text(programa.globais[which_parameter].valor);
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_global_var = false;
 
- 			opened_input_value_global_ar = false;
 
- 		}
 
- 	});
 
- }
 
- var opened_name_value_variable = false;
 
- var opened_input_value_variable = null;
 
- var sequence_name_opened_value_variable;
 
- var sequence_function_opened_value_variable;
 
- function enableVarValueUpdate(parent_node, which_function, which_parameter) {
 
- 	if (opened_name_value_variable) {
 
- 		$(opened_input_value_variable).focus();
 
- 		return;
 
- 	}
 
- 	opened_name_value_variable = true;
 
- 	sequence_name_opened_value_variable = which_parameter;
 
- 	sequence_function_opened_value_variable = which_function;
 
- 	$(parent_node).find('.span_value_variable').text('');
 
- 	if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.funcoes[which_function].variaveis[which_parameter].valor.toFixed(1) + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	} else {
 
- 		$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 			+ programa.funcoes[which_function].variaveis[which_parameter].valor + "' />" ).insertBefore($(parent_node).find('.span_value_variable'));
 
- 	}
 
- 	$('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    opened_input_value_variable = this;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	$('.width-dynamic').focusout(function() {
 
- 		/// update array:
 
- 		if ($(this).val().trim()) {
 
- 			if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 				programa.funcoes[which_function].variaveis[which_parameter].valor = parseFloat($(this).val().trim());
 
- 			} else{
 
- 				if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.integer) {
 
- 					programa.funcoes[which_function].variaveis[which_parameter].valor = parseInt($(this).val().trim());
 
- 				} else {
 
- 					programa.funcoes[which_function].variaveis[which_parameter].valor = $(this).val().trim();
 
- 				}
 
- 				
 
- 			}
 
- 		}
 
- 		$(this).remove();
 
- 		/// update elements:
 
- 		opened_name_value_variable = false;
 
- 		opened_input_value_variable = false;
 
- 		renderAlgorithm();
 
- 	});
 
- 	$('.width-dynamic').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 					programa.funcoes[which_function].variaveis[which_parameter].valor = parseFloat($(this).val().trim());
 
- 				} else{
 
- 					if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.integer) {
 
- 						programa.funcoes[which_function].variaveis[which_parameter].valor = parseInt($(this).val().trim());
 
- 					} else {
 
- 						programa.funcoes[which_function].variaveis[which_parameter].valor = $(this).val().trim();
 
- 					}
 
- 					
 
- 				}
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_variable = false;
 
- 			opened_input_value_variable = false;
 
- 			renderAlgorithm();
 
- 		}
 
- 		if(code == 27) {
 
- 			if (programa.funcoes[which_function].variaveis[which_parameter].tipo == tiposDados.real) {
 
- 				$(parent_node).find('.span_value_variable').text(programa.funcoes[which_function].variaveis[which_parameter].valor.toFixed(1));
 
- 			} else{
 
- 				$(parent_node).find('.span_value_variable').text(programa.funcoes[which_function].variaveis[which_parameter].valor);
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_value_variable = false;
 
- 			opened_input_value_variable = false;
 
- 		}
 
- 	});
 
- }
 
- var opened_name_variable = false;
 
- var opened_input_variable = null;
 
- var sequence_name_opened_variable;
 
- var sequence_function_opened_variable;
 
- function enableNameVariableUpdate(parent_node, which_function, which_parameter) {
 
- 	if (opened_name_variable) {
 
- 		$(opened_input_variable).focus();
 
- 		return;
 
- 	}
 
- 	opened_name_variable = true;
 
- 	sequence_name_opened_variable = which_parameter;
 
- 	sequence_function_opened_variable = which_function;
 
- 	$(parent_node).find('.span_name_variable').text('');
 
- 	$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"
 
- 		+ programa.funcoes[which_function].variaveis[which_parameter].nome + "' />" ).insertBefore($(parent_node).find('.span_name_variable'));
 
- 	$('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    opened_input_variable = this;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	$('.width-dynamic').focusout(function() {
 
- 		/// update array:
 
- 		if ($(this).val().trim()) {
 
- 			programa.funcoes[which_function].variaveis[which_parameter].nome = $(this).val().trim();
 
- 		}
 
- 		$(this).remove();
 
- 		/// update elements:
 
- 		opened_name_variable = false;
 
- 		opened_input_variable = false;
 
- 		renderAlgorithm();
 
- 	});
 
- 	$('.width-dynamic').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				programa.funcoes[which_function].variaveis[which_parameter].nome = $(this).val().trim();
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_variable = false;
 
- 			opened_input_variable = false;
 
- 			renderAlgorithm();
 
- 		}
 
- 		if(code == 27) {
 
- 			$(parent_node).find('.span_name_variable').text(programa.funcoes[which_function].variaveis[which_parameter].nome);
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_variable = false;
 
- 			opened_input_variable = false;
 
- 		}
 
- 	});
 
- }
 
- var opened_name_comment = false;
 
- var opened_input_comment = null;
 
- var sequence_name_opened_comment;
 
- var sequence_function_opened_comment;
 
- function enableCommentUpdate(parent_node, function_index, is_function_comment, comment_index) {
 
- 	if (opened_name_comment) {
 
- 		$(opened_input_comment).focus();
 
- 		return;
 
- 	}
 
- 	opened_name_comment = true;
 
- 	sequence_name_opened_comment = comment_index;
 
- 	sequence_function_opened_comment = function_index;
 
- 	$(parent_node).find('.span_comment_text').text('');
 
- 	
 
- 	var temp_value = "";
 
- 	if (is_function_comment) {
 
- 		temp_value = programa.funcoes[function_index].comentario_funcao.texto_comentario;
 
- 	} else {
 
- 		temp_value = programa.funcoes[function_index].comandos[comment_index].texto_comentario;
 
- 	}
 
- 	$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"+temp_value+"' />" ).insertBefore($(parent_node).find('.span_comment_text'));
 
- 	$('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    opened_input_comment = this;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	$('.width-dynamic').focusout(function() {
 
- 		/// update array:
 
- 		if ($(this).val().trim()) {
 
- 			var n_value = $(this).val().trim();
 
- 			if (is_function_comment) {
 
- 				programa.funcoes[function_index].comentario_funcao.texto_comentario = n_value;
 
- 			} else {
 
- 				temp_value = programa.funcoes[function_index].comandos[comment_index].texto_comentario = n_value;
 
- 			}
 
- 		}
 
- 		$(this).remove();
 
- 		/// update elements:
 
- 		opened_name_comment = false;
 
- 		opened_input_comment = false;
 
- 		renderAlgorithm();
 
- 	});
 
- 	$('.width-dynamic').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				var n_value = $(this).val().trim();
 
- 				if (is_function_comment) {
 
- 					programa.funcoes[function_index].comentario_funcao.texto_comentario = n_value;
 
- 				} else {
 
- 					temp_value = programa.funcoes[function_index].comandos[comment_index].texto_comentario = n_value;
 
- 				}
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_comment = false;
 
- 			opened_input_comment = false;
 
- 			renderAlgorithm();
 
- 		}
 
- 		if(code == 27) {
 
- 			$(parent_node).find('.span_comment_text').text(temp_value);
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_comment = false;
 
- 			opened_input_comment = false;
 
- 		}
 
- 	});
 
- }
 
- var opened_name_parameter = false;
 
- var opened_input_parameter = null;
 
- var sequence_name_opened_parameter;
 
- var sequence_function_opened_parameter;
 
- function enableNameParameterUpdate(parent_node, which_function, which_parameter) {
 
- 	if (opened_name_parameter) {
 
- 		$(opened_input_parameter).focus();
 
- 		return;
 
- 	}
 
- 	opened_name_parameter = true;
 
- 	sequence_name_opened_parameter = which_parameter;
 
- 	sequence_function_opened_parameter = which_function;
 
- 	$(parent_node).find('.span_name_parameter').text('');
 
- 	$( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"+programa.funcoes[which_function].lista_parametros[which_parameter].nome+"' />" ).insertBefore($(parent_node).find('.span_name_parameter'));
 
- 	$('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    opened_input_parameter = this;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	$('.width-dynamic').focusout(function() {
 
- 		/// update array:
 
- 		if ($(this).val().trim()) {
 
- 			programa.funcoes[which_function].lista_parametros[which_parameter].nome = $(this).val().trim();
 
- 		}
 
- 		$(this).remove();
 
- 		/// update elements:
 
- 		opened_name_parameter = false;
 
- 		opened_input_parameter = false;
 
- 		renderAlgorithm();
 
- 	});
 
- 	$('.width-dynamic').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				programa.funcoes[which_function].lista_parametros[which_parameter].nome = $(this).val().trim();
 
- 			}
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_parameter = false;
 
- 			opened_input_parameter = false;
 
- 			renderAlgorithm();
 
- 		}
 
- 		if(code == 27) {
 
- 			$(parent_node).find('.span_name_parameter').text(programa.funcoes[which_function].lista_parametros[which_parameter].nome);
 
- 			$(this).remove();
 
- 			/// update elements:
 
- 			opened_name_parameter = false;
 
- 			opened_input_parameter = false;
 
- 		}
 
- 	});
 
- }
 
- function removeParameter(parent_node, which_function, which_parameter) {
 
- 	programa.funcoes[which_function].lista_parametros.splice(which_parameter, 1);
 
- 	renderAlgorithm();
 
- }
 
- function manageDragableCommands(sequence) {
 
- 	var el = document.getElementById('menu_commands_'+sequence);
 
- 	var sortable = Sortable.create(el, {
 
- 	    handle: '.created_element',
 
- 	    animation: 100,
 
- 	    draggable: '.item',
 
- 	    ghostClass: 'ghost',
 
- 	    group: {
 
- 	    	name: 'commands_area_'+sequence,
 
- 	    	pull: 'clone'
 
- 	    },
 
- 	    onEnd: function (evt) {
 
- 	      updateSequenceFunctionHandler(evt.oldIndex, evt.newIndex);
 
- 	    }
 
-     });
 
- }
 
- function appendFunction(function_obj, sequence) {
 
- 	var appender = '<div class="ui secondary segment function_div list-group-item">';
 
- 	if (function_obj.comentario_funcao) {
 
- 		appender += renderComment(function_obj.comentario_funcao, sequence, true, -1);
 
- 	}
 
- 		
 
- 	appender += '<span class="glyphicon glyphicon-move move_function" aria-hidden="true"><i class="icon sort alternate vertical"></i></span>';
 
- 	appender += (!function_obj.eh_principal ? '<button class="ui icon button large remove_function_button" onclick="removeFunctionHandler(this.parentNode, '+sequence+')"><i class="red icon times"></i></button>' : '<div class="div_start_minimize_v"> </div>')
 
- 		+ '<button class="ui icon button tiny minimize_function_button" onclick="minimizeFunctionHandler(this.parentNode, '+sequence+')"><i class="icon window minimize"></i></button>';
 
- 	appender += '<div class="ui icon buttons add_var_top_button"><div class="ui icon button" onclick="addVariable('+sequence+')"><i class="icon superscript"></i></div>';
 
- 	
 
- 	appender += '<div class="ui icon button dropdown" ><i class="icon code"></i> <div class="menu" id="menu_commands_'+sequence+'"> ';
 
- 	appender += '<a class="item" data-text="'+tiposComandos.reader+'"><i class="download icon"></i> ' +i18n('text_read_var')+ '</a>'
 
- 			  + '<a class="item" data-text="'+tiposComandos.writer+'"><i class="upload icon"></i> '+i18n('text_write_var')+'</a>'
 
- 			  + '<a class="item create_comment" data-text="'+tiposComandos.comment+'"><i class="quote left icon"></i> '+i18n('text_comment')+'</a>'
 
- 				+ '</div></div></div>';
 
- 	appender += '<div class="function_signature_div">'+i18n('function')+' ';
 
-     if (function_obj.eh_principal) {
 
-     	appender += '<div class="function_name_div">        ' + i18n('void') + '       <span class="span_name_function" >'+function_obj.nome+'</span> </div> '
 
- 			+ '( <div class="ui large labels parameters_list">';
 
-     } else {
 
-     	appender += renderFunctionReturn(function_obj, sequence);
 
- 	    appender += '<div class="function_name_div"><span class="span_name_function" ondblclick="enableNameFunctionUpdate(this.parentNode, '+sequence+')" >'+function_obj.nome+'</span> <i class="icon small pencil alternate enable_edit_name_function" onclick="enableNameFunctionUpdate(this.parentNode, '+sequence+')"></i></div> ' 
 
-     		+ '( <i class="ui icon plus square outline add_parameter" onclick="addParameter('+sequence+')"></i> <div class="ui large labels parameters_list">';
 
-     }
 
-     appender += renderFunctionParameters(function_obj, sequence);
 
- 		
 
- 	appender += '</div> ) {</div>'
 
- 		+ (function_obj.esta_oculta ? ' <div class="function_area" style="display: none;"> ' : ' <div class="function_area"> ')
 
- 		+ '<div class="ui top attached segment variables_list_div">'
 
- 		+ renderVariables(function_obj, sequence)
 
- 		+ '</div>'
 
- 		+ '<div class="ui bottom attached segment commands_list_div"></div>'		
 
- 		+ '<div class="function_close_div">}</div>'
 
- 		+ '</div>'
 
- 		+ '</div>';
 
- 	$('.all_functions').append(appender); 
 
- 	manageDragableCommands(sequence);
 
- }
 
- function renderComment(comment_obj, function_index, is_function_comment, comment_index) {
 
- 	var ret = '';
 
- 	ret += '<div class="ui comment"> <i class="ui icon small quote left"></i> <span class="span_comment_text" ondblclick="enableCommentUpdate(this.parentNode, '+function_index+', '
 
- 		+is_function_comment+', '+comment_index+')"> ' + comment_obj.texto_comentario + ' </span>';
 
- 	ret += '</div>';
 
- 	return ret;
 
- }
 
- // Essa função imprime os parâmetros e cria os elementos para a sua manipulação
 
- function renderFunctionParameters(function_obj, sequence) {
 
- 	var ret = "";
 
- 	if (function_obj.lista_parametros != null) {
 
- 		for (var j = 0; j < function_obj.lista_parametros.length; j++) {
 
- 			var par_temp = function_obj.lista_parametros[j];
 
- 			ret += '<div class="ui label function_name_parameter"><span class="span_name_parameter" ondblclick="enableNameParameterUpdate(this.parentNode, '+sequence+', '+j+')">'+par_temp.nome+'</span> <i class="icon small pencil alternate enable_edit_name_parameter" onclick="enableNameParameterUpdate(this.parentNode, '+sequence+', '+j+')"></i>';
 
- 			ret += '<div class="ui dropdown parameter_type seq_'+j+' fun_'+sequence+'">';
 
-   	
 
- 		  	if (par_temp.dimensoes > 0) {
 
- 		  		ret += '<div class="text seq_'+j+' fun_'+sequence+'">'+ i18n(tiposDados.vector)+':'+i18n(par_temp.tipo);
 
- 		  		ret += '</div>';
 
- 		  	} else {
 
- 		  		ret += '<div class="text seq_'+j+' fun_'+sequence+'">'+i18n(par_temp.tipo)+'</div>';
 
- 		  	}
 
- 		  	ret += '<i class="dropdown icon"></i>'
 
- 		  		+ '<div class="menu seq_'+j+' fun_'+sequence+'">';
 
- 		  	var i = 0;
 
- 		  	for (tm in tiposDados) {
 
- 		  		i ++;
 
- 		  		if (i == 1) { continue; }
 
- 		  		if (i == (Object.keys(tiposDados).length)) { break; }
 
- 		  		ret += '<div class="item ' + ((par_temp.tipo == tm && par_temp.dimensoes < 1) ? ' selected ' : '') + ' seq_'+j+' fun_'+sequence+' '+tm+'" >'+i18n(tm)+'</div>';
 
- 		  	}
 
- 		  	i = 0;
 
- 		  	for (tm in tiposDados) {
 
- 		  		i ++;
 
- 		  		if (i == 1) { continue; }
 
- 		  		if (i == (Object.keys(tiposDados).length)) { break; }
 
- 		  		ret += '<div class="item seq_'+j+' '+tm+' fun_'+sequence+' ' + ((par_temp.tipo == tm && par_temp.dimensoes > 0) ? ' selected ' : '') + ' ">'
 
- 			    	+  i18n(tiposDados.vector)+':'+i18n(tm)
 
- 			    	+ '</div>';	
 
- 		  	}
 
-     		ret += '</div></div>';
 
- 			ret += ' <i class="red icon times remove_parameter" onclick="removeParameter(this.parentNode, '+sequence+', '+j+')"></i></div>';
 
- 		}
 
- 	}
 
- 	return ret;
 
- }
 
- // Essa função imprime as variáveis e os recursos para sua manipulação
 
- function renderVariables(function_obj, sequence) {
 
- 	var ret = "";
 
- 	if (function_obj.variaveis != null) {
 
- 		for (var j = 0; j < function_obj.variaveis.length; j++) {
 
- 			var par_temp = function_obj.variaveis[j];
 
- 			ret += '<div class="ui label name_variable"><span class="span_name_variable" ondblclick="enableNameVariableUpdate(this.parentNode, '+sequence+', '+j+')">'+par_temp.nome+'</span> <i class="icon small pencil alternate enable_edit_name_parameter" onclick="enableNameVariableUpdate(this.parentNode, '+sequence+', '+j+')"></i>';
 
- 			ret += '<div class="ui dropdown variable_type seq_'+j+' fun_'+sequence+'">';
 
-   	
 
- 		  	if (par_temp.dimensoes > 0) {
 
- 		  		ret += '<div class="text seq_'+j+' fun_'+sequence+'">'+ i18n(tiposDados.vector)+':'+i18n(par_temp.tipo);
 
- 		  		for (i = 0; i < par_temp.dimensoes; i ++) {
 
- 		  			ret += ' [ ] ';
 
- 		  		}
 
- 		  		ret += '</div>';
 
- 		  	} else {
 
- 		  		ret += '<div class="text seq_'+j+' fun_'+sequence+'">'+i18n(par_temp.tipo)+'</div>';
 
- 		  	}
 
- 		  	ret += '<i class="dropdown icon"></i>'
 
- 		  		+ '<div class="menu seq_'+j+' fun_'+sequence+'">';
 
- 		  	var i = 0;
 
- 		  	for (tm in tiposDados) {
 
- 		  		i ++;
 
- 		  		if (i == 1) { continue; }
 
- 		  		if (i == (Object.keys(tiposDados).length)) { break; }
 
- 		  		ret += '<div class="item ' + (par_temp.tipo == tm ? ' selected ' : '') + ' seq_'+j+' fun_'+sequence+' '+tm+'" >'+i18n(tm)+'</div>';
 
- 		  	}
 
- 		  	i = 0;
 
- 		  	for (tm in tiposDados) {
 
- 		  		i ++;
 
- 		  		if (i == 1) { continue; }
 
- 		  		if (i == (Object.keys(tiposDados).length)) { break; }
 
- 		  		ret += '<div class="item seq_'+j+' fun_'+sequence+'">'
 
- 			    	+ '<i class="dropdown icon"></i>'
 
- 			    	+  i18n(tiposDados.vector)+':'+i18n(tm)
 
- 			      	+  '<div class="menu seq_'+j+' fun_'+sequence+'">'
 
- 				        + '<div class="item seq_'+j+' fun_'+sequence+' '+tm+'" data-text="'+ i18n(tiposDados.vector)+':'+i18n(tm)+' [ ] ">[ ]</div>'
 
- 				        + '<div class="item seq_'+j+' fun_'+sequence+' '+tm+'" data-text="'+ i18n(tiposDados.vector)+':'+i18n(tm)+' [ ] [ ] ">[ ] [ ] </div>'
 
- 			      	+  '</div>'
 
- 			    	+ '</div>';	
 
- 		  	}
 
-     		ret += '</div></div>  = ';
 
-     		if (par_temp.dimensoes == 0) {
 
-     			if (par_temp.tipo == tiposDados.real) {
 
-     				ret += '<div class="div_valor_var"><span class="span_value_variable" ondblclick="enableVarValueUpdate(this.parentNode, '+sequence+', '+j+')" >'+par_temp.valor.toFixed(1)+'</span> <i class="icon small pencil alternate enable_edit_name_function" onclick="enableVarValueUpdate(this.parentNode, '+sequence+', '+j+')"></i></div> ';
 
-     			} else {
 
-     				if (par_temp.tipo == tiposDados.boolean) {
 
- 	    				ret += '<div class="div_valor_var"><span class="span_value_variable" ondblclick="alternateBooleanVarValue(this.parentNode, '+sequence+', '+j+')" >'+par_temp.valor+'</span> <i class="icon small pencil alternate enable_edit_name_function" onclick="alternateBooleanVarValue(this.parentNode, '+sequence+', '+j+')"></i></div> ';
 
- 	    			} else {
 
-     					ret += '<div class="div_valor_var"><span class="span_value_variable" ondblclick="enableVarValueUpdate(this.parentNode, '+sequence+', '+j+')" >'+par_temp.valor+'</span> <i class="icon small pencil alternate enable_edit_name_function" onclick="enableVarValueUpdate(this.parentNode, '+sequence+', '+j+')"></i></div> ';
 
- 	    			}
 
-     			}
 
-     		} else {
 
-     			ret += '<table class="tabela_var">';
 
-     			if (par_temp.dimensoes == 1) {
 
-     				ret += '<tr>';
 
-     				if (par_temp.tipo == tiposDados.real) {
 
-     					for (var k = 0; k < par_temp.colunas; k++) {
 
- 	    					ret += '<td><span class="span_value_variable" ondblclick="enableVarVectorValueUpdate(this.parentNode, '+sequence+', '+j+', '+k+')" >'+par_temp.valor[k].toFixed(1)+'</span>'+'</td>';
 
- 	    				}
 
-     				} else {
 
-     					for (var k = 0; k < par_temp.colunas; k++) {
 
-     						if (par_temp.tipo == tiposDados.boolean) {
 
-     							ret += '<td><span class="span_value_variable" ondblclick="alternateBooleanVarVectorValue(this.parentNode, '+sequence+', '+j+', '+k+')" >'+par_temp.valor[k]+'</span>'+'</td>';
 
-     						} else {
 
-     							ret += '<td><span class="span_value_variable" ondblclick="enableVarVectorValueUpdate(this.parentNode, '+sequence+', '+j+', '+k+')" >'+par_temp.valor[k]+'</span>'+'</td>';
 
-     						}
 
-     					}
 
-     				}
 
-     				
 
-     				ret += '</tr>';
 
-     				ret += '</table>';
 
-     				ret += '<div class="buttons_manage_columns"><i class="ui icon minus square outline" onclick="removeColumnVector('+sequence+', '+j+')"></i>'
 
-     			    	+ ' <i class="ui icon plus square outline" onclick="addColumnVector('+sequence+', '+j+')"></i></div>';
 
-     			}
 
-     			if (par_temp.dimensoes == 2) {
 
-     				if (par_temp.tipo == tiposDados.real) {
 
-     					for (var l = 0; l < par_temp.linhas; l++) {
 
- 		    				ret += '<tr>';
 
- 		    				for (var k = 0; k < par_temp.colunas; k++) {
 
- 		    					ret += '<td><span class="span_value_variable" ondblclick="enableVarMatrixValueUpdate(this.parentNode, '+sequence+', '+j+', '+l+', '+k+')" >'+par_temp.valor[l][k].toFixed(1)+'</span>'+'</td>';
 
- 		    				} 
 
- 		    				ret += '</tr>';
 
- 	    				}
 
-     				} else {
 
-     					for (var l = 0; l < par_temp.linhas; l++) {
 
- 		    				ret += '<tr>';
 
- 		    				for (var k = 0; k < par_temp.colunas; k++) {
 
- 		    					if (par_temp.tipo == tiposDados.boolean) { 
 
- 		    						ret += '<td><span class="span_value_variable" ondblclick="alternateBooleanVarMatrixValue(this.parentNode, '+sequence+', '+j+', '+l+', '+k+')" >'+par_temp.valor[l][k]+'</span>'+'</td>';
 
- 		    					} else {
 
- 		    						ret += '<td><span class="span_value_variable" ondblclick="enableVarMatrixValueUpdate(this.parentNode, '+sequence+', '+j+', '+l+', '+k+')" >'+par_temp.valor[l][k]+'</span>'+'</td>';
 
- 		    					}
 
- 		    				} 
 
- 		    				ret += '</tr>';
 
- 	    				}
 
-     				}
 
-     				if (par_temp.linhas == 0) {
 
-     					ret += '<tr><td></td></tr>';
 
-     				}
 
-     				ret += '<tr><td colspan="'+par_temp.colunas+'" class="tr_manage_lines"><i class="ui icon minus square outline" onclick="removeLineMatrix('+sequence+', '+j+')"></i>'
 
-     			    	+ ' <i class="ui icon plus square outline" onclick="addLineMatrix('+sequence+', '+j+')"></i></td></tr>';
 
-     				ret += '</table>';
 
-     				ret += '<div class="buttons_manage_columns"><i class="ui icon minus square outline" onclick="removeColumnMatrix('+sequence+', '+j+')"></i>'
 
-     			    	+ ' <i class="ui icon plus square outline" onclick="addColumnMatrix('+sequence+', '+j+')"></i></div>';
 
-     			}
 
-     			
 
-     		}
 
- 			ret += ' <i class="red icon times remove_parameter" onclick="deleteVariable('+sequence+', '+j+')"></i></div>';
 
- 		}
 
- 	}
 
- 	return ret;
 
- }
 
- // Essa função imprime o tipo de retorno da função e cria o menu do tipo 'select' para alteração
 
- function renderFunctionReturn(function_obj, sequence) {
 
- 	var ret = '<div class="ui dropdown function_return seq_'+sequence+'">';
 
-   	
 
-   	if (function_obj.dimensoes_retorno > 0) {
 
-   		ret += '<div class="text seq_'+sequence+'"">'+ i18n(tiposDados.vector)+':'+i18n(function_obj.tipo_retorno);
 
-   		ret += '</div>';
 
-   	} else {
 
-   		ret += '<div class="text seq_'+sequence+'"">'+i18n(function_obj.tipo_retorno)+'</div>';
 
-   	}
 
-   	ret += '<i class="dropdown icon"></i>'
 
-   		+ '<div class="menu seq_'+sequence+'"">';
 
-   	var i = 0;
 
-   	for (tm in tiposDados) {
 
-   		if (i == (Object.keys(tiposDados).length - 1)) { break; }
 
-   		ret += '<div class="item ' + ((function_obj.tipo_retorno == tm && function_obj.dimensoes_retorno < 1) ? ' selected ' : '') + ' seq_'+sequence+' '+tm+'" >'+i18n(tm)+'</div>';
 
-   		i ++;
 
-   	}
 
-   	i = 0;
 
-   	for (tm in tiposDados) {
 
-   		i ++;
 
-   		if (i == 1) { continue; }
 
-   		if (i == (Object.keys(tiposDados).length)) { break; }
 
-   		ret += '<div class="item seq_'+sequence+' '+tm+' '+ ((function_obj.tipo_retorno == tm && function_obj.dimensoes_retorno > 0) ? ' selected ' : '') +'" data-text="'+i18n(tiposDados.vector)+':'+i18n(tm)+' ">'
 
- 	    	+  i18n(tiposDados.vector)+':'+i18n(tm)
 
- 	    	+ '</div>';	
 
-   	}
 
-     ret += '</div></div>';
 
-     return ret;
 
- }
 
- $.fn.textWidth = function(text, font) {
 
-     
 
-     if (!$.fn.textWidth.fakeEl) $.fn.textWidth.fakeEl = $('<span>').hide().appendTo(document.body);
 
-     
 
-     $.fn.textWidth.fakeEl.text(text || this.val() || this.text() || this.attr('placeholder')).css('font', font || this.css('font'));
 
-     
 
-     return $.fn.textWidth.fakeEl.width();
 
- };
 
 
  |