]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Constructor/src/item.cpp
-se pueden tirar cables de una manera mas comoda pero como diria TU SAM puede fallar...
[z.facultad/75.42/plaqui.git] / Constructor / src / item.cpp
index de63b6914b017e5534b241cdcb6c1316625846f4..b4bf5416138a5dd90b39fc44c92ed5cd47c22e7f 100644 (file)
@@ -1,7 +1,7 @@
 #include "item.h"
 
-bool CItem::   logic_connect = false;
-int CItem::quien = -1;
+bool CItem::logic_connect = false;
+int CItem::gate_id = -1;
 
 
 CItem::CItem(const char *filename):Gtk::DrawingArea()
@@ -62,8 +62,6 @@ void CItem::on_menu_popup_eliminar()
 
 void CItem::on_menu_popup_conectar()
 {
-       CItem::logic_connect = true;
-       CItem::quien = ID;      
 }
 
 int CItem::get_position_x()
@@ -158,3 +156,19 @@ ConnectorType CItem::get_connector_type( int _a, int _b )
 void CItem::set_default_connector()
 {
 }
+
+void CItem::get_in_logic_connect_position(int& _a, int& _b)
+{
+       _a = x;
+       _b = y;
+}
+
+void CItem::get_out_logic_connect_position(int& _a, int& _b)
+{
+       _a = x;
+       _b = y;
+}
+
+void CItem::update_logic_position()
+{
+}