X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/235ee3a1e830ab839163ad2585c11d760bcd841c..6983220ff84632481c1628720fe15b8f3ac1c9cb:/Constructor/item.cpp?ds=inline diff --git a/Constructor/item.cpp b/Constructor/item.cpp index e17038b..77eefda 100644 --- a/Constructor/item.cpp +++ b/Constructor/item.cpp @@ -1,5 +1,8 @@ #include "item.h" -#include + +bool CItem:: logic_connect = false; +int CItem::quien = -1; + CItem::CItem(const char *filename):Gtk::DrawingArea() { @@ -9,10 +12,19 @@ CItem::CItem(const char *filename):Gtk::DrawingArea() CItem::CItem() { + Glib::RefPtr ref; + 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; + 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); - Gtk::Menu::MenuList& menulist = menu_popup.items(); + menu_image_linea.set(Gtk::Stock::CONVERT, Gtk::ICON_SIZE_MENU); + 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) ) ) ; @@ -21,6 +33,7 @@ CItem::CItem() CItem::~CItem() { + std::cout << "Item Die" << std::endl; } bool CItem::on_expose_event(GdkEventExpose* event) @@ -43,5 +56,103 @@ 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; +} + +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; +} + +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, 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 ) { + *_item = temp; + return temp2; + } + i++; + } + return UNDEF; +} +ConnectorType CItem::get_connector_type( int _a, int _b ) +{ + return UNDEF; +} +void CItem::set_default_connector() { }