]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/codo.h
Subo esto que compila pero se cuelga cuando soltas un item, y ademas no se como hacer...
[z.facultad/75.42/plaqui.git] / Constructor / codo.h
1 // codo.h
2 #ifndef _CODO_H_
3 #define _CODO_H_
4
5 #include "item.h"
6
7 class Codo : public CItem {
8         public:
9                 Codo();
10                 virtual ~Codo();
11                 virtual bool on_button_press_event(GdkEventButton *event);
12         private:
13                 int imgActual;  
14         
15                 Glib::RefPtr<Gdk::Pixbuf> imageN; // 0 
16                 Glib::RefPtr<Gdk::Pixbuf> imageS; // 1
17                 Glib::RefPtr<Gdk::Pixbuf> imageE; // 2
18                 Glib::RefPtr<Gdk::Pixbuf> imageO; // 3
19                 Glib::RefPtr<Gdk::Pixbuf> null; 
20 };
21 #endif