]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/exclusa.h
agrege todos los items con sus respectivas ventanas pero falta arreglar el tema del...
[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                 void set_estado(bool _state);
18                 bool get_estado();
19         private:
20                 Glib::RefPtr<Gdk::Pixbuf> imageN; // 0 
21                 Glib::RefPtr<Gdk::Pixbuf> imageS; // 1
22                 Glib::RefPtr<Gdk::Pixbuf> null; 
23                 ExclusaPtyWnd *exclusa_pty_wnd;
24                 bool estado;
25 };
26 #endif