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

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

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

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

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

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

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

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

        self.commentString = "REM "
        return
    def __init__( self, parent = None ):

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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