X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/33cdbee1bf8051f1a4c9174aa518107793709fdd..44b4462a9330a34738100db1408ba6517a29a299:/Constructor/item.cpp diff --git a/Constructor/item.cpp b/Constructor/item.cpp index 08af2cf..79515ff 100644 --- a/Constructor/item.cpp +++ b/Constructor/item.cpp @@ -65,49 +65,70 @@ void CItem::set_position(int _x, int _y) this->y = _y; } -int CItem::get_position_x() +void CItem::set_id(int _id) { - return x; + ID = _id; } -int CItem::get_position_y() +void CItem::set_caudal(double _caudal) { - return y; + caudal_max = _caudal; } -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; +void CItem::set_name(Glib::ustring _name) +{ + name = _name; } -void CItem::set_id(int _id) +void CItem::set_conector_in(int _in) { - ID = _id; + conector_in = _in; } -int CItem::get_id() +void CItem::set_conector_out(int _out) { - return ID; + conector_out = _out; } -void CItem::set_caudal(double _caudal) +int CItem::get_position_x() { - caudal_max = _caudal; + return x; } -double CItem::get_caudal() +int CItem::get_position_y() { - return caudal_max; + return y; } -void CItem::set_name(Glib::ustring _name) +int CItem::get_id() { - name = _name; + return ID; } +double CItem::get_caudal() +{ + return caudal_max; +} + + Glib::ustring CItem::get_name() { return name; } + +int CItem::get_conector_in() +{ + return conector_in; +} + +int CItem::get_conector_out() +{ + return conector_out; +} + +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; +}