+void CItem::on_menu_popup_propiedades()
+{
+}
+
+void CItem::on_menu_popup_rotar()
+{
+}
+
+void CItem::on_menu_popup_eliminar()
+{
+ workplace->delete_item(ID);
+}
+
+void CItem::on_menu_popup_conectar()
+{
+}
+
+int CItem::get_position_x()
+{
+ return x;
+}
+
+int CItem::get_position_y()
+{
+ return y;
+}
+
+int CItem::get_id()
+{
+ return ID;
+}
+
+double CItem::get_caudal()
+{
+ return caudal_max;
+}
+
+
+Glib::ustring CItem::get_name()
+{
+ return name;
+}
+
+int CItem::get_img_actual()
+{
+ return imgActual;
+}
+
+void CItem::set_position(int _x, int _y)
+{
+ this->x = _x;
+ this->y = _y;
+}
+
+void CItem::set_id(int _id)
+{
+ ID = _id;
+}
+
+void CItem::set_caudal(double _caudal)
+{
+ caudal_max = _caudal;
+}
+
+void CItem::set_name(Glib::ustring _name)
+{
+ name = _name;
+}
+
+bool CItem::is_occupied_area(int _a, int _b)
+{
+ if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )
+ return true;
+ else return false;
+}
+
+ConnectorType CItem::is_other_connection_area(int _a, int _b)
+{
+ ConnectorType temp2;
+ std::list<CItem *>::iterator i = listaItems->begin();
+ while ( i != listaItems->end() ) {
+ CItem *temp = *i;
+ if (temp != this)
+ if ( (temp2 = temp->get_connector_type(_a,_b)) != UNDEF )
+ return temp2;
+ i++;
+ }
+ return UNDEF;
+}
+ConnectorType CItem::get_connector_type( int _a, int _b )
+{
+ return UNDEF;
+}
+void CItem::set_default_connector()