X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/67143e098c00b0ee414bde39a78441d8e11fed8b..f5a1e732bf3907cabd004932aba3256b31d9d282:/Constructor/item.cpp diff --git a/Constructor/item.cpp b/Constructor/item.cpp index b526867..de9c4cd 100644 --- a/Constructor/item.cpp +++ b/Constructor/item.cpp @@ -1,5 +1,5 @@ #include "item.h" -#include +#include "workplace.h" CItem::CItem(const char *filename):Gtk::DrawingArea() { @@ -9,6 +9,13 @@ 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; + 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); @@ -54,12 +61,6 @@ void CItem::on_menu_popup_conectar() { } -void CItem::set_position(int x, int y) -{ - this->x = x; - this->y = y; -} - int CItem::get_position_x() { return x; @@ -70,19 +71,72 @@ int CItem::get_position_y() return y; } -bool CItem::is_occupied_area(int a, int b) +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()) ) + if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) ) return true; else return false; } -void CItem::set_id(int id) +ConnectorType CItem::is_other_connection_area(int _a, int _b) { - ID = id; + 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 ) + return temp2; + i++; + } + return UNDEF; } - -int CItem::get_id() +ConnectorType CItem::get_connector_type( int _a, int _b ) +{ + return UNDEF; +} +void CItem::set_default_connector() { - return ID; }