Example #1
0
    def __init__( self, parent = None ):

        QsciLexerPostScript.__init__( self, parent )
        Lexer.__init__( self )

        self.commentString = "%"
        return
Example #2
0
    def __init__(self, parent=None):

        QsciLexerVHDL.__init__(self, parent)
        Lexer.__init__(self)

        self.commentString = "--"
        return
Example #3
0
    def __init__( self, parent = None ):

        QsciLexerYAML.__init__( self, parent )
        Lexer.__init__( self )

        self.commentString = "#"
        return
Example #4
0
    def __init__( self, parent = None ):

        QsciLexerBatch.__init__( self, parent )
        Lexer.__init__( self )

        self.commentString = "REM "
        return
Example #5
0
    def __init__( self, parent = None ):

        QsciLexer.__init__( self, parent )
        Lexer.__init__( self )

        self.editor = parent
        return
Example #6
0
    def __init__(self, parent=None):

        QsciLexerFortran.__init__(self, parent)
        Lexer.__init__(self)

        self.commentString = "!"
        return
Example #7
0
    def __init__( self, parent = None ):

        QsciLexerLua.__init__( self, parent )
        Lexer.__init__( self )

        self.commentString = "--"
        return
Example #8
0
    def __init__(self, parent=None):

        QsciLexer.__init__(self, parent)
        Lexer.__init__(self)

        self.editor = parent
        return
Example #9
0
    def __init__(self, parent=None):

        QsciLexerHTML.__init__(self, parent)
        Lexer.__init__(self)

        self.streamCommentString = {'start': '<!-- ', 'end': ' -->'}
        return
Example #10
0
    def __init__( self, parent = None ):

        QsciLexerProperties.__init__( self, parent )
        Lexer.__init__( self )

        self.commentString = "#"
        return
Example #11
0
    def __init__(self, parent=None):

        QsciLexerProperties.__init__(self, parent)
        Lexer.__init__(self)

        self.commentString = "#"
        return
Example #12
0
    def __init__(self, parent=None):

        QsciLexerPython.__init__(self, parent)
        Lexer.__init__(self)

        self.commentString = "#"
        return
Example #13
0
    def __init__( self, parent = None ):

        QsciLexerFortran.__init__( self, parent )
        Lexer.__init__( self )

        self.commentString = "!"
        return
Example #14
0
    def __init__(self, parent=None):

        QsciLexerCSS.__init__(self, parent)
        Lexer.__init__(self)

        self.commentString = "#"
        self.streamCommentString = {'start': '/* ', 'end': ' */'}
        return
Example #15
0
    def __init__( self, parent = None ):

        QsciLexerHTML.__init__( self, parent )
        Lexer.__init__( self )

        self.streamCommentString = { 'start' : '<!-- ',
                                     'end'   : ' -->' }
        return
Example #16
0
    def __init__( self, parent = None ):

        QsciLexerMakefile.__init__( self, parent )
        Lexer.__init__( self )

        self.commentString = "#"
        self._alwaysKeepTabs = True
        return
Example #17
0
    def __init__( self, parent = None ):

        QsciLexerCSS.__init__( self, parent )
        Lexer.__init__( self )

        self.commentString = "#"
        self.streamCommentString = { 'start' : '/* ',
                                     'end'   : ' */' }
        return
Example #18
0
    def __init__( self, parent = None ):

        QsciLexerPascal.__init__( self, parent )
        Lexer.__init__( self )

        self.commentString = "//"
        self.streamCommentString = { 'start' : '{ ',
                                     'end'   : ' }' }
        return
Example #19
0
    def __init__(self, parent=None):

        QsciLexerPOV.__init__(self, parent)
        Lexer.__init__(self)

        self.commentString = "//"
        self.streamCommentString = {'start': '/* ', 'end': ' */'}
        self.boxCommentString = {'start': '/* ', 'middle': ' * ', 'end': ' */'}
        return
Example #20
0
    def __init__( self, parent = None ):

        QsciLexerCSharp.__init__( self, parent )
        Lexer.__init__( self )

        self.commentString = "//"
        self.streamCommentString = { 'start' : '/* ',
                                     'end'   : ' */' }
        self.boxCommentString = { 'start'  : '/* ',
                                  'middle' : ' * ',
                                  'end'    : ' */' }
        return
Example #21
0
    def __init__( self, parent = None, caseInsensitiveKeywords = False ):

        QsciLexerCPP.__init__( self, parent, caseInsensitiveKeywords )
        Lexer.__init__( self )

        self.commentString = "//"
        self.streamCommentString = { 'start' : '/* ',
                                     'end'   : ' */' }
        self.boxCommentString = { 'start'  : '/* ',
                                  'middle' : ' * ',
                                  'end'    : ' */' }
        return
Example #22
0
    def __init__( self, parent = None ):

        QsciLexerDiff.__init__( self, parent )
        Lexer.__init__( self )
        return
Example #23
0
	def __init__(self,doc):
		(self.Default,self.Keywords,self.Operators,self.Number,self.Comments,self.MComments,self.String,self.Character,self.Preprocessor)=range(9)
		Lexer.__init__(self,"C++",doc)
Example #24
0
    def __init__(self, parent=None):

        QsciLexerDiff.__init__(self, parent)
        Lexer.__init__(self)
        return