JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce::RelativeCoordinatePositionerBase::ComponentScope Class Reference

Used for resolving a RelativeCoordinate expression in the context of a component. More...

#include <juce_RelativeCoordinatePositioner.h>

Inheritance diagram for juce::RelativeCoordinatePositionerBase::ComponentScope:
Collaboration diagram for juce::RelativeCoordinatePositionerBase::ComponentScope:

Public Member Functions

 ComponentScope (Component &)
 
virtual double evaluateFunction (const String &functionName, const double *parameters, int numParameters) const
 Executes a named function. More...
 
String getScopeUID () const override
 Returns some kind of globally unique ID that identifies this scope. More...
 
Expression getSymbolValue (const String &symbol) const override
 Returns the value of a symbol. More...
 
void visitRelativeScope (const String &scopeName, Visitor &) const override
 Creates a Scope object for a named scope, and then calls a visitor to do some kind of processing with this new scope. More...
 

Protected Member Functions

ComponentfindSiblingComponent (const String &componentID) const
 

Protected Attributes

Componentcomponent
 

Detailed Description

Used for resolving a RelativeCoordinate expression in the context of a component.

Constructor & Destructor Documentation

◆ ComponentScope()

juce::RelativeCoordinatePositionerBase::ComponentScope::ComponentScope ( Component )

Member Function Documentation

◆ evaluateFunction()

virtual double juce::Expression::Scope::evaluateFunction ( const String functionName,
const double *  parameters,
int  numParameters 
) const
virtualinherited

Executes a named function.

If the function name is unknown, this can throw an Expression::EvaluationError exception.

Exceptions
Expression::EvaluationError

◆ findSiblingComponent()

Component* juce::RelativeCoordinatePositionerBase::ComponentScope::findSiblingComponent ( const String componentID) const
protected

◆ getScopeUID()

String juce::RelativeCoordinatePositionerBase::ComponentScope::getScopeUID ( ) const
overridevirtual

Returns some kind of globally unique ID that identifies this scope.

Reimplemented from juce::Expression::Scope.

◆ getSymbolValue()

Expression juce::RelativeCoordinatePositionerBase::ComponentScope::getSymbolValue ( const String symbol) const
overridevirtual

Returns the value of a symbol.

If the symbol is unknown, this can throw an Expression::EvaluationError exception. The member value is set to the part of the symbol that followed the dot, if there is one, e.g. for "foo.bar", symbol = "foo" and member = "bar".

Exceptions
Expression::EvaluationError

Reimplemented from juce::Expression::Scope.

◆ visitRelativeScope()

void juce::RelativeCoordinatePositionerBase::ComponentScope::visitRelativeScope ( const String scopeName,
Visitor visitor 
) const
overridevirtual

Creates a Scope object for a named scope, and then calls a visitor to do some kind of processing with this new scope.

If the name is valid, this method must create a suitable (temporary) Scope object to represent it, and must call the Visitor::visit() method with this new scope.

Reimplemented from juce::Expression::Scope.

Member Data Documentation

◆ component

Component& juce::RelativeCoordinatePositionerBase::ComponentScope::component
protected

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