The QsciLexerCMake class encapsulates the Scintilla CMake lexer. More...
#include <qscilexercmake.h>
Inherits QsciLexer.
The QsciLexerCMake class encapsulates the Scintilla CMake lexer.
anonymous enum |
This enum defines the meanings of the different styles used by the CMake lexer.
Default |
The default. |
Comment |
A comment. |
String |
A string. |
StringLeftQuote |
A left quoted string. |
StringRightQuote |
A right quoted string. |
Function |
A function. (Defined by keyword set number 1.). |
Variable |
A variable. (Defined by keyword set number 2.). |
Label |
A label. |
KeywordSet3 |
A keyword defined in keyword set number 3. The class must be sub-classed and re-implement keywords() to make use of this style. |
BlockWhile |
A WHILE block. |
BlockForeach |
A FOREACH block. |
BlockIf |
An IF block. |
BlockMacro |
A MACRO block. |
StringVariable |
A variable within a string. |
Number |
A number. |
QsciLexerCMake::QsciLexerCMake | ( | QObject * | parent = 0 |
) |
Construct a QsciLexerCMake with parent parent. parent is typically the QsciScintilla instance.
const char* QsciLexerCMake::lexer | ( | ) | const [virtual] |
Returns the name of the lexer. Some lexers support a number of languages.
Reimplemented from QsciLexer.
QColor QsciLexerCMake::defaultColor | ( | int | style | ) | const [virtual] |
Returns the foreground colour of the text for style number style.
Reimplemented from QsciLexer.
QColor QsciLexerCMake::defaultPaper | ( | int | style | ) | const [virtual] |
Returns the background colour of the text for style number style.
Reimplemented from QsciLexer.
const char* QsciLexerCMake::keywords | ( | int | set | ) | const [virtual] |
Returns the set of keywords for the keyword set set recognised by the lexer as a space separated string.
Reimplemented from QsciLexer.
QString QsciLexerCMake::description | ( | int | style | ) | const [virtual] |
Returns the descriptive name for style number style. If the style is invalid for this language then an empty QString is returned. This is intended to be used in user preference dialogs.
Implements QsciLexer.
void QsciLexerCMake::refreshProperties | ( | ) | [virtual] |
Causes all properties to be refreshed by emitting the propertyChanged() signal as required.
Reimplemented from QsciLexer.
bool QsciLexerCMake::foldAtElse | ( | ) | const |
Returns true if ELSE blocks can be folded.
virtual void QsciLexerCMake::setFoldAtElse | ( | bool | fold | ) | [virtual, slot] |
If fold is true then ELSE blocks can be folded. The default is false.
bool QsciLexerCMake::readProperties | ( | QSettings & | qs, | |
const QString & | prefix | |||
) | [protected, virtual] |
The lexer's properties are read from the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.
Reimplemented from QsciLexer.
bool QsciLexerCMake::writeProperties | ( | QSettings & | qs, | |
const QString & | prefix | |||
) | const [protected, virtual] |
The lexer's properties are written to the settings qs. prefix (which has a trailing '/') should be used as a prefix to the key of each setting. true is returned if there is no error.
Reimplemented from QsciLexer.