#include "item.h"
-#include <iostream>
+#include "workplace.h"
CItem::CItem(const char *filename):Gtk::DrawingArea()
{
CItem::CItem()
{
+ Glib::RefPtr<Gnome::Glade::Xml> ref;
+ ref = Gnome::Glade::Xml::create("constructor.glade", "item_pty_wnd");
+ ref->get_widget_derived("item_pty_wnd",property_wnd);
+ caudal_max = 0.0;
+ 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);
{
}
-void CItem::set_position(int x, int y)
+void CItem::set_position(int _x, int _y)
{
- this->x = x;
- this->y = y;
+ this->x = _x;
+ this->y = _y;
}
int CItem::get_position_x()
return y;
}
-bool CItem::is_occupied_area(int a, int b)
+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)
+void CItem::set_id(int _id)
{
- ID = id;
+ ID = _id;
}
int CItem::get_id()
{
return ID;
}
+
+void CItem::set_caudal(double _caudal)
+{
+ caudal_max = _caudal;
+}
+
+double CItem::get_caudal()
+{
+ return caudal_max;
+}
+
+void CItem::set_name(Glib::ustring _name)
+{
+ name = _name;
+}
+
+Glib::ustring CItem::get_name()
+{
+ return name;
+}