controls/LocationCellEditor.py
changeset 855 b30421d07e8c
parent 814 5743cbdff669
child 1004 bf3b6998f7b6
--- a/controls/LocationCellEditor.py	Tue Oct 16 19:01:17 2012 +0200
+++ b/controls/LocationCellEditor.py	Thu Oct 18 01:22:52 2012 +0200
@@ -54,16 +54,22 @@
         
         self.SetSizer(main_sizer)
 
-        self.Locations = None
+        self.Controller = None
         self.VarType = None
         self.Default = False
 
-    def SetLocations(self, locations):
-        self.Locations = locations
+    def __del__(self):
+        self.Controller = None
+
+    def SetController(self, controller):
+        self.Controller = controller
 
     def SetVarType(self, vartype):
         self.VarType = vartype
 
+    def GetVarType(self):
+        return self.VarType
+
     def SetValue(self, value):
         self.Default = value
         self.Location.SetValue(value)
@@ -76,12 +82,13 @@
 
     def OnBrowseButtonClick(self, event):
         # pop up the location browser dialog
-        dialog = BrowseLocationsDialog(self, self.VarType, self.Locations)
+        dialog = BrowseLocationsDialog(self, self.VarType, self.Controller)
         if dialog.ShowModal() == wx.ID_OK:
             infos = dialog.GetValues()
 
             # set the location
             self.Location.SetValue(infos["location"])
+            self.VarType = infos["IEC_type"]
 
         dialog.Destroy()
 
@@ -115,6 +122,7 @@
 
     def __del__(self):
         self.CellControl = None
+        self.Controller = None
     
     def Create(self, parent, id, evt_handler):
         self.CellControl = LocationCellControl(parent)
@@ -124,10 +132,10 @@
 
     def BeginEdit(self, row, col, grid):
         self.CellControl.Enable()
-        self.CellControl.SetLocations(self.Controller.GetVariableLocationTree())
+        self.CellControl.SetController(self.Controller)
         self.CellControl.SetValue(self.Table.GetValueByName(row, 'Location'))
         if isinstance(self.CellControl, LocationCellControl):
-            self.CellControl.SetVarType(self.Controller.GetBaseType(self.Table.GetValueByName(row, 'Type')))
+            self.CellControl.SetVarType(self.Table.GetValueByName(row, 'Type'))
         self.CellControl.SetFocus()
 
     def EndEdit(self, row, col, grid):
@@ -136,6 +144,7 @@
         changed = loc != old_loc
         if changed:
             self.Table.SetValueByName(row, 'Location', loc)
+            self.Table.SetValueByName(row, 'Type', self.CellControl.GetVarType())
         self.CellControl.Disable()
         return changed