]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/item.cpp
cambios drasticos producen cuelgues obvios, etapa de revision, pueden mirarlo libremente
[z.facultad/75.42/plaqui.git] / Constructor / item.cpp
index 79515ff4990ab1d3bded0be364dac10eecfef20b..72f63930554a284452052d2515d066aede363fb6 100644 (file)
@@ -13,6 +13,8 @@ CItem::CItem()
        ref = Gnome::Glade::Xml::create("constructor.glade", "item_pty_wnd");
        ref->get_widget_derived("item_pty_wnd",property_wnd);
        caudal_max = 0.0;
        ref = Gnome::Glade::Xml::create("constructor.glade", "item_pty_wnd");
        ref->get_widget_derived("item_pty_wnd",property_wnd);
        caudal_max = 0.0;
+       is_union = true;
+       is_connected = false;
        property_wnd->item = this;
        menu_image_propiedades.set(Gtk::Stock::PREFERENCES, Gtk::ICON_SIZE_MENU);
        menu_image_delete.set(Gtk::Stock::CANCEL, Gtk::ICON_SIZE_MENU);
        property_wnd->item = this;
        menu_image_propiedades.set(Gtk::Stock::PREFERENCES, Gtk::ICON_SIZE_MENU);
        menu_image_delete.set(Gtk::Stock::CANCEL, Gtk::ICON_SIZE_MENU);
@@ -59,37 +61,6 @@ void CItem::on_menu_popup_conectar()
 {
 }
 
 {
 }
 
-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;
-}
-
-void CItem::set_conector_in(int _in)
-{
-       conector_in = _in;
-}
-
-void CItem::set_conector_out(int _out)
-{
-       conector_out = _out;
-}
-
 int CItem::get_position_x()
 {
        return x;
 int CItem::get_position_x()
 {
        return x;
@@ -116,14 +87,30 @@ Glib::ustring CItem::get_name()
        return name;
 }
 
        return name;
 }
 
-int CItem::get_conector_in()
+int CItem::get_img_actual()
 {
 {
-       return conector_in;
+       return imgActual;
 }
 
 }
 
-int CItem::get_conector_out()
+void CItem::set_position(int _x, int _y)
 {
 {
-       return conector_out;
+       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)
 }
 
 bool CItem::is_occupied_area(int _a, int _b)
@@ -132,3 +119,22 @@ bool CItem::is_occupied_area(int _a, int _b)
                        return true;
                else return false;
 }
                        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;
+}