]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/union.h
Se corrige un bug.
[z.facultad/75.42/plaqui.git] / Constructor / union.h
1 // Union.h
2 #ifndef _UNION_H_
3 #define _UNION_H_
4
5 #include "item.h"
6
7 class Union : public CItem {
8         public:
9                 Union();
10                 virtual ~Union();
11                 virtual bool on_button_press_event(GdkEventButton *event);
12                 virtual void on_menu_popup_rotar();
13                 virtual void on_menu_popup_propiedades();
14                 virtual void save(FILE *archivo);
15                 virtual bool check_connection();
16                 virtual void set_default_connector();
17                 virtual ConnectorType get_connector_type(int _a, int _b);
18         private:
19                 Glib::RefPtr<Gdk::Pixbuf> imageN; // 0 
20                 Glib::RefPtr<Gdk::Pixbuf> imageS; // 1
21                 Glib::RefPtr<Gdk::Pixbuf> imageE; // 2
22                 Glib::RefPtr<Gdk::Pixbuf> imageO; // 3
23                 Glib::RefPtr<Gdk::Pixbuf> null; 
24 };
25 #endif