X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/60d025bd1152960ac9131128c7cea2b7af8a406e..e963d0f06ef9f5002bd3083cea62e7590323623f:/Constructor/item.h diff --git a/Constructor/item.h b/Constructor/item.h index 7a2f35b..900e335 100644 --- a/Constructor/item.h +++ b/Constructor/item.h @@ -1,13 +1,13 @@ - - #ifndef GTKMM_EXAMPLE_DRAWINGAREALINES_H #define GTKMM_EXAMPLE_DRAWINGAREALINES_H +#include #include #include #include #include - +#include +#include "propertywnd.h" class CItem:public Gtk::DrawingArea { public: @@ -15,12 +15,15 @@ public: CItem(const char *filename); ~CItem(); virtual bool on_expose_event(GdkEventExpose* event); - virtual void on_menu_file_popup_generic(); + virtual void on_menu_popup_propiedades(); + virtual void on_menu_popup_rotar(); + virtual void on_menu_popup_eliminar(); Glib::RefPtr get_image() { return image; } protected: Gtk::Menu menu_popup; - Gtk::Image menu_image; + Gtk::Image menu_image_delete, menu_image_rotar; Glib::RefPtr image; + PropertyWnd *property_wnd; }; #endif