]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/item.cpp
ahora si se puede guardar un archivo, igual todavia hay que definir bien el formato
[z.facultad/75.42/plaqui.git] / Constructor / item.cpp
index c2410d54e31a8b8b3729c47781913b7f9d4ca828..79515ff4990ab1d3bded0be364dac10eecfef20b 100644 (file)
@@ -1,5 +1,5 @@
 #include "item.h"
-#include <iostream>
+#include "workplace.h"
 
 CItem::CItem(const char *filename):Gtk::DrawingArea()
 {
@@ -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;
+}