]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/union.h
Nuevo preview de los caños para el constructor!! ... esperen que ya llegan los
[z.facultad/75.42/plaqui.git] / Constructor / union.h
1 // Union.h
2 #ifndef _UNION_H_
3 #define _UNION_H_
4
5 #include "item.h"
6
7 class Union : public CItem {
8         public:
9                 Union();
10                 virtual ~Union();
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> imageE; // 2
19                 Glib::RefPtr<Gdk::Pixbuf> imageO; // 3
20                 Glib::RefPtr<Gdk::Pixbuf> null; 
21 };
22 #endif