]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/item.cpp
ya no me acuerdo ni que cambie, pero va tomando forma esto, si el circuito que se...
[z.facultad/75.42/plaqui.git] / Constructor / item.cpp
index b4a42fe9bba9371bc4f9a76c39fbca0f1fcde74e..31d955dbebb8ea4faabfccc8aae3f8635fe2d8e4 100644 (file)
@@ -1,5 +1,5 @@
 #include "item.h"
-#include <iostream>
+#include "workplace.h"
 
 CItem::CItem(const char *filename):Gtk::DrawingArea()
 {
@@ -9,6 +9,11 @@ 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);
@@ -60,6 +65,31 @@ void CItem::set_position(int _x, int _y)
        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;
+}
+
+void CItem::set_conector_in(int _in)
+{
+       conector_in = _in;
+}
+
+void CItem::set_conector_out(int _out)
+{
+       conector_out = _out;
+}
+
 int CItem::get_position_x()
 {
        return x;
@@ -70,6 +100,37 @@ 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;
+}
+
+int CItem::get_conector_in()
+{
+       return conector_in;
+}
+
+int CItem::get_conector_out()
+{
+       return conector_out;
+}
+
+int CItem::get_img_actual()
+{
+       return imgActual;
+}
+
 bool CItem::is_occupied_area(int _a, int _b)
 {      
        if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )  
@@ -77,12 +138,14 @@ bool CItem::is_occupied_area(int _a, int _b)
                else return false;
 }
 
-void CItem::set_id(int _id)
+bool CItem::is_other_occupied_area(int _a, int _b)
 {
-       ID = _id;
-}
-
-int CItem::get_id()
-{
-       return ID;
+       std::list<CItem *>::iterator i = listaItems->begin();
+       while ( i != listaItems->end() ){
+               CItem *temp = *i;
+               if ( temp->is_occupied_area(_a,_b) )
+                       return true;
+               i++;
+       }
+       return false;
 }