help me! ahora mientras escribo me doy cuenta que me olvide de agregar una cosa que habia sacado pero para el proximo commit lo arreglo.no es importante.
bool Canio::on_button_press_event(GdkEventButton *event)
{
- if (event->type == GDK_2BUTTON_PRESS){
+ int w, h;
+ if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==3)){
image = null; //como hago para actualizar?????
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);
imgActual++;
imgActual = 0;
image = imageN;
}
+ get_size_request(w, h);
+ set_size_request(h, w);
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);
}
return true;
bool Codo::on_button_press_event(GdkEventButton *event)
{
- if (event->type == GDK_2BUTTON_PRESS){
+ if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
image = null; //como hago para actualizar?????
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);
imgActual++;
imgActual = 0;
image = imageN;
}
+ set_size_request(image->get_width(),image->get_height());
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);
}
return true;
// y pedirle su ícono para mostrar cono icono durante la operacion,
// Esto va a permitir, que si un widget tiene una imagen rotara o algo
// raro se vea el widget tal cual.
- a->signal_drag_begin().connect(SigC::bind( SigC::slot(*this, &Constructor::on_item_drag_begin), a));
+ //a->signal_drag_begin().connect(SigC::bind( SigC::slot(*this, &Constructor::on_item_drag_begin), a));
a->show();
listaItems.push_back(a);
}
bool Y::on_button_press_event(GdkEventButton *event)
{
- if (event->type == GDK_2BUTTON_PRESS){
+ int w,h;
+ if ((event->type == GDK_BUTTON_PRESS) && (event->button == 3 )){
image = null; //como hago para actualizar?????
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);
imgActual++;
imgActual = 0;
image = imageN;
}
+ get_size_request(w, h);
+ set_size_request(h, w);
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);
}
return true;