]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/exclusa.h
b65e6168147d10953c1035ef0ac1215ff3efc0f3
[z.facultad/75.42/plaqui.git] / Constructor / exclusa.h
1 #ifndef _EXCLUSA_H_
2 #define _EXCLUSA_H_
3
4 #include "item.h"
5
6 class ExclusaPtyWnd;
7
8 class Exclusa : public CItem {
9         public:
10                 Exclusa();
11                 virtual ~Exclusa();
12                 virtual bool on_button_press_event(GdkEventButton *event);
13                 virtual void on_menu_popup_rotar();
14                 virtual void on_menu_popup_propiedades();
15                 virtual void save(FILE *archivo);
16                 virtual bool check_connection();
17 //              virtual ConnectorType is_connection_area(int _a, int _b);
18                 virtual ConnectorType get_connector_type(int _a, int _b);
19                 void set_estado(bool _state);
20                 bool get_estado();
21         private:
22                 Glib::RefPtr<Gdk::Pixbuf> imageN; // 0 
23                 Glib::RefPtr<Gdk::Pixbuf> imageS; // 1
24                 Glib::RefPtr<Gdk::Pixbuf> null; 
25                 ExclusaPtyWnd *exclusa_pty_wnd;
26                 bool estado;
27 };
28 #endif