|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
A base class for tokenising code so that the syntax can be displayed in a code editor. More...
#include "juce_CodeTokeniser.h"
Public Member Functions | |
| virtual int | readNextToken (CodeDocument::Iterator &source)=0 |
| Reads the next token from the source and returns its token type. | |
| virtual CodeEditorComponent::ColourScheme | getDefaultColourScheme ()=0 |
| Returns a suggested syntax highlighting colour scheme. | |
A base class for tokenising code so that the syntax can be displayed in a code editor.
@tags{GUI}
Definition at line 38 of file juce_CodeTokeniser.h.
|
pure virtual |
Returns a suggested syntax highlighting colour scheme.
Implemented in juce::CPlusPlusCodeTokeniser, juce::LuaTokeniser, and juce::XmlTokeniser.
|
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 juce::CPlusPlusCodeTokeniser, juce::LuaTokeniser, and juce::XmlTokeniser.