]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/src/item.cpp
se arregla el bug de la NOT
[z.facultad/75.42/plaqui.git] / Constructor / src / item.cpp
1 #include "item.h"
2
3 bool CItem::logic_connect = false;
4 int CItem::gate_id = -1;
5
6
7 CItem::CItem(const char *filename)
8 {
9         image = Gdk::Pixbuf::create_from_file(filename);
10         set_size_request(image->get_width(), image->get_height());
11
12         add_events(Gdk::EXPOSURE_MASK);
13 }
14
15 CItem::CItem()
16 {
17         Glib::RefPtr<Gnome::Glade::Xml> ref;
18         ref = Gnome::Glade::Xml::create(PACKAGE_DATA_DIR"/plaqui-constructor/dialogs/constructor.glade", "item_pty_wnd");
19         ref->get_widget_derived("item_pty_wnd",property_wnd);
20         caudal_max = 10.0;
21         is_union = true;
22         is_connected = false;
23         is_logic =false;
24         property_wnd->item = this;
25         menu_image_propiedades.set(Gtk::Stock::PREFERENCES, Gtk::ICON_SIZE_MENU);
26         menu_image_delete.set(Gtk::Stock::CANCEL, Gtk::ICON_SIZE_MENU);
27         menu_image_rotar.set(Gtk::Stock::REFRESH, Gtk::ICON_SIZE_MENU);
28         menu_image_linea.set(Gtk::Stock::CONVERT, Gtk::ICON_SIZE_MENU);
29         menulist = menu_popup.items();
30     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Propiedades",menu_image_propiedades, SigC::slot(*this, &CItem::on_menu_popup_propiedades) ) );
31     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Rotar", menu_image_rotar ,SigC::slot(*this, &CItem::on_menu_popup_rotar) ) );
32     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Eliminar", menu_image_delete,SigC::slot(*this, &CItem::on_menu_popup_eliminar) ) ) ;
33         menu_popup.accelerate(*this);
34 }
35
36 CItem::~CItem()
37 {
38         std::cout << "Item Die" << std::endl;
39 }
40
41 void CItem::on_realize()
42 {
43         Gtk::DrawingArea::on_realize();
44         Glib::RefPtr<Gdk::Window> window = get_window();
45         gc = Gdk::GC::create(window);
46         
47         Glib::RefPtr<Gdk::Colormap> colormap = get_colormap();
48
49         red = Gdk::Color("red");
50         blue = Gdk::Color("blue");
51
52         colormap->alloc_color(red);
53         colormap->alloc_color(blue);
54 }
55
56 bool CItem::on_expose_event(GdkEventExpose* event)
57 {
58         get_window()->draw_pixbuf(gc, image,  0,  0,  0,  0, image->get_width() ,image->get_height(), 
59                                                                                                                                 Gdk::RGB_DITHER_NONE, 0, 0);
60
61         // XXX Esto no deberia ser necesario! en todo caso devolves false en
62         // vez de true para que siga llamando a los otros handlers :)
63         //Gtk::DrawingArea::on_expose_event(event);
64         if (CItem::logic_connect) {
65                 draw_connectors();
66         }
67         return true;
68 }
69
70 void CItem::on_menu_popup_propiedades()
71 {
72 }
73
74 void CItem::on_menu_popup_rotar()
75 {
76 }
77
78 void CItem::on_menu_popup_eliminar()
79 {
80         workplace->delete_item(ID);
81 }
82
83 void CItem::on_menu_popup_conectar()
84 {
85 }
86
87 int CItem::get_position_x()
88 {
89         return x;
90 }
91
92 int CItem::get_position_y()
93 {
94         return y;
95 }
96
97 int CItem::get_id()
98 {
99         return ID;
100 }
101
102 double CItem::get_caudal()
103 {
104         return caudal_max;
105 }
106
107
108 Glib::ustring CItem::get_name()
109 {
110         return name;
111 }
112
113 Glib::ustring CItem::get_other_name(int _id)
114 {
115         std::list<CItem *>::iterator i = listaItems->begin();
116         while ( i != listaItems->end() ) {
117                 if ( (*i)->get_id() == _id ) 
118                         return (*i)->get_name();
119                 i++;
120         }
121         return name;
122 }
123
124 int CItem::get_img_actual()
125 {
126         return imgActual;
127 }
128
129 void CItem::set_position(int _x, int _y)
130 {
131         this->x = _x;
132         this->y = _y;
133 }
134
135 void CItem::set_id(int _id)
136 {
137         ID = _id;
138 }
139
140 void CItem::set_caudal(double _caudal)
141 {
142          caudal_max = _caudal;
143 }
144
145 void CItem::set_name(Glib::ustring _name)
146 {
147         name = _name;
148 }
149
150 void CItem::set_out_connected(bool _o)
151 {
152 }
153
154 void CItem::set_in_connected(bool _o)
155 {
156 }
157
158 bool CItem::is_occupied_area(int _a, int _b)
159 {       
160         if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )  
161                         return true;
162                 else return false;
163 }
164
165 ConnectorType CItem::is_other_connection_area(int _a, int _b, CItem **_item)
166 {
167         ConnectorType temp2;
168         std::list<CItem *>::iterator i = listaItems->begin();
169         while ( i != listaItems->end() ) {
170                 CItem *temp = *i;
171                 if (temp != this) 
172                         if ( (temp2 = temp->get_connector_type(_a,_b)) != UNDEF ) {
173                                 *_item = temp;
174                                 return temp2;
175                         }
176                 i++;
177         }
178         return UNDEF;
179 }
180 ConnectorType CItem::get_connector_type( int _a, int _b )
181 {
182         return UNDEF;
183 }
184 void CItem::set_default_connector()
185 {
186 }
187
188 void CItem::get_in_logic_connect_position(int& _a, int& _b)
189 {
190         _a = x;
191         _b = y;
192 }
193
194 void CItem::get_out_logic_connect_position(int& _a, int& _b)
195 {
196         _a = x;
197         _b = y;
198 }
199
200 bool CItem::get_out_logic_connect()
201 {
202         return false;
203 }
204
205 void CItem::update_logic_position()
206 {
207 }
208
209 void CItem::draw_connectors()
210 {
211         if ( in_x != -1 ) {
212                 Glib::RefPtr<Gdk::Window> window = get_window();
213         
214                 gc->set_foreground(red);
215                 gc->set_background(red);
216                 window->draw_rectangle(gc, 1, in_x-5-x, in_y-y, 10, 10);
217                 gc->set_foreground(blue);
218                 gc->set_background(blue);
219                 window->draw_rectangle(gc, 1, out_x-5-x, out_y-y-10, 10, 10);
220                 queue_draw();
221         }
222 }