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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        self.commentString = "//"
        self.streamCommentString = { 'start' : '{ ',
                                     'end'   : ' }' }
        return
Beispiel #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
Beispiel #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
Beispiel #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
Beispiel #22
0
    def __init__( self, parent = None ):

        QsciLexerDiff.__init__( self, parent )
        Lexer.__init__( self )
        return
Beispiel #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)
Beispiel #24
0
    def __init__(self, parent=None):

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