예제 #1
0
파일: customLexer3.py 프로젝트: pingf/toys
    def defaultEolFill(self, style):
# This allowed to colorize all the background of a line.
        if style == self.SecundLevelTitle:
            return True
        return QsciLexerCustom.defaultEolFill(self, style)
예제 #2
0
 def defaultEolFill(self, ix):
     for i in self.styles:
         if i.style() == ix:
             return i.eolFill()
     return QsciLexerCustom.defaultEolFill(self, ix)
예제 #3
0
 def defaultEolFill(self, style):
     # This allowed to colorize all the background of a line.
     if style in self.__comment:
         return True
     return QsciLexerCustom.defaultEolFill(self, style)
예제 #4
0
 def defaultEolFill(self, style):
     # This allowed to colorize all the background of a line.
     if style == self.SecundLevelTitle:
         return True
     return QsciLexerCustom.defaultEolFill(self, style)
예제 #5
0
 def defaultEolFill(self, style):
     if style == self.Section:
         return True
     return QsciLexerCustom.defaultEolFill(self, style)
예제 #6
0
 def defaultEolFill(self, style):
     # This allowed to colorize all the background of a line.
     if style == self.Comment or style == self.Comment_End or style == self.Comment_Start:
         return True
     return QsciLexerCustom.defaultEolFill(self, style)
예제 #7
0
 def defaultEolFill(self, style):
     if style == self.Section:
         return True
     return QsciLexerCustom.defaultEolFill(self, style)
예제 #8
0
 def defaultEolFill(self, style):
     # This allowed to colorize all the background of a line.
     if style == self.Comment or style == self.Comment_End or style == self.Comment_Start:
         return True
     return QsciLexerCustom.defaultEolFill(self, style)