editors/IECCodeViewer.py
author Laurent Bessard
Mon, 27 May 2013 09:24:39 +0200
changeset 1175 01842255c9ff
parent 1057 3837e165b3f9
child 1262 7b9259945453
permissions -rw-r--r--
Fixed bug when adding a variable in Variable Panel and selected variable can't be edited (generally a FB)

from editors.TextViewer import TextViewer
from plcopen.plcopen import TestTextElement

class IECCodeViewer(TextViewer):
    
    def __del__(self):
        TextViewer.__del__(self)
        if getattr(self, "_OnClose"):
            self._OnClose(self)
            
    def Search(self, criteria):
        return [((self.TagName, "body", 0),) + result for result in TestTextElement(self.Editor.GetText(), criteria)]