5 imageN = Gdk::Pixbuf::create_from_file("and_n.png");
6 imageS = Gdk::Pixbuf::create_from_file("and_s.png");
7 imageE = Gdk::Pixbuf::create_from_file("and_e.png");
8 imageO = Gdk::Pixbuf::create_from_file("and_o.png");
9 null = Gdk::Pixbuf::create_from_file("null.png");
12 set_size_request(image->get_width(), image->get_height());
20 bool And::on_button_press_event(GdkEventButton *event)
22 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1))
23 combo_entry->set_text(name);
25 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){
27 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);
43 set_size_request(image->get_width(),image->get_height());
44 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);
46 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
47 menu_popup.popup(event->button, event->time);
48 return true; //It has been handled.
52 void And::on_menu_popup_rotar()
55 event.type = GDK_BUTTON_PRESS;
57 And::on_button_press_event(&event);
60 void And::save(FILE *archivo)
66 // CAMBIAR TODO ESTO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
67 bool And::check_connection()
69 /*switch (get_img_actual()) {
71 if ( is_other_connection_area( get_position_x()-5, get_position_y()+16) &&
72 is_other_connection_area( get_position_x()+get_image()->get_width()-16, +get_position_y()+get_image()->get_height() + 5) )
75 if ( is_other_connection_area( get_position_x()+get_image()->get_width() - 16, get_position_y() -5) &&
76 is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()-16) )
79 if ( is_other_connection_area( get_position_x() + 16, get_position_y() -5) &&
80 is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height()-16) )
83 if ( is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y() +16) &&
84 is_other_connection_area( get_position_x() + 16, get_position_y()+get_image()->get_height() + 5) )
92 bool And::is_connection_area(int _a, int _b)
95 case 0: if ( ( (_a <= x+10)&&(_a > x) && (_b <=y+22)&&(_b>=y+10) ) ||
96 ( (_a <= x+image->get_width()-10)&&(_a>=x+image->get_width()-22)&&(_b<=y+image->get_height()-1)&&(_b>=y+image->get_height()-10) ) )
98 case 1: if ( ( (_a <= x+image->get_width()-10)&&(_a >= x+image->get_width()-22) && (_b <=y+10)&&(_b > y) ) ||
99 ( (_a <= x+10)&&(_a > x)&&(_b<=y+image->get_height()-10)&&(_b>=y+image->get_height()-22) ) )
101 case 2: if ( ( (_a <= x+22)&&(_a >= x+10) && (_b <=y+10)&&(_b > y) ) ||
102 ( (_a <= x+image->get_width()-1)&&(_a>=x+image->get_width()-10)&&(_b<=y+image->get_height()-10)&&(_b>=y+image->get_height()-22) ) )
104 case 3: if ( ( (_a <= x+image->get_width()-1)&&(_a >= x+image->get_width()-10) && (_b <=y+22)&&(_b>=y+10) ) ||
105 ( (_a <= x+22)&&(_a>=x+10)&&(_b<=y+image->get_height()-1)&&(_b>=y+image->get_height()-10) ) )