]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/pump.h
agrege todos los items con sus respectivas ventanas pero falta arreglar el tema del...
[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         protected:
21                 double entrega;
22                 Glib::RefPtr<Gdk::Pixbuf> imageE; // 0 
23                 Glib::RefPtr<Gdk::Pixbuf> imageO; // 1
24                 Glib::RefPtr<Gdk::Pixbuf> null; 
25                 PumpPtyWnd *pump_pty_wnd;
26 };
27 #endif