Minimal tab controller for a simple text editor
def __init__(self, filepath):
def SetEditedElementText(self, tagname, text):
file = open(self.FilePath, "w")
def GetEditedElementText(self, tagname, debug = False):
if os.path.isfile(self.FilePath):
file = open(self.FilePath, "r")
def GetEditedElementInterfaceVars(self, tagname, debug = False):
def GetEditedElementType(self, tagname, debug = False):
def GetBlockTypes(self, tagname = "", debug = False):
def GetDataTypes(self, tagname = "", basetypes = True, only_locatables = False, debug = False):
def GetEnumeratedDataValues(self, debug = False):
def StartBuffering(self):