]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/cistern.h
Creo que esto va a ser presentable para maniana. Luca si podes dale esto a Gonzalo...
[z.facultad/75.42/plaqui.git] / Constructor / cistern.h
1 // cistern.h
2 #ifndef _CISTERN_H_
3 #define _CISTERN_H_
4
5 #include "item.h"
6 #include "cisternptywnd.h"
7
8 class Cistern : public CItem {
9         public:
10                 Cistern();
11                 virtual ~Cistern();
12                 virtual bool on_button_press_event(GdkEventButton *event);
13                 virtual void on_menu_popup_rotar();
14                 virtual void on_menu_popup_propiedades();
15         protected:
16                 double caudal, fluido_max;
17                 int imgActual;  
18                 Glib::RefPtr<Gdk::Pixbuf> imageE; // 0 
19                 Glib::RefPtr<Gdk::Pixbuf> imageO; // 1
20                 Glib::RefPtr<Gdk::Pixbuf> null; 
21         
22                 CisternPtyWnd *cistern_pty_wnd;
23 };
24 #endif