+ t_line tmp_line;
+ std::cout << CItem::gate_id << std::endl;
+ if (CItem::logic_connect) {
+ if (CItem::gate_id != -1 ) {
+ if ( detect_click_position((int)event->x, (int)event->y ) == IN && CItem::gate_id != ID && !workplace->get_logic_item(CItem::gate_id)->get_out_logic_connect()) {
+ tmp_line.logic_id = CItem::gate_id;
+ workplace->get_logic_item(CItem::gate_id)->set_out_connected(true);
+ tmp_line.store_id = ID;
+ workplace->lista_lineas_logic.push_back(tmp_line);
+ workplace->queue_draw();
+ CItem::gate_id = -1;
+ }
+ } else {
+ CItem::gate_id = ID;
+ }
+ }
+ if ( CItem::logic_connect && detect_click_position((int)event->x, (int)event->y ) == OUT && !out_connected) {
+ CItem::gate_id = ID;
+ }
+ list_pointed->push_back(name);
+ combo_entry->set_popdown_strings(*list_pointed);
+ combo_entry->get_entry()->set_text (name);
+ workplace->queue_draw();
+ char f[20];
+ Glib::ustring text;
+ sprintf(f," Conector OUT = %d",out_connected);
+ text = name+f;
+ status_bar->push ( text, 0);