editors/IECCodeViewer.py
author Laurent Bessard
Mon, 13 May 2013 16:38:53 +0200
changeset 1126 26baa0ae9fd7
parent 1057 3837e165b3f9
child 1262 7b9259945453
permissions -rw-r--r--
Fixed bug with Copy/Paste in Primary Selection in Text Viewers

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)]