5 in_connected = out_connected = false;
10 imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_n.png");
11 imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_s.png");
12 imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_e.png");
13 imageO = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_o.png");
14 null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png");
17 set_size_request(image->get_width(), image->get_height());
19 menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Conectar", menu_image_linea,SigC::slot(*this, &CItem::on_menu_popup_conectar) ) ) ;
26 bool Not::on_button_press_event(GdkEventButton *event)
29 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
30 if ( CItem::logic_connect ) {
31 if ( detect_click_position((int)event->x, (int)event->y ) == OUT && !out_connected ) {
33 WorkPlace::pointed = ID;
35 if ( detect_click_position((int)event->x, (int)event->y ) == IN && !in_connected) {
37 WorkPlace::pointed = ID;
40 list_pointed->push_back(name);
41 combo_entry->set_popdown_strings(*list_pointed);
42 combo_entry->get_entry()->set_text (name);
43 workplace->queue_draw();
46 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){
48 image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0);
80 set_size_request(image->get_width(),image->get_height());
81 image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0);
83 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
84 menu_popup.popup(event->button, event->time);
85 return true; //It has been handled.
87 workplace->queue_draw();
90 void Not::on_menu_popup_rotar()
93 event.type = GDK_BUTTON_PRESS;
95 Not::on_button_press_event(&event);
98 void Not::save(FILE *archivo)
100 vec_connector.clear();
103 char c_img[50], c_x[50], c_y[50], c_id[50];
104 sprintf(c_id,"%d",ID);
105 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
106 sprintf(c_x,"\t\t<x>%d</x>\n",x);
107 sprintf(c_y,"\t\t<y>%d</y>\n",y);
108 dato = "\t<not nombre=\""+name+"\" id=\"";
114 for ( int i=0; i<=vec_connector.size()-1&&!vec_connector.empty(); i++) {
115 if ( vec_connector[i].type == IN ) {
116 dato += "\t\t<entrada>";
117 dato += vec_connector[i].name_dest + "</entrada>\n";
119 dato += "\t\t<salida>";
120 dato += vec_connector[i].name_dest + "</salida>\n";
123 dato += "\t</not>\n";
124 fprintf(archivo, dato.c_str() );
127 bool Not::check_connection()
129 int cant_in = 0, cant_out =0;
130 t_logic_connector temp;
131 std::list<t_line>::iterator i = workplace->lista_lineas_in.begin();
132 while ( i != workplace->lista_lineas_in.end() ) {
133 if ( workplace->get_logic_item((*i).logic_id)->get_id() == ID ) {
135 temp.name_dest = workplace->get_item((*i).store_id)->get_name();
136 vec_connector.push_back(temp);
142 i = workplace->lista_lineas_out.begin();
143 while ( i != workplace->lista_lineas_out.end() ) {
144 if (workplace->get_logic_item((*i).logic_id)->get_id() == ID ) {
146 temp.name_dest = workplace->get_item((*i).store_id)->get_name();
147 vec_connector.push_back(temp);
153 //FIXME la not tiene que tener una sola salida y una sola entrada!!!!!
154 return true;// (cant_in == cant_out );
157 ConnectorType Not::detect_click_position(int _a, int _b)
161 if ( (_a<=32 )&&(_a>=22)&&(_b<=20)&&(_b>=10) )
163 if ( (_a<=10)&&(_a>=0)&&(_b<=20)&&(_b>=10) )
167 if ( (_a<=20 )&&(_a>=10)&&(_b<=32)&&(_b>=22) )
169 if ( (_a<=20)&&(_a>=10)&&(_b<=10)&&(_b>=0) )
173 if ( (_a<=10 )&&(_a>=0)&&(_b<=20)&&(_b>=10) )
175 if ( (_a<=32)&&(_a>=22)&&(_b<=20)&&(_b>=10) )
179 if ( (_a<=20 )&&(_a>=10)&&(_b<=10)&&(_b>=0) )
181 if ( (_a<=20)&&(_a>=10)&&(_b<=32)&&(_b>=22) )
187 void Not::update_logic_position()
216 void Not::get_in_logic_connect_position(int& _a, int& _b)
222 void Not::get_out_logic_connect_position(int& _a, int& _b)
228 void Not::set_out_connected(bool _o)
233 void Not::set_in_connected(bool _o)