]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/pump.h
el conexionado se verifica pero hay casos en que falla, estaria bueno que hagan algun...
[z.facultad/75.42/plaqui.git] / Constructor / pump.h
1 #ifndef _PUMP_H_
2 #define _PUMP_H_
3
4 #include <iostream>
5 #include "item.h"
6
7 class PumpPtyWnd;
8         
9 class Pump : public CItem {
10         public:
11                 Pump();
12                 virtual ~Pump();
13                 virtual bool on_button_press_event(GdkEventButton *event);
14                 virtual void on_menu_popup_rotar();
15                 virtual void on_menu_popup_propiedades();
16                 void set_entrega(double _cap);
17                 double get_entrega();
18                 virtual void save(FILE *archivo);
19                 virtual bool check_connection();
20                 virtual bool is_connection_area(int _a, int _b);
21         protected:
22                 double entrega;
23                 Glib::RefPtr<Gdk::Pixbuf> imageE; // 0 
24                 Glib::RefPtr<Gdk::Pixbuf> imageO; // 1
25                 Glib::RefPtr<Gdk::Pixbuf> null; 
26                 PumpPtyWnd *pump_pty_wnd;
27 };
28 #endif