]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/or.h
El Transmitter ya anda bien (se puede escuchar con un nc -p [puerto] -l -u :).
[z.facultad/75.42/plaqui.git] / Constructor / or.h
1 #ifndef _OR_H_
2 #define _OR_H_
3
4 #include "item.h"
5
6 class Or : public CItem {
7         public:
8                 Or();
9                 virtual ~Or();
10                 virtual bool on_button_press_event(GdkEventButton *event);
11                 virtual void on_menu_popup_rotar();
12                 virtual void on_menu_popup_conectar();
13                 virtual void save(FILE *archivo);
14                 virtual bool check_connection();
15                 std::list<int> connected_items;
16         private:
17                 Glib::RefPtr<Gdk::Pixbuf> imageN; // 0 
18                 Glib::RefPtr<Gdk::Pixbuf> imageS; // 1
19                 Glib::RefPtr<Gdk::Pixbuf> imageE; // 2
20                 Glib::RefPtr<Gdk::Pixbuf> imageO; // 3
21                 Glib::RefPtr<Gdk::Pixbuf> null; 
22 };
23 #endif