]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/conduct.h
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 / conduct.h
1 // Conduct.h
2 #ifndef _CONDUCT_H_
3 #define _CONDUCT_H_
4
5 #include "item.h"
6
7 class Conduct : public CItem {
8         public:
9                 Conduct();
10                 virtual ~Conduct();
11                 virtual bool on_button_press_event(GdkEventButton *event);
12                 virtual void on_menu_popup_rotar();
13         private:
14                 int imgActual;  
15         
16                 Glib::RefPtr<Gdk::Pixbuf> imageN; // 0 
17                 Glib::RefPtr<Gdk::Pixbuf> imageS; // 1
18                 Glib::RefPtr<Gdk::Pixbuf> null; 
19 };
20 #endif