X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/31b3e321726d5c3fe720dd216687d3138523714f..796708eefb056b936274da15c7af2c7d709c9249:/Constructor/item.cpp diff --git a/Constructor/item.cpp b/Constructor/item.cpp index 72f6393..77eefda 100644 --- a/Constructor/item.cpp +++ b/Constructor/item.cpp @@ -1,5 +1,8 @@ #include "item.h" -#include "workplace.h" + +bool CItem:: logic_connect = false; +int CItem::quien = -1; + CItem::CItem(const char *filename):Gtk::DrawingArea() { @@ -15,16 +18,16 @@ CItem::CItem() caudal_max = 0.0; is_union = true; is_connected = false; + is_logic =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); menu_image_rotar.set(Gtk::Stock::REFRESH, Gtk::ICON_SIZE_MENU); menu_image_linea.set(Gtk::Stock::CONVERT, Gtk::ICON_SIZE_MENU); - Gtk::Menu::MenuList& menulist = menu_popup.items(); + menulist = menu_popup.items(); menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Propiedades",menu_image_propiedades, SigC::slot(*this, &CItem::on_menu_popup_propiedades) ) ); menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Rotar", menu_image_rotar ,SigC::slot(*this, &CItem::on_menu_popup_rotar) ) ); menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Eliminar", menu_image_delete,SigC::slot(*this, &CItem::on_menu_popup_eliminar) ) ) ; - menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Conectar", menu_image_linea,SigC::slot(*this, &CItem::on_menu_popup_conectar) ) ) ; menu_popup.accelerate(*this); } @@ -87,6 +90,17 @@ Glib::ustring CItem::get_name() return name; } +Glib::ustring CItem::get_other_name(int _id) +{ + std::list::iterator i = listaItems->begin(); + while ( i != listaItems->end() ) { + if ( (*i)->get_id() == _id ) + return (*i)->get_name(); + i++; + } + return name; +} + int CItem::get_img_actual() { return imgActual; @@ -120,17 +134,18 @@ bool CItem::is_occupied_area(int _a, int _b) else return false; } -ConnectorType CItem::is_other_connection_area(int _a, int _b) +ConnectorType CItem::is_other_connection_area(int _a, int _b, CItem **_item) { ConnectorType temp2; std::list::iterator i = listaItems->begin(); while ( i != listaItems->end() ) { CItem *temp = *i; - if (temp != this) { - if ( (temp2 = temp->get_connector_type(_a,_b)) != UNDEF ) + if (temp != this) + if ( (temp2 = temp->get_connector_type(_a,_b)) != UNDEF ) { + *_item = temp; return temp2; - i++; - } + } + i++; } return UNDEF; } @@ -138,3 +153,6 @@ ConnectorType CItem::get_connector_type( int _a, int _b ) { return UNDEF; } +void CItem::set_default_connector() +{ +}