5 imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_n.png");
6 imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_s.png");
7 imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_e.png");
8 imageO = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_o.png");
9 null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png");
12 set_size_request(image->get_width(), image->get_height());
14 menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Conectar", menu_image_linea,SigC::slot(*this, &CItem::on_menu_popup_conectar) ) ) ;
21 bool Not::on_button_press_event(GdkEventButton *event)
23 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
24 if (CItem::logic_connect)
26 combo_entry->set_text(name);
27 WorkPlace::pointed = ID;
30 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){
32 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);
48 set_size_request(image->get_width(),image->get_height());
49 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);
51 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
52 menu_popup.popup(event->button, event->time);
53 return true; //It has been handled.
57 void Not::on_menu_popup_rotar()
60 event.type = GDK_BUTTON_PRESS;
62 Not::on_button_press_event(&event);
65 void Not::save(FILE *archivo)
71 // CAMBIAR TODO ESTO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
72 bool Not::check_connection()
74 /* switch (get_img_actual()) {
76 if ( is_other_connection_area( get_position_x()-5, get_position_y()+16) &&
77 is_other_connection_area( get_position_x()+get_image()->get_width()-16, +get_position_y()+get_image()->get_height() + 5) )
81 if ( is_other_connection_area( get_position_x()+get_image()->get_width() - 16, get_position_y() -5) &&
82 is_other_connection_area( get_position_x()-5, get_position_y()+get_image()->get_height()-16) )
86 if ( is_other_connection_area( get_position_x() + 16, get_position_y() -5) &&
87 is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y()+get_image()->get_height()-16) )
91 if ( is_other_connection_area( get_position_x()+get_image()->get_width()+5, get_position_y() +16) &&
92 is_other_connection_area( get_position_x() + 16, get_position_y()+get_image()->get_height() + 5) )