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
Loading...
Searching...
No Matches
Public Member Functions | List of all members
juce::ComponentBuilder::ImageProvider Class Referenceabstract

This class is used when references to images need to be stored in ValueTrees. More...

#include "juce_ComponentBuilder.h"

Public Member Functions

virtual Image getImageForIdentifier (const var &imageIdentifier)=0
 Retrieves the image associated with this identifier, which could be any kind of string, number, filename, etc.
 
virtual var getIdentifierForImage (const Image &image)=0
 Returns an identifier to be used to refer to a given image.
 

Detailed Description

This class is used when references to images need to be stored in ValueTrees.

An instance of an ImageProvider provides a mechanism for converting an Image to/from a reference, which may be a file, URL, ID string, or whatever system is appropriate in your app.

When you're loading components from a ValueTree that may need a way of loading images, you should call ComponentBuilder::setImageProvider() to supply a suitable provider before trying to load the component.

See also
ComponentBuilder::setImageProvider()

Definition at line 185 of file juce_ComponentBuilder.h.

Member Function Documentation

◆ getIdentifierForImage()

virtual var juce::ComponentBuilder::ImageProvider::getIdentifierForImage ( const Image image)
pure virtual

Returns an identifier to be used to refer to a given image.

This is used when a reference to an image is stored in a ValueTree.

◆ getImageForIdentifier()

virtual Image juce::ComponentBuilder::ImageProvider::getImageForIdentifier ( const var imageIdentifier)
pure virtual

Retrieves the image associated with this identifier, which could be any kind of string, number, filename, etc.

The image that is returned will be owned by the caller, but it may come from the ImageCache.


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