]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/conduct.h
el conexionado se verifica pero hay casos en que falla, estaria bueno que hagan algun...
[z.facultad/75.42/plaqui.git] / Constructor / conduct.h
1 #ifndef _CONDUCT_H_
2 #define _CONDUCT_H_
3
4 #include "item.h"
5
6 class Conduct : public CItem {
7         public:
8                 Conduct();
9                 virtual ~Conduct();
10                 virtual bool on_button_press_event(GdkEventButton *event);
11                 virtual void on_menu_popup_rotar();
12                 virtual void on_menu_popup_propiedades();
13                 virtual void save(FILE *archivo);
14                 virtual bool check_connection();
15                 virtual bool is_connection_area(int _a, int _b);
16         private:
17                 Glib::RefPtr<Gdk::Pixbuf> imageN; // 0 
18                 Glib::RefPtr<Gdk::Pixbuf> imageS; // 1
19                 Glib::RefPtr<Gdk::Pixbuf> null; 
20 };
21 #endif