JUCE
Public Member Functions | List of all members
CodeTokeniser Class Referenceabstract

A base class for tokenising code so that the syntax can be displayed in a code editor. More...

+ Inheritance diagram for CodeTokeniser:

Public Member Functions

 CodeTokeniser ()
 
virtual ~CodeTokeniser ()
 
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...
 

Detailed Description

A base class for tokenising code so that the syntax can be displayed in a code editor.

See also
CodeDocument, CodeEditorComponent

Constructor & Destructor Documentation

CodeTokeniser::CodeTokeniser ( )
virtual CodeTokeniser::~CodeTokeniser ( )
virtual

References JUCE_LEAK_DETECTOR.

Member Function Documentation

virtual int CodeTokeniser::readNextToken ( CodeDocument::Iterator source)
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.

virtual CodeEditorComponent::ColourScheme CodeTokeniser::getDefaultColourScheme ( )
pure virtual

Returns a suggested syntax highlighting colour scheme.

Implemented in CPlusPlusCodeTokeniser, LuaTokeniser, and XmlTokeniser.


The documentation for this class was generated from the following file: