5 imageN = Gdk::Pixbuf::create_from_file("or_n.png");
6 imageS = Gdk::Pixbuf::create_from_file("or_s.png");
7 imageE = Gdk::Pixbuf::create_from_file("or_e.png");
8 imageO = Gdk::Pixbuf::create_from_file("or_o.png");
9 null = Gdk::Pixbuf::create_from_file("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 Or::on_button_press_event(GdkEventButton *event)
23 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
24 std::cout<<ID<<std::endl;
25 combo_entry->set_text(name);
28 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){
30 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 set_size_request(image->get_width(),image->get_height());
47 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);
49 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
50 menu_popup.popup(event->button, event->time);
51 return true; //It has been handled.
56 void Or::on_menu_popup_rotar()
59 event.type = GDK_BUTTON_PRESS;
61 Or::on_button_press_event(&event);
64 void Or::on_menu_popup_conectar()
66 CItem::logic_connect = true;
70 void Or::save(FILE *archivo)
75 bool Or::check_connection()