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