JUCE
|
A base class for tokenising code so that the syntax can be displayed in a code editor. More...
Public Member Functions | |
CodeTokeniser ()=default | |
virtual | ~CodeTokeniser ()=default |
virtual int | readNextToken (CodeDocument::Iterator &source)=0 |
Reads the next token from the source and returns its token type. More... | |
virtual CodeEditorComponent::ColourScheme | getDefaultColourScheme ()=0 |
Returns a suggested syntax highlighting colour scheme. More... | |
A base class for tokenising code so that the syntax can be displayed in a code editor.
|
default |
|
virtualdefault |
|
pure virtual |
Reads the next token from the source and returns its token type.
This must leave the source pointing to the first character in the next token.
Implemented in CPlusPlusCodeTokeniser, LuaTokeniser, and XmlTokeniser.
|
pure virtual |
Returns a suggested syntax highlighting colour scheme.
Implemented in CPlusPlusCodeTokeniser, LuaTokeniser, and XmlTokeniser.