This class is used when references to images need to be stored in ValueTrees. More...
#include <juce_ComponentBuilder.h>
Public Member Functions | |
ImageProvider () | |
virtual | ~ImageProvider () |
virtual var | getIdentifierForImage (const Image &image)=0 |
Returns an identifier to be used to refer to a given image. More... | |
virtual Image | getImageForIdentifier (const var &imageIdentifier)=0 |
Retrieves the image associated with this identifier, which could be any kind of string, number, filename, etc. More... | |
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.
|
inline |
|
inlinevirtual |
|
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.
|
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.