| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174 | 
							- import $ from 'jquery';
 
- import { Types } from '../types';
 
- import * as Models from '../ivprog_elements';
 
- import { LocalizedStrings } from '../../services/localizedStringsService';
 
- import * as GlobalsManagement from '../globals';
 
- import * as VariablesManagement from '../variables';
 
- import * as AttribuitionsManagement from './attribution';
 
- import * as WritersManagement from './writer';
 
- import * as RepeatNTimesManagement from './repeatNtimes';
 
- export const VAR_OR_VALUE_TYPES = Object.freeze({only_variable: 1, only_value: 2, only_function: 3, variable_and_function: 4, variable_and_value_opt: 5,
 
- 	value_and_function: 6, all: 7});
 
- export function renderMenu (command, ref_object, dom_object, function_obj, size_field = 2, expression_element) {
 
- 	// Verificar se o objeto atual trata-se de uma chamada de função e conferir se possui a quantidade correta de parâmetros
 
- 	// Caso não possua, tem que adicionar as variáveis que servirão de parâmetros:
 
- 	if (ref_object.function_called) {
 
- 		if (ref_object.function_called.parameters_list) {
 
- 			while (ref_object.function_called.parameters_list.length != ref_object.parameters_list.length) {
 
- 				if (ref_object.parameters_list.length > ref_object.function_called.parameters_list.length) {
 
- 					ref_object.parameters_list.pop();
 
- 				} else {
 
- 					ref_object.parameters_list.push(new Models.VariableValueMenu(VAR_OR_VALUE_TYPES.all, null, null, null, true));
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- 	var menu_var_or_value = '<div class="ui dropdown menu_var_or_value_dom" data-algo="12"><div class="text"></div><i class="dropdown icon"></i><div class="menu">';
 
- 	if (ref_object.variable_and_value == VAR_OR_VALUE_TYPES.only_variable) {
 
- 		menu_var_or_value = '<div class="ui dropdown menu_var_or_value_dom"><div class="text"></div><i class="dropdown icon"></i><div class="menu menu_only_vars">';
 
- 		menu_var_or_value += '</div>';
 
- 	}
 
- 	if ((ref_object.variable_and_value == VAR_OR_VALUE_TYPES.variable_and_function) || (ref_object.variable_and_value == VAR_OR_VALUE_TYPES.variable_and_value_opt) || (ref_object.variable_and_value == VAR_OR_VALUE_TYPES.all)) {
 
- 		
 
- 		menu_var_or_value += '<div class="item" data-option="'+VAR_OR_VALUE_TYPES.only_variable+'"><i class="dropdown icon"></i>'+LocalizedStrings.getUI('variable');
 
- 		menu_var_or_value += '<div class="menu menu_only_vars">';
 
- 		menu_var_or_value += '</div></div>';
 
- 	}
 
- 	if (ref_object.variable_and_value == VAR_OR_VALUE_TYPES.only_value) {
 
- 		menu_var_or_value = '<input type="text" class="width-dynamic" size="'+size_field+'" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" />';
 
- 	}
 
- 	if ((ref_object.variable_and_value == VAR_OR_VALUE_TYPES.variable_and_value_opt) 
 
- 		|| (ref_object.variable_and_value == VAR_OR_VALUE_TYPES.value_and_function) || (ref_object.variable_and_value == VAR_OR_VALUE_TYPES.all)) {
 
- 		menu_var_or_value += '<div class="item" data-option="'+VAR_OR_VALUE_TYPES.only_value+'">'+LocalizedStrings.getUI('text_value')+'</div>';
 
- 	}
 
- 	if (ref_object.variable_and_value == VAR_OR_VALUE_TYPES.only_function) {
 
- 		menu_var_or_value = '<div class="ui dropdown menu_var_or_value_dom"><div class="text"></div><i class="dropdown icon"></i><div class="menu menu_only_functions">';
 
- 		menu_var_or_value += '</div>';
 
- 	} 
 
- 	if ((ref_object.variable_and_value == VAR_OR_VALUE_TYPES.variable_and_function) 
 
- 		|| (ref_object.variable_and_value == VAR_OR_VALUE_TYPES.value_and_function) || (ref_object.variable_and_value == VAR_OR_VALUE_TYPES.all)) {
 
- 		
 
- 		menu_var_or_value += '<div class="item" data-option="'+VAR_OR_VALUE_TYPES.only_function+'"><i class="dropdown icon"></i>'+LocalizedStrings.getUI('btn_function');
 
- 		menu_var_or_value += '<div class="menu menu_only_functions">';
 
- 		menu_var_or_value += '</div></div>';
 
- 		if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 			menu_var_or_value += '<div class="item"><i class="dropdown icon"></i>' + LocalizedStrings.getUI('text_change');
 
- 			menu_var_or_value += '<div class="menu">';
 
- 			menu_var_or_value += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.exp_op_exp+'">EXP OP EXP</div>';
 
- 			menu_var_or_value += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.op_exp+'">OP EXP</div>';
 
- 			menu_var_or_value += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.par_exp_par+'">( EXP )</div>';
 
- 			menu_var_or_value += '</div></div>';
 
- 		}
 
- 	}
 
-     menu_var_or_value += '</div></div>';
 
-     menu_var_or_value = $(menu_var_or_value);
 
-     dom_object.append(menu_var_or_value);
 
-     addHandlers(command, ref_object, dom_object, menu_var_or_value, function_obj, expression_element);
 
-     addVariablesToMenu(function_obj, menu_var_or_value, ref_object, expression_element);
 
-     addFunctionsToMenu(function_obj, menu_var_or_value, ref_object, expression_element);
 
- 	addIVProgFunctionsToMenu(function_obj, menu_var_or_value, ref_object, expression_element);
 
-     if (ref_object.content || ref_object.function_called) {
 
-     	if (ref_object.content) {
 
-     		// Verificar se a variável ainda existe:
 
-     		var variable_fun = isVarInProgram(ref_object.content, function_obj);
 
-     		if (variable_fun) {
 
-     			ref_object.content = variable_fun;
 
-     			renderPreviousContent(function_obj, menu_var_or_value, ref_object, dom_object, command, expression_element);
 
- 	    	} else {
 
- 	    		if (ref_object.content && ref_object.content.type) {
 
- 	    			ref_object.content = null;
 
- 	    			appendSelectText(ref_object, menu_var_or_value);
 
- 	    		} else {
 
- 	    			renderPreviousContent(function_obj, menu_var_or_value, ref_object, dom_object, command, expression_element);
 
- 	    		}
 
- 	    	}
 
-     	} else if (ref_object.function_called) {
 
-     		// Verificar se a função ainda existe:
 
-     		var ret_function = isFunctionInProgram(ref_object.function_called);
 
-     		if (ret_function) {
 
-     			ref_object.function_called = ret_function;
 
-     			renderPreviousContent(function_obj, menu_var_or_value, ref_object, dom_object, command, expression_element);
 
-     		} else {
 
-     			ref_object.content = null;
 
- 		     	ref_object.row = null;
 
- 		     	ref_object.column = null;
 
- 		     	delete ref_object.function_called;
 
- 		     	delete ref_object.parameters_list;
 
-     			appendSelectText(ref_object, menu_var_or_value);
 
-     		}
 
-     	}
 
-     } else {
 
-     	appendSelectText(ref_object, menu_var_or_value);
 
-     }
 
- }
 
- function appendSelectText (ref_object, menu_var_or_value) {
 
- 	switch(ref_object.variable_and_value) {
 
- 		case VAR_OR_VALUE_TYPES.only_variable:
 
- 			menu_var_or_value.find('.text').append('<i>'+LocalizedStrings.getUI('var_menu_select_var')+'</i>');
 
- 			break;
 
- 		case VAR_OR_VALUE_TYPES.all:
 
- 			menu_var_or_value.find('.text').append('<i>'+LocalizedStrings.getUI('var_menu_select_all')+'</i>');
 
- 			break;
 
- 		case VAR_OR_VALUE_TYPES.variable_and_function:
 
- 			menu_var_or_value.find('.text').append('<i>'+LocalizedStrings.getUI('var_menu_select_all')+'</i>');
 
- 			break;
 
- 		case VAR_OR_VALUE_TYPES.only_function:
 
- 			menu_var_or_value.find('.text').append('<i>'+LocalizedStrings.getUI('var_menu_select_function')+'</i>');
 
- 			break;
 
- 	}
 
- }
 
- function isFunctionInProgram (function_called_obj) {
 
- 	if (function_called_obj.name) {
 
- 		if (window.program_obj.functions) {
 
- 			for (var i = 0; i < window.program_obj.functions.length; i++) {
 
- 				if (window.program_obj.functions[i] == function_called_obj) {
 
- 					return window.program_obj.functions[i];
 
- 				}
 
- 			}
 
- 			for (var i = 0; i < window.program_obj.functions.length; i++) {
 
- 				if (window.program_obj.functions[i].name == function_called_obj.name) {
 
- 					return window.program_obj.functions[i];
 
- 				}
 
- 			}
 
- 		}
 
- 	} else if (function_called_obj.identifier) {
 
- 		for (var i = 0; i < window.system_functions.length; i++) {
 
- 			if (window.system_functions[i].identifier == function_called_obj.identifier) {
 
- 				return window.system_functions[i];
 
- 			}
 
- 		}
 
- 	}
 
- 	
 
- 	return null;
 
- }
 
- function isVarInProgram (var_obj, function_obj) {
 
- 	// Verify in locals:
 
- 	if (function_obj.variables_list) {
 
- 		for (var i = 0; i < function_obj.variables_list.length; i++) {
 
- 			if (function_obj.variables_list[i] == var_obj) {
 
- 				return function_obj.variables_list[i];
 
- 			}
 
- 		}
 
- 	}
 
- 	// Verify in parameters:
 
- 	if (function_obj.parameters_list) {
 
- 		for (var i = 0; i < function_obj.parameters_list.length; i++) {
 
- 			if (function_obj.parameters_list[i] == var_obj) {
 
- 				return function_obj.parameters_list[i];
 
- 			}
 
- 		}
 
- 	}
 
- 	// Verify in globals:
 
- 	if (window.program_obj.globals) {
 
- 		for (var i = 0; i < window.program_obj.globals.length; i++) {
 
- 			if (window.program_obj.globals[i] == var_obj) {
 
- 				return window.program_obj.globals[i];
 
- 			}
 
- 		}
 
- 	}
 
- 	// If not found, verify if the reference was lost
 
- 	if (var_obj) {
 
- 		if (function_obj.variables_list) {
 
- 			for (var i = 0; i < function_obj.variables_list.length; i++) {
 
- 				if (function_obj.variables_list[i].name == var_obj.name) {
 
- 					return function_obj.variables_list[i];
 
- 				}
 
- 			}
 
- 		}
 
- 		if (function_obj.parameters_list) {
 
- 			for (var i = 0; i < function_obj.parameters_list.length; i++) {
 
- 				if (function_obj.parameters_list[i].name == var_obj.name) {
 
- 					return function_obj.parameters_list[i];
 
- 				}
 
- 			}
 
- 		}
 
- 		if (window.program_obj.globals) {
 
- 			for (var i = 0; i < window.program_obj.globals.length; i++) {
 
- 				if (window.program_obj.globals[i].name == var_obj.name) {
 
- 					return window.program_obj.globals[i];
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- 	return null;
 
- }
 
- export function refreshMenu (menu_var_or_value_dom) {
 
- 	console.log('\n\n');
 
- 	console.log(menu_var_or_value_dom);
 
- 	console.log("olá, fui chamado! note alguns DATAS recuperados: ");
 
- 	console.log(menu_var_or_value_dom.data());
 
- 	console.log('\n\n\n');
 
- }
 
- function renderPreviousContent (function_obj, menu_var_or_value, ref_object, dom_object, command, expression_element) {
 
- 	
 
- 	if (ref_object.function_called) {
 
- 		menu_var_or_value.remove();
 
- 		variableValueMenuCode(command, ref_object, dom_object, function_obj, menu_var_or_value, expression_element);
 
- 	} else if (ref_object.content.type) { 
 
- 		menu_var_or_value.remove();
 
- 		variableValueMenuCode(command, ref_object, dom_object, function_obj, menu_var_or_value, expression_element);
 
- 	} else {
 
- 		menu_var_or_value.remove();
 
- 		variableValueMenuCode(command, ref_object, dom_object, function_obj, menu_var_or_value, expression_element);
 
- 	}
 
- }
 
- function variableValueMenuCode (command, variable_obj, dom_object, function_obj, menu_var_or_value, expression_element) {
 
- 	
 
- 	if (variable_obj.content || variable_obj.function_called) {
 
-     	// Verificar se a variável ainda existe:
 
-     	var var_fun = isVarInProgram(variable_obj.content, function_obj);
 
-     	if (var_fun) {
 
- 	    	variable_obj.content = var_fun;
 
-     	} else {
 
-     		if (variable_obj.content && variable_obj.content.type) {
 
-     			variable_obj.content = null;
 
-     			appendSelectText(variable_obj, menu_var_or_value);
 
-     		}
 
-     	}
 
-     } else {
 
-     	appendSelectText(variable_obj, menu_var_or_value);
 
-     }
 
- 	if (variable_obj.content == null && variable_obj.function_called == null) {
 
- 		renderMenu(command, variable_obj, dom_object, function_obj, 2, expression_element);
 
- 		return;
 
- 	}
 
- 	var ret = '';
 
- 	if (variable_obj.function_called) {
 
- 		if (variable_obj.function_called.parameters_list == null || variable_obj.function_called.length == 0) {
 
- 			menu_var_or_value.find('.text').text(' ');
 
- 			dom_object.find('.menu_var_or_value_dom').remove();
 
- 			var parameters_menu;
 
- 			
 
- 			if (variable_obj.function_called.name) {
 
- 				parameters_menu = '<div class="parameters_function_called"> '+variable_obj.function_called.name+' <span> ( </span>';
 
- 			} else {
 
- 				parameters_menu = '<div class="parameters_function_called"> <i>'+LocalizedStrings.getUI(variable_obj.function_called.category)+'.'+LocalizedStrings.getUI(variable_obj.function_called.identifier)+'</i> <span> ( </span>';
 
- 			}
 
- 			parameters_menu += '<span> ) </span></div>';
 
- 			parameters_menu = $(parameters_menu);
 
- 			dom_object.append(parameters_menu);
 
- 			var context_menu = '<div class="ui dropdown context_menu_clear"><div class="text"></div><i class="dropdown icon"></i><div class="menu">';
 
- 			context_menu += '<div class="item" data-clear="true">'+LocalizedStrings.getUI('btn_clear')+'</div>';
 
- 			if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 				context_menu += '<div class="item"><i class="dropdown icon"></i>' + LocalizedStrings.getUI('text_change');
 
- 				context_menu += '<div class="menu">';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.exp_op_exp+'">EXP OP EXP</div>';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.op_exp+'">OP EXP</div>';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.par_exp_par+'">( EXP )</div>';
 
- 				context_menu += '</div></div>';
 
- 			}
 
- 			context_menu += '</div></div>';
 
- 			context_menu = $(context_menu);
 
- 			context_menu.insertAfter( dom_object.find('.parameters_function_called') );
 
- 			context_menu.dropdown({
 
- 				onChange: function(value, text, $selectedItem) {
 
- 				 console.log('S1');
 
- 			     if ($selectedItem.data('clear')) {
 
- 			     	console.log('PP1');
 
- 			     	dom_object.text('');
 
- 			     	variable_obj.content = null;
 
- 			     	variable_obj.row = null;
 
- 			     	variable_obj.column = null;
 
- 			     	delete variable_obj.function_called;
 
- 			     	delete variable_obj.parameters_list;
 
- 			     	renderMenu(command, variable_obj, dom_object, function_obj, 2, expression_element);
 
- 			     }
 
- 			     if ($selectedItem.data('exp')) {
 
- 			     	AttribuitionsManagement.manageExpressionElements(command, variable_obj, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 			     }
 
- 		      }
 
- 			});
 
- 		} else {
 
- 			menu_var_or_value.find('.text').text(' ');
 
- 			dom_object.find('.menu_var_or_value_dom').remove();
 
- 			var parameters_menu;
 
- 			if (variable_obj.function_called.name) {
 
- 				parameters_menu = '<div class="parameters_function_called"> '+variable_obj.function_called.name+' <span> ( </span>';
 
- 			} else {
 
- 				parameters_menu = '<div class="parameters_function_called"> <i>'+LocalizedStrings.getUI(variable_obj.function_called.category)+'.'+LocalizedStrings.getUI(variable_obj.function_called.identifier)+'</i> <span> ( </span>';
 
- 			}
 
- 			for (var j = 0; j < variable_obj.function_called.parameters_list.length; j++) {
 
- 				parameters_menu += '<div class="render_style_param parameter_'+j+'"></div>';
 
- 				if ((j + 1) != variable_obj.function_called.parameters_list.length) {
 
- 					parameters_menu += ' , ';
 
- 				}
 
- 			}
 
- 			parameters_menu += '<span> ) </span></div>';
 
- 			parameters_menu = $(parameters_menu);
 
- 			dom_object.append(parameters_menu);
 
- 			for (var j = 0; j < variable_obj.function_called.parameters_list.length; j++) {
 
- 				renderMenu(command, variable_obj.parameters_list[j], parameters_menu.find('.parameter_'+j), function_obj, 2, expression_element);
 
- 			}
 
- 			var context_menu = '<div class="ui dropdown context_menu_clear"><div class="text"></div><i class="dropdown icon"></i><div class="menu">';
 
- 			context_menu += '<div class="item" data-clear="true">'+LocalizedStrings.getUI('btn_clear')+'</div>';
 
- 			if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 				context_menu += '<div class="item"><i class="dropdown icon"></i>' + LocalizedStrings.getUI('text_change');
 
- 				context_menu += '<div class="menu">';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.exp_op_exp+'">EXP OP EXP</div>';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.op_exp+'">OP EXP</div>';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.par_exp_par+'">( EXP )</div>';
 
- 				context_menu += '</div></div>';
 
- 			}
 
- 			context_menu += '</div></div>';
 
- 			context_menu = $(context_menu);
 
- 			context_menu.insertAfter( parameters_menu );
 
- 			context_menu.dropdown({
 
- 				onChange: function(value, text, $selectedItem) {
 
- 					console.log('S2');
 
- 			     if ($selectedItem.data('clear')) {
 
- 			     	console.log('PP2');
 
- 			     	dom_object.text('');
 
- 			     	variable_obj.content = null;
 
- 			     	variable_obj.row = null;
 
- 			     	variable_obj.column = null;
 
- 			     	delete variable_obj.function_called;
 
- 			     	delete variable_obj.parameters_list;
 
- 			     	renderMenu(command, variable_obj, dom_object, function_obj, 2, expression_element);
 
- 			     }
 
- 			     if ($selectedItem.data('exp')) {
 
- 			     	AttribuitionsManagement.manageExpressionElements(command, variable_obj, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 			     }
 
- 		      }
 
- 			});
 
- 		}
 
- 	} else if (variable_obj.content.type) {
 
- 		var variable_render = "";
 
- 		if (variable_obj.content.dimensions == 1) {
 
- 			variable_render = '<div class="variable_rendered"> <span class="var_name">'+variable_obj.content.name+'</span>';
 
- 			variable_render += ' <span>[ </span> <div class="column_container"></div> <span> ]</span>';
 
- 			
 
- 			variable_render += '</div>';
 
- 			variable_render = $(variable_render);
 
- 			dom_object.append(variable_render);
 
- 			var context_menu = '<div class="ui dropdown context_menu_clear"><div class="text"></div><i class="dropdown icon"></i><div class="menu">';
 
- 			context_menu += '<div class="item" data-clear="true">'+LocalizedStrings.getUI('btn_clear')+'</div>';
 
- 			if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 				context_menu += '<div class="item"><i class="dropdown icon"></i>' + LocalizedStrings.getUI('text_change');
 
- 				context_menu += '<div class="menu">';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.exp_op_exp+'">EXP OP EXP</div>';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.op_exp+'">OP EXP</div>';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.par_exp_par+'">( EXP )</div>';
 
- 				context_menu += '</div></div>';
 
- 			}
 
- 			context_menu += '</div></div>';
 
- 			context_menu = $(context_menu);
 
- 			variable_render.append(context_menu);
 
- 			context_menu.dropdown({
 
- 				onChange: function(value, text, $selectedItem) {
 
- 					console.log('S3');
 
- 			     if ($selectedItem.data('clear')) {
 
- 			     	console.log('PP3');
 
- 			     	dom_object.text('');
 
- 			     	variable_obj.content = null;
 
- 			     	variable_obj.row = null;
 
- 			     	variable_obj.column = null;
 
- 			     	delete variable_obj.function_called;
 
- 		     		delete variable_obj.parameters_list;
 
- 			     	renderMenu(command, variable_obj, dom_object, function_obj, 2, expression_element);
 
- 			     }
 
- 			     if ($selectedItem.data('exp')) {
 
- 			     	AttribuitionsManagement.manageExpressionElements(command, variable_obj, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 			     }
 
- 		      }
 
- 			});
 
- 			if (!variable_obj.column) {
 
- 				variable_obj.column = new Models.VariableValueMenu(VAR_OR_VALUE_TYPES.all, null, null, null, true);
 
- 			}
 
- 			variableValueMenuCode(command, variable_obj.column, $(variable_render.find('.column_container')), function_obj, menu_var_or_value, expression_element);
 
- 		} else if (variable_obj.content.dimensions == 2) {
 
- 			variable_render = '<div class="variable_rendered"> <span class="var_name">'+variable_obj.content.name+'</span>';
 
- 			variable_render += ' <span>[ </span> <div class="row_container"></div> <span> ]</span>';
 
- 			variable_render += ' <span>[ </span> <div class="column_container"></div> <span> ] </span>';
 
- 			
 
- 			variable_render += '</div>';
 
- 			variable_render = $(variable_render);
 
- 			dom_object.append(variable_render);
 
- 			var context_menu = '<div class="ui dropdown context_menu_clear"><div class="text"></div><i class="dropdown icon"></i><div class="menu">';
 
- 			context_menu += '<div class="item" data-clear="true">'+LocalizedStrings.getUI('btn_clear')+'</div>';
 
- 			if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 				context_menu += '<div class="item"><i class="dropdown icon"></i>' + LocalizedStrings.getUI('text_change');
 
- 				context_menu += '<div class="menu">';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.exp_op_exp+'">EXP OP EXP</div>';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.op_exp+'">OP EXP</div>';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.par_exp_par+'">( EXP )</div>';
 
- 				context_menu += '</div></div>';
 
- 			}
 
- 			context_menu += '</div></div>';
 
- 			context_menu = $(context_menu);
 
- 			variable_render.append(context_menu);
 
- 			context_menu.dropdown({
 
- 				onChange: function(value, text, $selectedItem) {
 
- 					console.log('S4');
 
- 			     if ($selectedItem.data('clear')) {
 
- 			     	console.log('PP4');
 
- 			     	dom_object.text('');
 
- 			     	variable_obj.content = null;
 
- 			     	variable_obj.row = null;
 
- 			     	variable_obj.column = null;
 
- 			     	delete variable_obj.function_called;
 
- 		     		delete variable_obj.parameters_list;
 
- 			     	renderMenu(command, variable_obj, dom_object, function_obj, 2, expression_element);
 
- 			     }
 
- 			     if ($selectedItem.data('exp')) {
 
- 			     	AttribuitionsManagement.manageExpressionElements(command, variable_obj, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 			     }
 
- 		      }
 
- 			});
 
- 			if (!variable_obj.column) {
 
- 				variable_obj.column = new Models.VariableValueMenu(VAR_OR_VALUE_TYPES.all, null, null, null, true);
 
- 			}
 
- 			if (!variable_obj.row) {
 
- 				variable_obj.row = new Models.VariableValueMenu(VAR_OR_VALUE_TYPES.all, null, null, null, true);
 
- 			}
 
- 			variableValueMenuCode(command, variable_obj.row, $(variable_render.find('.row_container')), function_obj, menu_var_or_value, expression_element);
 
- 			variableValueMenuCode(command, variable_obj.column, $(variable_render.find('.column_container')), function_obj, menu_var_or_value, expression_element);
 
- 		} else {
 
- 			variable_render = '<div class="variable_rendered"> <span class="var_name">'+variable_obj.content.name+'</span>';
 
- 			variable_render += '</div>';
 
- 			variable_render = $(variable_render);
 
- 			dom_object.append(variable_render);
 
- 			var context_menu = '<div class="ui dropdown context_menu_clear"><div class="text"></div><i class="dropdown icon"></i><div class="menu">';
 
- 			context_menu += '<div class="item" data-clear="true">'+LocalizedStrings.getUI('btn_clear')+'</div>';
 
- 			if (command.type == Models.COMMAND_TYPES.attribution && !dom_object.hasClass('var_attributed')) {
 
- 				console.log('dom_object6');
 
- 				console.log(dom_object);
 
- 				context_menu += '<div class="item"><i class="dropdown icon"></i>' + LocalizedStrings.getUI('text_change');
 
- 				context_menu += '<div class="menu">';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.exp_op_exp+'">EXP OP EXP</div>';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.op_exp+'">OP EXP</div>';
 
- 				context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.par_exp_par+'">( EXP )</div>';
 
- 				context_menu += '</div></div>';
 
- 			}
 
- 			context_menu += '</div></div>';
 
- 			context_menu = $(context_menu);
 
- 			variable_render.append(context_menu);
 
- 			context_menu.dropdown({
 
- 				onChange: function(value, text, $selectedItem) {
 
- 					console.log('S5');
 
- 			     if ($selectedItem.data('clear')) {
 
- 			     	console.log('PP5');
 
- 			     	dom_object.text('');
 
- 			     	variable_obj.content = null;
 
- 			     	variable_obj.row = null;
 
- 			     	variable_obj.column = null;
 
- 			     	delete variable_obj.function_called;
 
- 		     		delete variable_obj.parameters_list;
 
- 			     	renderMenu(command, variable_obj, dom_object, function_obj, 2, expression_element);
 
- 			     }
 
- 			     if ($selectedItem.data('exp')) {
 
- 			     	AttribuitionsManagement.manageExpressionElements(command, variable_obj, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 			     }
 
- 		      }
 
- 			});
 
- 		}
 
- 	} else {
 
- 		var variable_render = '<div class="variable_rendered"> <span class="var_name">'+variable_obj.content+'</span>';
 
- 		variable_render += '</div>';
 
- 		variable_render = $(variable_render);
 
- 		dom_object.append(variable_render);
 
- 		var context_menu = '<div class="ui dropdown context_menu_clear"><div class="text"></div><i class="dropdown icon"></i><div class="menu">';
 
- 		context_menu += '<div class="item" data-clear="true">'+LocalizedStrings.getUI('btn_clear')+'</div>';
 
- 		if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 			context_menu += '<div class="item"><i class="dropdown icon"></i>' + LocalizedStrings.getUI('text_change');
 
- 			context_menu += '<div class="menu">';
 
- 			context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.exp_op_exp+'">EXP OP EXP</div>';
 
- 			context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.op_exp+'">OP EXP</div>';
 
- 			context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.par_exp_par+'">( EXP )</div>';
 
- 			context_menu += '</div></div>';
 
- 		}
 
- 		context_menu += '</div></div>';
 
- 		context_menu = $(context_menu);
 
- 		if (variable_obj.variable_and_value != VAR_OR_VALUE_TYPES.only_value) {
 
- 			context_menu.insertAfter( variable_render );
 
- 		}
 
- 		context_menu.dropdown({
 
- 			onChange: function(value, text, $selectedItem) {
 
- 				console.log('S6');
 
- 		     if ($selectedItem.data('clear')) {
 
- 		     	console.log('PP6');
 
- 		     	dom_object.text('');
 
-    				variable_obj.content = null;
 
- 			    variable_obj.row = null;
 
- 			    variable_obj.column = null;
 
- 		     	delete variable_obj.function_called;
 
- 		     	delete variable_obj.parameters_list;
 
- 		     	dom_object.find('.value_rendered').remove();
 
- 				dom_object.find('.context_menu_clear').remove();
 
- 				dom_object.find('.width-dynamic-minus').remove();
 
- 		     	renderMenu(command, variable_obj, dom_object, function_obj, 2, expression_element);
 
- 		     }
 
- 		     if ($selectedItem.data('exp')) {
 
- 		     	AttribuitionsManagement.manageExpressionElements(command, variable_obj, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 		     }
 
- 	      }
 
- 		});
 
- 		variable_render.on('click', function(e) {
 
- 			variable_render.remove();
 
- 			variable_render.empty();
 
- 			variable_render.remove();
 
- 			dom_object.empty();
 
- 			dom_object.append('<span class="menu_var_or_value_dom"> </span>');
 
- 			
 
- 			openInputToValue(command, variable_obj, dom_object, menu_var_or_value, function_obj, expression_element);
 
- 		});
 
- 	}
 
- }
 
- function addIVProgFunctionsToMenu (function_obj, menu_var_or_value, ref_object, expression_element) {
 
- 	var sub_menu = menu_var_or_value.find('.menu_only_functions');
 
- 	sub_menu.append('<div class="divider"></div><div class="header">'+LocalizedStrings.getUI('text_header_ivprog_functions')+'</div>');
 
- 	sub_menu.append('<div class="item"><i class="dropdown icon"></i>'+LocalizedStrings.getUI('text_menu_functions_math')+'<div class="menu menu_math_functions"></div></div>');
 
- 	sub_menu.append('<div class="item"><i class="dropdown icon"></i>'+LocalizedStrings.getUI('text_menu_functions_text')+'<div class="menu menu_text_functions"></div></div>');
 
- 	sub_menu.append('<div class="item"><i class="dropdown icon"></i>'+LocalizedStrings.getUI('text_menu_functions_arrangement')+'<div class="menu menu_arrangement_functions"></div></div>');
 
- 	sub_menu.append('<div class="item"><i class="dropdown icon"></i>'+LocalizedStrings.getUI('text_menu_functions_conversion')+'<div class="menu menu_conversion_functions"></div></div>');
 
- 	// Insert Math functions:
 
- 	for (var i = 0; i < window.system_functions.length; i++) {
 
- 		var t = $('<div class="item"></div>');
 
- 		t.data('function_reference', window.system_functions[i]);
 
- 		t.data('option', VAR_OR_VALUE_TYPES.only_function);
 
- 		t.text(LocalizedStrings.getUI(window.system_functions[i].identifier));
 
- 		
 
- 		switch(window.system_functions[i].category) {
 
- 			case Models.SYSTEM_FUNCTIONS_CATEGORIES.math:
 
- 				sub_menu.find('.menu_math_functions').append(t);
 
- 				break;
 
- 			case Models.SYSTEM_FUNCTIONS_CATEGORIES.text:
 
- 				sub_menu.find('.menu_text_functions').append(t);
 
- 				break;
 
- 			case Models.SYSTEM_FUNCTIONS_CATEGORIES.arrangement:
 
- 				sub_menu.find('.menu_arrangement_functions').append(t);
 
- 				break;
 
- 			case Models.SYSTEM_FUNCTIONS_CATEGORIES.conversion:
 
- 				sub_menu.find('.menu_conversion_functions').append(t);
 
- 				break;
 
- 		}	
 
- 	}
 
- }
 
- function addFunctionsToMenu (function_obj, menu_var_or_value, ref_object, expression_element) {
 
- 	var sub_menu = menu_var_or_value.find('.menu_only_functions');
 
- 	sub_menu.text('');
 
- 	for (var i = 0; i < window.program_obj.functions.length; i++) {
 
- 		var temp = $('<div class="item" data-option="'+VAR_OR_VALUE_TYPES.only_function+'">' + window.program_obj.functions[i].name + ' </div>');
 
- 		temp.data('function_reference', window.program_obj.functions[i]);
 
- 		sub_menu.append(temp);
 
- 	}
 
- }
 
- function addVariablesToMenu (function_obj, menu_var_or_value, ref_object, expression_element) {
 
- 	var sub_menu = menu_var_or_value.find('.menu_only_vars');
 
- 	sub_menu.text('');
 
- 	var is_there = false;
 
- 	if (window.program_obj.globals) {
 
- 		if (ref_object.include_constant) {
 
- 			for (var i = 0; i < window.program_obj.globals.length; i++) {
 
- 				var temp = $('<div class="item" data-option="'+VAR_OR_VALUE_TYPES.only_variable+'">' + window.program_obj.globals[i].name + ' </div>');
 
- 				temp.data('variable_reference', window.program_obj.globals[i]);
 
- 				sub_menu.append(temp);
 
- 				is_there = true;
 
- 			}
 
- 		} else {
 
- 			for (var i = 0; i < window.program_obj.globals.length; i++) {
 
- 				if (!window.program_obj.globals[i].is_constant) {
 
- 					var temp = $('<div class="item" data-option="'+VAR_OR_VALUE_TYPES.only_variable+'">' + window.program_obj.globals[i].name + ' </div>');
 
- 					temp.data('variable_reference', window.program_obj.globals[i]);
 
- 					sub_menu.append(temp);
 
- 					is_there = true;
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- 	if (function_obj.parameters_list) {
 
- 		for (var i = 0; i < function_obj.parameters_list.length; i++) {
 
- 			var temp = $('<div class="item" data-option="'+VAR_OR_VALUE_TYPES.only_variable+'">' + function_obj.parameters_list[i].name + ' </div>');
 
- 			temp.data('variable_reference', function_obj.parameters_list[i]);
 
- 			sub_menu.append(temp);
 
- 			is_there = true;
 
- 		}
 
- 	}
 
- 	if (function_obj.variables_list) {
 
- 		for (var i = 0; i < function_obj.variables_list.length; i++) {
 
- 			var temp = $('<div class="item" data-option="'+VAR_OR_VALUE_TYPES.only_variable+'">' + function_obj.variables_list[i].name + ' </div>');
 
- 			temp.data('variable_reference', function_obj.variables_list[i]);
 
- 			sub_menu.append(temp);
 
- 			is_there = true;
 
- 		}
 
- 	}
 
- 	if (!is_there) {
 
- 		sub_menu.append($('<div class="header">'+LocalizedStrings.getUI('text_none_variable')+'</div>'));
 
- 		sub_menu.append($('<div class="item disabled">'+LocalizedStrings.getUI('text_none_variable_instruction')+'</div>'));
 
- 	}
 
- }
 
- function addHandlers (command, ref_object, dom_object, menu_var_or_value, function_obj, expression_element) {
 
- 	if (ref_object.variable_and_value != VAR_OR_VALUE_TYPES.only_value) {
 
- 		menu_var_or_value.dropdown({
 
- 		  onChange: function(value, text, $selectedItem) {
 
- 		  	console.log('S7');
 
- 		  	dom_object.find('.var_name').remove();
 
- 		     switch ($selectedItem.data('option')) {
 
- 		     	case VAR_OR_VALUE_TYPES.only_function:
 
- 		     		openInputToFunction(command, ref_object, dom_object, menu_var_or_value, function_obj, $($selectedItem).data('function_reference'), expression_element);
 
- 		     		break;
 
- 		     	case VAR_OR_VALUE_TYPES.only_value:
 
- 		     		openInputToValue(command, ref_object, dom_object, menu_var_or_value, function_obj, expression_element);
 
- 		     		break;
 
- 		     	case VAR_OR_VALUE_TYPES.only_variable:
 
- 		     		openInputToVariable(command, ref_object, dom_object, menu_var_or_value, function_obj, $($selectedItem).data('variable_reference'), expression_element);
 
- 		     		break;
 
- 		     }
 
- 		     if ($selectedItem.data('exp')) {
 
- 		     	AttribuitionsManagement.manageExpressionElements(command, ref_object, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 		     }
 
- 		     if (command.type == Models.COMMAND_TYPES.repeatNtimes) {
 
- 		     	RepeatNTimesManagement.manageExpressionElements(command, ref_object, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 		     }
 
- 	      }
 
- 	    });
 
- 	}
 
- 	dom_object.find('.width-dynamic').on('input', function() {
 
- 	    var inputWidth = $(this).textWidth()+10;
 
- 	    $(this).focus();
 
- 	    var tmpStr = $(this).val();
 
- 		$(this).val('');
 
- 		$(this).val(tmpStr);
 
- 	    $(this).css({
 
- 	        width: inputWidth
 
- 	    })
 
- 	}).trigger('input');
 
- 	if (command.type == Models.COMMAND_TYPES.comment) {
 
- 		dom_object.parent().on('click', function(e) {
 
- 			dom_object.find('.value_rendered').remove();
 
- 			dom_object.find('.value_rendered').empty();
 
- 			dom_object.find('.value_rendered').remove();
 
- 			dom_object.empty();
 
- 			dom_object.append('<span class="menu_var_or_value_dom"> </span>');
 
- 			
 
- 			openInputToValue(command, ref_object, dom_object, menu_var_or_value, function_obj, expression_element)
 
- 		});
 
- 	}
 
- 	
 
- }
 
- function openInputToFunction (command, ref_object, dom_object, menu_var_or_value, function_obj, function_selected, expression_element) {
 
- 	
 
- 	ref_object.function_called = function_selected;
 
- 	ref_object.parameters_list = [];
 
- 	if (function_selected.parameters_list != null && function_selected.parameters_list.length > 0) {
 
- 		menu_var_or_value.find('.text').text(' ');
 
- 		dom_object.find('.menu_var_or_value_dom').remove();
 
- 		var parameters_menu;
 
- 		if (function_selected.name) {
 
- 			parameters_menu = '<div class="parameters_function_called"> '+function_selected.name+' <span> ( </span>';
 
- 		} else {
 
- 			parameters_menu = '<div class="parameters_function_called"> <i>'+LocalizedStrings.getUI(function_selected.category)+'.'+LocalizedStrings.getUI(function_selected.identifier)+'</i> <span> ( </span>';
 
- 		}
 
- 		for (var j = 0; j < function_selected.parameters_list.length; j++) {
 
- 			parameters_menu += '<div class="render_style_param parameter_'+j+'"></div>';
 
- 			if ((j + 1) != function_selected.parameters_list.length) {
 
- 				parameters_menu += ' , ';
 
- 			}
 
- 		}
 
- 		parameters_menu += '<span> ) </span></div>';
 
- 		parameters_menu = $(parameters_menu);
 
- 		dom_object.append(parameters_menu);
 
- 		for (var j = 0; j < function_selected.parameters_list.length; j++) {
 
- 			var temp = new Models.VariableValueMenu(VAR_OR_VALUE_TYPES.all, null, null, null, true);
 
- 			ref_object.parameters_list.push(temp);
 
- 			renderMenu(command, temp, parameters_menu.find('.parameter_'+j), function_obj, 2, expression_element);
 
- 		}
 
- 		var context_menu = '<div class="ui dropdown context_menu_clear"><div class="text"></div><i class="dropdown icon"></i><div class="menu">';
 
- 		context_menu += '<div class="item" data-clear="true">'+LocalizedStrings.getUI('btn_clear')+'</div>';
 
- 		if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 			context_menu += '<div class="item"><i class="dropdown icon"></i>' + LocalizedStrings.getUI('text_change');
 
- 			context_menu += '<div class="menu">';
 
- 			context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.exp_op_exp+'">EXP OP EXP</div>';
 
- 			context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.op_exp+'">OP EXP</div>';
 
- 			context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.par_exp_par+'">( EXP )</div>';
 
- 			context_menu += '</div></div>';
 
- 		}
 
- 		context_menu += '</div></div>';
 
- 		context_menu = $(context_menu);
 
- 		context_menu.insertAfter( dom_object.find('.parameters_function_called') );
 
- 		context_menu.dropdown({
 
- 			onChange: function(value, text, $selectedItem) {
 
- 				console.log('S8');
 
- 		     if ($selectedItem.data('clear')) {
 
- 		     	console.log('PP7');
 
- 		     	dom_object.text('');
 
- 		     	ref_object.content = null;
 
- 		     	ref_object.row = null;
 
- 		     	ref_object.column = null;
 
- 		     	delete ref_object.function_called;
 
- 		     	delete ref_object.parameters_list;
 
- 		     	renderMenu(command, ref_object, dom_object, function_obj, 2, expression_element);
 
- 		     }
 
- 		     if ($selectedItem.data('exp')) {
 
- 		     	AttribuitionsManagement.manageExpressionElements(command, ref_object, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 		     }
 
- 	      }
 
- 		});
 
- 	} else {
 
- 		menu_var_or_value.find('.text').text(' ');
 
- 		dom_object.find('.menu_var_or_value_dom').remove();
 
- 		var parameters_menu;
 
- 		if (function_selected.name) {
 
- 			parameters_menu = '<div class="parameters_function_called"> '+function_selected.name+' <span> ( </span>';
 
- 		} else {
 
- 			parameters_menu = '<div class="parameters_function_called"> <i>'+LocalizedStrings.getUI(function_selected.category)+'.'+LocalizedStrings.getUI(function_selected.identifier)+'</i> <span> ( </span>';
 
- 		}
 
- 		
 
- 		parameters_menu += '<span> ) </span></div>';
 
- 		parameters_menu = $(parameters_menu);
 
- 		dom_object.append(parameters_menu);
 
- 		var context_menu = '<div class="ui dropdown context_menu_clear"><div class="text"></div><i class="dropdown icon"></i><div class="menu">';
 
- 		context_menu += '<div class="item" data-clear="true">'+LocalizedStrings.getUI('btn_clear')+'</div>';
 
- 		if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 			context_menu += '<div class="item"><i class="dropdown icon"></i>' + LocalizedStrings.getUI('text_change');
 
- 			context_menu += '<div class="menu">';
 
- 			context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.exp_op_exp+'">EXP OP EXP</div>';
 
- 			context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.op_exp+'">OP EXP</div>';
 
- 			context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.par_exp_par+'">( EXP )</div>';
 
- 			context_menu += '</div></div>';
 
- 		}
 
- 		context_menu += '</div></div>';
 
- 		context_menu = $(context_menu);
 
- 		context_menu.insertAfter( dom_object.find('.parameters_function_called') );
 
- 		context_menu.dropdown({
 
- 			onChange: function(value, text, $selectedItem) {
 
- 				console.log('S9');
 
- 		     if ($selectedItem.data('clear')) {
 
- 		     	console.log('PP8');
 
- 		     	dom_object.text('');
 
- 		     	ref_object.content = null;
 
- 		     	ref_object.row = null;
 
- 		     	ref_object.column = null;
 
- 		     	delete ref_object.function_called;
 
- 		     	delete ref_object.parameters_list;
 
- 		     	renderMenu(command, ref_object, dom_object, function_obj, 2, expression_element);
 
- 		     }
 
- 		     if ($selectedItem.data('exp')) {
 
- 		     	AttribuitionsManagement.manageExpressionElements(command, ref_object, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 		     }
 
- 	      }
 
- 		});
 
- 	}
 
- 	if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 		AttribuitionsManagement.renderMenuOperations(command, ref_object, dom_object, menu_var_or_value, function_obj);
 
- 	}
 
- }
 
- function openInputToVariable (command, ref_object, dom_object, menu_var_or_value, function_obj, variable_selected, expression_element) {
 
- 	
 
- 	ref_object.content = variable_selected;
 
- 	menu_var_or_value.find('.text').text(' ');
 
- 	dom_object.find('.menu_var_or_value_dom').remove();
 
- 	var variable_render = '<div class="variable_rendered"> <span class="var_name">'+variable_selected.name+'</span>';
 
- 	if (variable_selected.dimensions == 1) {
 
- 		variable_render += ' <span>[ </span> <div class="column_container"></div> <span> ]</span>';
 
- 	}
 
- 	if (variable_selected.dimensions == 2) {
 
- 		variable_render += ' <span>[ </span> <div class="row_container"></div> <span> ]</span> ';
 
- 		variable_render += ' <span>[ </span> <div class="column_container"></div> <span> ]</span>';
 
- 	}
 
- 	variable_render += '</div>';
 
- 	variable_render = $(variable_render);
 
- 	dom_object.append(variable_render);
 
- 	if (variable_selected.dimensions == 1) {
 
- 		ref_object.column = new Models.VariableValueMenu(VAR_OR_VALUE_TYPES.all, null, null, null, true);
 
- 		renderMenu(command, ref_object.column, variable_render.find('.column_container'), function_obj, 2, expression_element);
 
- 	}
 
- 	if (variable_selected.dimensions == 2) {
 
- 		ref_object.row = new Models.VariableValueMenu(VAR_OR_VALUE_TYPES.all, null, null, null, true);
 
- 		renderMenu(command, ref_object.row, variable_render.find('.row_container'), function_obj, 2, expression_element);
 
- 		ref_object.column = new Models.VariableValueMenu(VAR_OR_VALUE_TYPES.all, null, null, null, true);
 
- 		renderMenu(command, ref_object.column, variable_render.find('.column_container'), function_obj, 2, expression_element);
 
- 	}
 
- 	var context_menu = '<div class="ui dropdown context_menu_clear"><div class="text"></div><i class="dropdown icon"></i><div class="menu">';
 
- 	context_menu += '<div class="item" data-clear="true">'+LocalizedStrings.getUI('btn_clear')+'</div>';
 
- 	if (command.type == Models.COMMAND_TYPES.attribution && !dom_object.hasClass('var_attributed')) {
 
- 		console.log("dom_object 10: ");
 
- 		console.log(dom_object);
 
- 		context_menu += '<div class="item"><i class="dropdown icon"></i>' + LocalizedStrings.getUI('text_change');
 
- 		context_menu += '<div class="menu">';
 
- 		context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.exp_op_exp+'">EXP OP EXP</div>';
 
- 		context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.op_exp+'">OP EXP</div>';
 
- 		context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.par_exp_par+'">( EXP )</div>';
 
- 		context_menu += '</div></div>';
 
- 	}
 
- 	context_menu += '</div></div>';
 
- 	context_menu = $(context_menu);
 
- 	context_menu.insertAfter( dom_object.find('.variable_rendered') );
 
- 	context_menu.dropdown({
 
- 		onChange: function(value, text, $selectedItem) {
 
- 			console.log('S10');
 
- 	     if ($selectedItem.data('clear')) {
 
- 	     	console.log('PP9');
 
- 	     	dom_object.text('');
 
- 	     	ref_object.content = null;
 
- 	     	ref_object.row = null;
 
- 	     	ref_object.column = null;
 
- 	     	delete ref_object.function_called;
 
- 		    delete ref_object.parameters_list;
 
- 	     	renderMenu(command, ref_object, dom_object, function_obj, 2, expression_element);
 
- 	     }
 
- 	     if ($selectedItem.data('exp')) {
 
- 	     	AttribuitionsManagement.manageExpressionElements(command, ref_object, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 	     }
 
- 	     if (command.type == Models.COMMAND_TYPES.repeatNtimes) {
 
- 	     	RepeatNTimesManagement.manageClearExpressionElements(command, ref_object, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 	     }
 
-       }
 
- 	});
 
- 	if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 		AttribuitionsManagement.renderMenuOperations(command, ref_object, dom_object, menu_var_or_value, function_obj, variable_selected);
 
- 	}
 
- }
 
- function openInputToValue (command, ref_object, dom_object, menu_var_or_value, function_obj, expression_element) {
 
- 	if (ref_object.content == null) {
 
- 		ref_object.content = "";
 
- 	}
 
- 	menu_var_or_value.find('.text').text(' ');
 
- 	var field = $('<input type="text" size="2" class="width-dynamic-minus" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" />');
 
- 	field.insertBefore(dom_object.find('.menu_var_or_value_dom'));
 
- 	var rendered = $('<div class="value_rendered"></div>');
 
- 	rendered.insertBefore(field);
 
- 	field.focus();
 
- 	field.val(ref_object.content);
 
- 	var context_menu = '<div class="ui dropdown context_menu_clear"><div class="text"></div><i class="dropdown icon"></i><div class="menu">';
 
- 	context_menu += '<div class="item" data-clear="true">'+LocalizedStrings.getUI('btn_clear')+'</div>';
 
- 	if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 		context_menu += '<div class="item"><i class="dropdown icon"></i>' + LocalizedStrings.getUI('text_change');
 
- 		context_menu += '<div class="menu">';
 
- 		context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.exp_op_exp+'">EXP OP EXP</div>';
 
- 		context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.op_exp+'">OP EXP</div>';
 
- 		context_menu += '<div class="item" data-exp="'+Models.EXPRESSION_ELEMENTS.par_exp_par+'">( EXP )</div>';
 
- 		context_menu += '</div></div>';
 
- 	}
 
- 	context_menu += '</div></div>';
 
- 	context_menu = $(context_menu);
 
- 	dom_object.find('.menu_var_or_value_dom').remove();
 
- 	if (ref_object.variable_and_value != VAR_OR_VALUE_TYPES.only_value) {
 
- 		context_menu.insertAfter( field );
 
- 	}
 
- 	context_menu.dropdown({
 
- 		onChange: function(value, text, $selectedItem) {
 
- 			console.log('S11');
 
- 	     if ($selectedItem.data('clear')) {
 
- 	     	console.log('PP10');
 
- 	     	dom_object.text('');
 
- 	     	dom_object.find('.value_rendered').remove();
 
- 			dom_object.find('.context_menu_clear').remove();
 
- 			dom_object.find('.width-dynamic-minus').remove();
 
- 			ref_object.content = null;
 
- 		    ref_object.row = null;
 
- 		    ref_object.column = null;
 
- 			delete ref_object.function_called;
 
- 		    delete ref_object.parameters_list;
 
- 	     	renderMenu(command, ref_object, dom_object, function_obj, 2, expression_element);
 
- 	     }
 
- 	     if ($selectedItem.data('exp')) {
 
- 	     	AttribuitionsManagement.manageExpressionElements(command, ref_object, dom_object, menu_var_or_value, function_obj, $selectedItem, expression_element);
 
- 	     }
 
-       }
 
- 	});
 
- 	dom_object.find('.width-dynamic-minus').focusout(function() {
 
- 		if ($(this).val().trim()) {
 
- 			ref_object.content = $(this).val().trim();
 
- 		}
 
- 		rendered.text(ref_object.content);
 
- 		$(this).remove();
 
- 	});
 
- 	dom_object.find('.width-dynamic-minus').on('keydown', function(e) {
 
- 		var code = e.keyCode || e.which;
 
- 		if(code == 13) {
 
- 			if ($(this).val().trim()) {
 
- 				ref_object.content = $(this).val().trim();
 
- 			}
 
- 			rendered.text(ref_object.content);
 
- 			$(this).remove();
 
- 		}
 
- 		if(code == 27) {
 
- 			rendered.text(ref_object.content);
 
- 			$(this).remove();
 
- 		}
 
- 	});
 
- 	if (command.type == Models.COMMAND_TYPES.comment) {
 
- 		rendered.parent().on('click', function(e) {
 
- 			console.log("TTT14");
 
- 			rendered.remove();
 
- 			rendered.empty();
 
- 			rendered.remove();
 
- 			dom_object.empty();
 
- 			dom_object.append('<span class="menu_var_or_value_dom"> </span>');
 
- 			
 
- 			openInputToValue(command, ref_object, dom_object, menu_var_or_value, function_obj, expression_element)
 
- 		});
 
- 	}
 
- 	rendered.on('click', function(e) {
 
- 		console.log("TTT2");
 
- 		rendered.remove();
 
- 		rendered.empty();
 
- 		rendered.remove();
 
- 		dom_object.empty();
 
- 		dom_object.append('<span class="menu_var_or_value_dom"> </span>');
 
- 		
 
- 		openInputToValue(command, ref_object, dom_object, menu_var_or_value, function_obj, expression_element)
 
- 	});
 
- 	if (command.type == Models.COMMAND_TYPES.attribution) {
 
- 		AttribuitionsManagement.renderMenuOperations(command, ref_object, dom_object, menu_var_or_value, function_obj);
 
- 	}
 
- }
 
- $.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();
 
- };
 
 
  |