JUCE
Public Member Functions | List of all members
ValueWithDefault Class Reference

This class acts as a wrapper around a property inside a ValueTree. More...

Public Member Functions

 ValueWithDefault ()
 Creates an unitialised ValueWithDefault. More...
 
 ValueWithDefault (ValueTree &tree, const Identifier &propertyID, UndoManager *um)
 Creates an ValueWithDefault object. More...
 
 ValueWithDefault (ValueTree &tree, const Identifier &propertyID, UndoManager *um, const var &defaultToUse)
 Creates an ValueWithDefault object. More...
 
 ValueWithDefault (const ValueWithDefault &other)
 Creates a ValueWithDefault object from another ValueWithDefault object. More...
 
var get () const noexcept
 Returns the current value of the property. More...
 
Value getPropertyAsValue ()
 Returns the current property as a Value object. More...
 
var getDefault () const
 Returns the current default value. More...
 
void setDefault (const var &newDefault)
 Sets the default value to a new var. More...
 
bool isUsingDefault () const
 Returns true if the property does not exist or is empty. More...
 
void resetToDefault () noexcept
 Resets the property to an empty var. More...
 
ValueWithDefaultoperator= (const var &newValue)
 Sets the property and returns the new ValueWithDefault. More...
 
void setValue (const var &newValue, UndoManager *undoManagerToUse)
 Sets the property. More...
 
void referTo (ValueTree &tree, const Identifier &property, UndoManager *um)
 Makes the ValueWithDefault refer to the specified property inside the given ValueTree. More...
 
void referTo (ValueTree &tree, const Identifier &property, UndoManager *um, const var &defaultVal)
 Makes the ValueWithDefault refer to the specified property inside the given ValueTree, and specifies a default value to use. More...
 
ValueTreegetValueTree () noexcept
 Returns a reference to the ValueTree containing the referenced property. More...
 
IdentifiergetPropertyID () noexcept
 Returns the property ID of the referenced property. More...
 

Detailed Description

This class acts as a wrapper around a property inside a ValueTree.

If the property inside the ValueTree is missing or empty the ValueWithDefault will automatically return a default value, which can be specified when initialising the ValueWithDefault.

{DataStructures}

Constructor & Destructor Documentation

◆ ValueWithDefault() [1/4]

ValueWithDefault::ValueWithDefault ( )

Creates an unitialised ValueWithDefault.

Initialise it using one of the referTo() methods.

◆ ValueWithDefault() [2/4]

ValueWithDefault::ValueWithDefault ( ValueTree tree,
const Identifier propertyID,
UndoManager um 
)

Creates an ValueWithDefault object.

The default value will be an empty var.

◆ ValueWithDefault() [3/4]

ValueWithDefault::ValueWithDefault ( ValueTree tree,
const Identifier propertyID,
UndoManager um,
const var defaultToUse 
)

Creates an ValueWithDefault object.

The default value will be defaultToUse.

◆ ValueWithDefault() [4/4]

ValueWithDefault::ValueWithDefault ( const ValueWithDefault other)

Creates a ValueWithDefault object from another ValueWithDefault object.

Member Function Documentation

◆ get()

var ValueWithDefault::get ( ) const
noexcept

Returns the current value of the property.

If the property does not exist or is empty, returns the default value.

References isUsingDefault().

◆ getPropertyAsValue()

Value ValueWithDefault::getPropertyAsValue ( )

Returns the current property as a Value object.

References ValueTree::getPropertyAsValue().

◆ getDefault()

var ValueWithDefault::getDefault ( ) const

Returns the current default value.

◆ setDefault()

void ValueWithDefault::setDefault ( const var newDefault)

Sets the default value to a new var.

◆ isUsingDefault()

bool ValueWithDefault::isUsingDefault ( ) const

Returns true if the property does not exist or is empty.

References ValueTree::hasProperty().

Referenced by get().

◆ resetToDefault()

void ValueWithDefault::resetToDefault ( )
noexcept

Resets the property to an empty var.

References ValueTree::removeProperty().

◆ operator=()

ValueWithDefault& ValueWithDefault::operator= ( const var newValue)

Sets the property and returns the new ValueWithDefault.

This will modify the property in the referenced ValueTree.

References setValue().

◆ setValue()

void ValueWithDefault::setValue ( const var newValue,
UndoManager undoManagerToUse 
)

Sets the property.

This will actually modify the property in the referenced ValueTree.

References ValueTree::setProperty().

Referenced by operator=().

◆ referTo() [1/2]

void ValueWithDefault::referTo ( ValueTree tree,
const Identifier property,
UndoManager um 
)

Makes the ValueWithDefault refer to the specified property inside the given ValueTree.

◆ referTo() [2/2]

void ValueWithDefault::referTo ( ValueTree tree,
const Identifier property,
UndoManager um,
const var defaultVal 
)

Makes the ValueWithDefault refer to the specified property inside the given ValueTree, and specifies a default value to use.

◆ getValueTree()

ValueTree& ValueWithDefault::getValueTree ( )
noexcept

Returns a reference to the ValueTree containing the referenced property.

◆ getPropertyID()

Identifier& ValueWithDefault::getPropertyID ( )
noexcept

Returns the property ID of the referenced property.


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