Beispiel #1
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)
Beispiel #2
0
 def defaultEolFill(self, ix):
     for i in self.styles:
         if i.style() == ix:
             return i.eolFill()
     return QsciLexerCustom.defaultEolFill(self, ix)
 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)
Beispiel #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)
Beispiel #5
0
 def defaultEolFill(self, style):
     if style == self.Section:
         return True
     return QsciLexerCustom.defaultEolFill(self, style)
Beispiel #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)
Beispiel #7
0
 def defaultEolFill(self, style):
     if style == self.Section:
         return True
     return QsciLexerCustom.defaultEolFill(self, style)
Beispiel #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)