--- a/CodeFileTreeNode.py Thu Mar 21 14:00:26 2019 +0100
+++ b/CodeFileTreeNode.py Fri Mar 22 10:57:04 2019 +0100
@@ -37,6 +37,7 @@
from ConfigTreeNode import XSDSchemaErrorMessage
from plcopen.plcopen import TestTextElement
+from editors.CodeFileEditor import GetSectionsText CODEFILE_XSD = """<?xml version="1.0" encoding="ISO-8859-1" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
@@ -221,9 +222,10 @@
results.extend([((tagname, "var_inout", index, "name"),) + result
for result in TestTextElement(varname, criteria)])
- print("FFFFFFFFFF", results)
- return results + [((self.CTNFullName(),"var_inout",1,"name"), (0,2),(0,4),"a_cow"),
- ((self.CTNFullName(),"body"), (1,12),(1,15),"Bitch I'm a cow !")]
+ results.extend([((tagname, "body"),) + result + for result in TestTextElement( + GetSectionsText(self, lambda x:""), criteria)]) # -------------------------------------------------------------------------------
# Current Buffering Management Functions
--- a/editors/CodeFileEditor.py Thu Mar 21 14:00:26 2019 +0100
+++ b/editors/CodeFileEditor.py Fri Mar 22 10:57:04 2019 +0100
@@ -56,6 +56,21 @@
+def GetSectionsText(controler, sections_headers): + parts = controler.GetTextParts() + for section in controler.SECTIONS_NAMES: + text += sections_headers(section) + if parts[section] == "": + if not parts[section].startswith("\n"): + if not parts[section].endswith("\n"): class CodeEditor(CustomStyledTextCtrl):
@@ -239,20 +254,9 @@
self.CurrentAction = None
- parts = self.Controler.GetTextParts()
- for section in self.Controler.SECTIONS_NAMES:
- section_comments = self.SectionsComments[section]
- text += section_comments["comment"]
- if parts[section] == "":
- if not parts[section].startswith("\n"):
- if not parts[section].endswith("\n"):
+ return GetSectionsText( + lambda section : self.SectionsComments[section]["comment"]) def RefreshView(self, scroll_to_highlight=False):