editors/TextViewer.py
branchwxPython4
changeset 3429 67a4d207bace
parent 3327 d753cc166bd0
child 3688 c2992796a859
equal deleted inserted replaced
3428:803ce245f72f 3429:67a4d207bace
   206     INDIC2 = 2
   206     INDIC2 = 2
   207 
   207 
   208     def SetStyling(self, length, style):
   208     def SetStyling(self, length, style):
   209         self.Editor.SetStyling(length, style)
   209         self.Editor.SetStyling(length, style)
   210 
   210 
   211     def SetIndicatorCurrentFillRange(start, length, indic):
   211     def SetIndicatorCurrentFillRange(self, start, length, indic):
   212         self.Editor.SetIndicatorCurrent(indic)
   212         self.Editor.SetIndicatorCurrent(indic)
   213         self.Editor.IndicatorFillRange(start, length)
   213         self.Editor.IndicatorFillRange(start, length)
   214 
   214 
   215     def GetCurrentPos(self):
   215     def GetCurrentPos(self):
   216         return self.Editor.GetCurrentPos()
   216         return self.Editor.GetCurrentPos()