]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/item.cpp
le cambie el nombre a las clases y a los archivos y ahora el popup anda bien, rotar...
[z.facultad/75.42/plaqui.git] / Constructor / item.cpp
1 #include "item.h"
2 #include <iostream>
3
4 CItem::CItem(const char *filename):Gtk::DrawingArea()
5 {
6         image = Gdk::Pixbuf::create_from_file(filename);
7         set_size_request(image->get_width(), image->get_height());
8 }
9
10 CItem::CItem()
11 {
12         menu_image.set(Gtk::Stock::CANCEL, Gtk::ICON_SIZE_MENU);
13         Gtk::Menu::MenuList& menulist = menu_popup.items();
14     menulist.push_back( Gtk::Menu_Helpers::MenuElem("Opcion", SigC::slot(*this, &CItem::on_menu_popup_opcion) ) );
15     menulist.push_back( Gtk::Menu_Helpers::MenuElem("Rotar", Gtk::Menu::AccelKey("<control>r"),SigC::slot(*this, &CItem::on_menu_popup_rotar) ) );
16     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Eliminar", menu_image,SigC::slot(*this, &CItem::on_menu_popup_eliminar) ) ) ;
17         menu_popup.accelerate(*this);
18 }
19
20 CItem::~CItem()
21 {
22 }
23
24 bool CItem::on_expose_event(GdkEventExpose* event)
25 {
26         image->render_to_drawable ( get_window(),  get_style()->get_black_gc(), 0,  0,  0,  0,  image->get_width() ,image->get_height() , 
27                                                                                                                                 Gdk::RGB_DITHER_NONE, 0, 0);
28
29         // XXX Esto no deberia ser necesario! en todo caso devolves false en
30         // vez de true para que siga llamando a los otros handlers :)
31         //Gtk::DrawingArea::on_expose_event(event);
32         return true;
33 }
34
35 void CItem::on_menu_popup_opcion()
36 {
37 }
38
39 void CItem::on_menu_popup_rotar()
40 {
41 }
42
43 void CItem::on_menu_popup_eliminar()
44 {
45 }