]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/include/drain.h
-Las compuertas pueden tener n entradas pero solo 1 salida
[z.facultad/75.42/plaqui.git] / Constructor / include / drain.h
1 #ifndef _DRAIN_H_
2 #define _DRAIN_H_
3
4 #include <iostream>
5 #include "item.h"
6
7
8 class Drain : public CItem {
9         public:
10                 Drain(int orientacion=0);
11                 virtual ~Drain();
12                 virtual bool on_button_press_event(GdkEventButton *event);
13                 virtual void on_menu_popup_rotar();
14                 virtual void on_menu_popup_propiedades();
15                 double get_contenido_inicial();
16                 double get_capacidad();
17                 virtual void save(FILE *archivo);
18                 virtual bool check_connection();
19                 virtual void set_default_connector();
20                 virtual ConnectorType get_connector_type(int _a, int _b);
21         protected:
22                 Glib::RefPtr<Gdk::Pixbuf> imageE; // 0 
23                 Glib::RefPtr<Gdk::Pixbuf> imageO; // 1
24                 Glib::RefPtr<Gdk::Pixbuf> imageN; // 1
25                 Glib::RefPtr<Gdk::Pixbuf> imageS; // 1
26                 Glib::RefPtr<Gdk::Pixbuf> null; 
27 };
28 #endif