openshot-audio  0.1.6
Public Types | Public Member Functions | Static Public Member Functions | List of all members
CPlusPlusCodeTokeniser Class Reference

#include <juce_CPlusPlusCodeTokeniser.h>

Inheritance diagram for CPlusPlusCodeTokeniser:
CodeTokeniser

Public Types

enum  TokenType {
  tokenType_error = 0, tokenType_comment, tokenType_keyword, tokenType_operator,
  tokenType_identifier, tokenType_integer, tokenType_float, tokenType_string,
  tokenType_bracket, tokenType_punctuation, tokenType_preprocessor
}
 

Public Member Functions

 CPlusPlusCodeTokeniser ()
 
 ~CPlusPlusCodeTokeniser ()
 
int readNextToken (CodeDocument::Iterator &) override
 
CodeEditorComponent::ColourScheme getDefaultColourScheme () override
 
- Public Member Functions inherited from CodeTokeniser
 CodeTokeniser ()
 
virtual ~CodeTokeniser ()
 

Static Public Member Functions

static bool isReservedKeyword (const String &token) noexcept
 

Detailed Description

A simple lexical analyser for syntax colouring of C++ code.

See also
CodeEditorComponent, CodeDocument

Member Enumeration Documentation

The token values returned by this tokeniser.

Enumerator
tokenType_error 
tokenType_comment 
tokenType_keyword 
tokenType_operator 
tokenType_identifier 
tokenType_integer 
tokenType_float 
tokenType_string 
tokenType_bracket 
tokenType_punctuation 
tokenType_preprocessor 

Constructor & Destructor Documentation

CPlusPlusCodeTokeniser::CPlusPlusCodeTokeniser ( )
CPlusPlusCodeTokeniser::~CPlusPlusCodeTokeniser ( )

Member Function Documentation

CodeEditorComponent::ColourScheme CPlusPlusCodeTokeniser::getDefaultColourScheme ( )
overridevirtual

Returns a suggested syntax highlighting colour scheme.

Implements CodeTokeniser.

bool CPlusPlusCodeTokeniser::isReservedKeyword ( const String token)
staticnoexcept

This is a handy method for checking whether a string is a c++ reserved keyword.

int CPlusPlusCodeTokeniser::readNextToken ( CodeDocument::Iterator source)
overridevirtual

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.

Implements CodeTokeniser.


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