eric4.QScintilla.Lexers.LexerXML

Module implementing a XML lexer with some additional methods.

Global Attributes

None

Classes

LexerXML Subclass to implement some additional lexer dependant methods.

Functions

None


LexerXML

Subclass to implement some additional lexer dependant methods.

Derived from

QsciLexerXML, Lexer

Class Attributes

None

Class Methods

None

Methods

LexerXML Constructor
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.

Static Methods

None

LexerXML (Constructor)

LexerXML(parent=None)

Constructor

parent
parent widget of this lexer

LexerXML.initProperties

initProperties()

Public slot to initialize the properties.

LexerXML.isCommentStyle

isCommentStyle(style)

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

Returns:
flag indicating a comment style (boolean)

LexerXML.isStringStyle

isStringStyle(style)

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

Returns:
flag indicating a string style (boolean)
Up