eric4.QScintilla.Lexers.LexerCPP

Module implementing a CPP lexer with some additional methods.

Global Attributes

None

Classes

LexerCPP Subclass to implement some additional lexer dependant methods.

Functions

None


LexerCPP

Subclass to implement some additional lexer dependant methods.

Derived from

QsciLexerCPP, Lexer

Class Attributes

None

Methods

LexerCPP Constructor
autoCompletionWordSeparators Public method to return the list of separators for autocompletion.
initProperties Public slot to initialize the properties.
isCommentStyle Public method to check, if a style is a comment style.
isStringStyle Public method to check, if a style is a string style.

LexerCPP (Constructor)

LexerCPP(parent=None, caseInsensitiveKeywords = False)

Constructor

parent
parent widget of this lexer

LexerCPP.autoCompletionWordSeparators

autoCompletionWordSeparators()

Public method to return the list of separators for autocompletion.

Returns:
list of separators (QStringList)

LexerCPP.initProperties

initProperties()

Public slot to initialize the properties.

LexerCPP.isCommentStyle

isCommentStyle(style)

Public method to check, if a style is a comment style.

Returns:
flag indicating a comment style (boolean)

LexerCPP.isStringStyle

isStringStyle(style)

Public method to check, if a style is a string style.

Returns:
flag indicating a string style (boolean)
Up