Kanzi  3.9.6
Kanzi Engine API
kanzi::ResourceDictionary Class Reference

A resource dictionary is a container that maps resource IDs to resources. More...

#include <kanzi/core.ui/resource/resource_dictionary.hpp>

Inheritance diagram for kanzi::ResourceDictionary:
[legend]

Public Types

typedef AnonymousResourceContainer::const_iterator AnonymousResourceConstIterator
 The type used for iterators of the anonymous resource container. More...
 
typedef vector< ResourceSharedPtrAnonymousResourceContainer
 The type used for the container of anonymous resources. More...
 
typedef DictionaryContainer::const_iterator DictionaryConstIterator
 The type used for iterators of nested resource dictionary containers. More...
 
typedef DictionaryContainer::const_reverse_iterator DictionaryConstReverseIterator
 The type used for reverse iterators of nested resource dictionary containers. More...
 
typedef vector< ResourceDictionarySharedPtrDictionaryContainer
 The type used for container of nested resource dictionaries. More...
 
typedef ResourceMap::const_iterator ResourceConstIterator
 The type used for iterators of the mapping of resource IDs to resources. More...
 
typedef unordered_map< ResourceID, ResourceSharedPtrResourceMap
 The type used for mapping resource IDs to resources. More...
 
typedef URLMap::const_iterator URLConstIterator
 The type used for iterators of the mapping of resource IDs to URLs. More...
 
typedef unordered_map< ResourceID, string > URLMap
 The type used for mapping resource IDs to URLs. More...
 
- Public Types inherited from kanzi::PropertyObject
typedef PropertyStorageContainer::const_iterator PropertyStorageConstIterator
 
typedef vector< PropertyStoragePtrPropertyStorageContainer
 
typedef PropertyStorageContainer::iterator PropertyStorageIterator
 
typedef intrusive_ptr< AbstractPropertyTypeDescriptor::PropertyStoragePropertyStoragePtr
 
typedef PropertyStorageContainer::reverse_iterator PropertyStorageReverseIterator
 

Public Member Functions

ResourceSharedPtr acquire (const ResourceID &key) const
 Gets from the resource dictionary the resource with the resource ID that you pass to the function. More...
 
template<typename Type >
shared_ptr< Type > acquire (const ResourceID &key) const
 Gets from the resource dictionary the resource with the resource ID you pass to the function and casts the resource to the type you specify. More...
 
ResourceManager::AcquireTaskSharedPtr acquireAsync (const ResourceID &key, ResourceManager::AsyncAcquireFinishedCallback func) const
 Asynchronously acquires a resource. More...
 
void add (const ResourceID &key, string_view url)
 Adds a resource ID to a resource URL mapping to a resource dictionary. More...
 
void add (const ResourceID &key, ResourceSharedPtr resource)
 Adds a resource ID to a resource pointer mapping to a resource dictionary. More...
 
void add (ResourceDictionarySharedPtr resourceDictionary)
 Adds a nested resource dictionary to a resource dictionary. More...
 
void addAnonymousResource (ResourceSharedPtr resource)
 Adds an anonymous resource to a resource dictionary. More...
 
AnonymousResourceConstIterator beginAnonymousResources () const
 Returns an iterator pointing to the first element of the anonymous resources container. More...
 
URLConstIterator beginUrls () const
 Returns an iterator pointing to the first element of the URL mappings container. More...
 
ResourceDictionarySharedPtr clone () const
 Duplicates a resource dictionary. More...
 
bool contains (const ResourceID &key) const
 Returns whether a resource dictionary contains a mapping for the resource ID that you pass to the function. More...
 
DictionaryConstReverseIterator crbeginDictionaries () const
 Returns a reverse iterator to the first element of the reversed nested resource dictionary container. More...
 
DictionaryConstReverseIterator crendDictionaries () const
 Returns a reverse iterator to the element following the last element of the reversed nested resource dictionary container. More...
 
AnonymousResourceConstIterator endAnonymousResources () const
 Returns an iterator pointing to the element following the last element of the anonymous resources container. More...
 
URLConstIterator endUrls () const
 Returns an iterator pointing to the element following the last element of the URL mappings container. More...
 
optional< string > find (const ResourceID &key) const
 Resolves the mapping from the resource ID that you pass to the function to the URL of the resource. More...
 
ResourceDictionarySharedPtr findDictionary (string_view name) const
 Searches for a nested dictionary with the specified name and returns a pointer to it. More...
 
virtual optional< string > findOverride (const ResourceID &key) const
 Implementation for find(). More...
 
ResourceSharedPtr findStoredResource (const ResourceID &key) const
 Finds an explicitly stored resource pointer from a dictionary. More...
 
size_t getDictionaryCount () const
 Gets the number of nested resource dictionaries in a resource dictionary. More...
 
void merge (const ResourceDictionary &preferredDictionary)
 Copies into this resource dictionary the contents of the resource dictionary that you pass to the function. More...
 
void remove (const ResourceID &key)
 Removes a resource ID mapping from a resource dictionary. More...
 
void removeAnonymousResource (const Resource &resource)
 Removes an anonymous resource from the resource dictionary. More...
 
void removeDictionary (size_t index)
 Removes a nested resource dictionary from a resource dictionary. More...
 
ResourceSharedPtr tryAcquire (const ResourceID &key) const
 Gets from the resource dictionary the resource with the resource ID you pass to the function. More...
 
template<typename Type >
shared_ptr< Type > tryAcquire (const ResourceID &key) const
 Gets from the resource dictionary the resource with the resource ID you pass to the function and casts the resource to the type you specify. More...
 
- Public Member Functions inherited from kanzi::Resource
virtual unsigned int getCPUMemoryUsage () const
 Function for getting the memory usage of a resource. More...
 
const string & getName () const
 Gets the resource name. More...
 
const string & getUrl () const
 Gets the resource URL. More...
 
bool isKeepAlive () const
 Tells if the resource has keep alive flag set. More...
 
void reload ()
 
void reloadFromFile (string_view filePath)
 
void reloadFromKzb (KzbFile &kzbFile, ReadOnlyMemoryFile &file, KzbMemoryParser &parser)
 
void setKeepAlive (bool keepAlive)
 Sets the keep alive flag. More...
 
void setUrl (string_view url)
 Sets the resource URL. More...
 
 ~Resource () override
 Destructor. More...
 
- Public Member Functions inherited from kanzi::Object
AppliedStyleEntrySharedPtr applyObjectStyle (kanzi::StyleSharedPtr style)
 Applies a style to an object. More...
 
void applyObjectStyles ()
 Apply all styles for an object node. More...
 
DomaingetDomain () const
 Returns the domain the object belongs to. More...
 
const MetaclassgetDynamicMetaclass () const override
 Returns the metaclass of the dynamic type of the object. More...
 
MainLoopSchedulergetMainLoopScheduler () const
 Returns the MainLoopScheduler instance of the associated Domain. More...
 
detail::MessageDispatcher * getMessageDispatcher () const
 Returns the message dispatcher of the object. More...
 
ResourceManagergetResourceManager () const
 Returns the resource manager of the object. More...
 
ScriptingContextSharedPtr getScriptingContext () const
 Gets the scripting context of the object. More...
 
 Object (Domain *domain)
 
void setScriptingContext (ScriptingContextSharedPtr context)
 Sets the scripting context of the object. More...
 
void unapplyObjectStyle (AppliedStyleEntrySharedPtr appliedStyleEntry)
 
void unapplyObjectStyles ()
 Unapplies and removes all applied styles. More...
 
 ~Object () override
 
- Public Member Functions inherited from kanzi::MetaObject
bool isTypeOf (const Metaclass *objectType) const
 Determines if the type of this object is the given type or derived from it. More...
 
virtual ~MetaObject ()
 
- Public Member Functions inherited from kanzi::PropertyObject
template<typename DataType >
void addPropertyModifier (const PropertyType< DataType > &propertyType, typename PropertyType< DataType >::Descriptor::ModifierCallback callback, void *owner)
 
template<typename DataType >
void addPropertyNotificationHandler (const PropertyType< DataType > &propertyType, typename PropertyType< DataType >::Descriptor::NotificationCallback callback, void *owner)
 
template<typename DataType >
void addPropertyValueSource (const PropertyType< DataType > &propertyType, typename PropertyType< DataType >::Descriptor::TypedValueSource *valueSource, PropertyValuePrecedence precedence, void *ownerPointer)
 
template<typename DataType >
void addPropertyValueSource (const PropertyType< DataType > &propertyType, typename PropertyType< DataType >::Descriptor::TypedValueSource *valueSource, PropertyValuePrecedence precedence, AbstractPropertyTypeDescriptor::ValueSourceOwner *owner)
 
PropertyStorageContainer::iterator beginPropertyStorage ()
 Returns the begin iterator to the internal property storage container. More...
 
PropertyStorageContainer::const_iterator beginPropertyStorage () const
 Returns the begin iterator to the internal property storage container. More...
 
void clearPropertyFlag (AbstractPropertyType propertyType, uint32_t flag)
 
void copyLocalValue (const PropertyObject &other, AbstractPropertyType propertyType)
 Copies local value of single property from another object. More...
 
void copyLocalValues (const PropertyObject &other)
 Copies all local values from another object. More...
 
PropertyStorageContainer::iterator endPropertyStorage ()
 Returns the end iterator to the internal property storage container. More...
 
PropertyStorageContainer::const_iterator endPropertyStorage () const
 Returns the end iterator to the internal property storage container. More...
 
template<typename DataType >
PropertyType< DataType >::Traits::ReturnType getAbstractProperty (AbstractPropertyType abstractPropertyType) const
 
template<typename DataType >
PropertyType< DataType >::Traits::ReturnType getAbstractPropertyBase (AbstractPropertyType abstractPropertyType) const
 
template<typename DataType >
optional< typename PropertyType< DataType >::Traits::ReturnType > getOptionalAbstractProperty (AbstractPropertyType abstractPropertyType) const
 
template<typename DataType >
optional< typename PropertyType< DataType >::Traits::ReturnType > getOptionalProperty (const PropertyType< DataType > &propertyType) const
 Evaluates the property value in the same way as the overload above but does not default to the value in property metadata if there are no inputs to the property value. More...
 
template<typename DataType >
optional< typename PropertyType< DataType >::Traits::ReturnType > getOptionalPropertyBase (const PropertyType< DataType > &propertyType) const
 Returns the current value of a property disregarding modifiers, but does not default to the value in property metadata if there are no inputs to the property value. More...
 
template<typename DataType >
PropertyType< DataType >::Traits::ReturnType getProperty (const PropertyType< DataType > &propertyType) const
 Returns the current value of a property type. More...
 
template<typename DataType >
PropertyType< DataType >::Traits::ReturnType getPropertyBase (const PropertyType< DataType > &propertyType) const
 Returns the current value of a property disregarding modifiers. More...
 
template<typename DataType >
size_t getPropertyNotificationHandlerCount (const PropertyType< DataType > &propertyType) const
 Gets number of current notification handlers for given property type. More...
 
bool hasBaseValue (AbstractPropertyType propertyType) const
 Evaluates whether there are any inputs into the property value, disregarding modifiers. More...
 
bool hasLocalValue (AbstractPropertyType propertyType) const
 Evaluates whether there is a local value set for the property. More...
 
bool hasNonClassValue (AbstractPropertyType propertyType) const
 Evaluates whether there is a value of any precedence higher than class default value set for the property. More...
 
bool hasValue (AbstractPropertyType propertyType) const
 Evaluates whether there are any inputs into the property value. More...
 
bool isPropertyFlagSet (AbstractPropertyType propertyType, uint32_t flag) const
 
virtual void onPropertyChanged (AbstractPropertyType propertyType, PropertyNotificationReason reason)
 Virtual function to handle property change notifications. More...
 
 PropertyObject ()
 
void removeKzbProperties (flat_set< AbstractPropertyType > *keepProperties)
 Remove all KZB properties that are not included in a given set. More...
 
void removeKzbProperties ()
 Remove all KZB properties. More...
 
template<typename DataType >
void removeLocalPropertyValueSource (const PropertyType< DataType > &propertyType, typename PropertyType< DataType >::Descriptor::TypedValueSource *valueSource, void *ownerPointer)
 
void removeLocalValue (AbstractPropertyType propertyType)
 Removes the local value associated with the property. More...
 
template<typename DataType >
void removePropertyModifier (const PropertyType< DataType > &propertyType, typename PropertyType< DataType >::Descriptor::ModifierCallback callback, void *owner)
 
template<typename DataType >
void removePropertyNotificationHandler (const PropertyType< DataType > &propertyType, typename PropertyType< DataType >::Descriptor::NotificationCallback callback, void *owner)
 
template<typename DataType >
void removePropertyValueSource (const PropertyType< DataType > &propertyType, typename PropertyType< DataType >::Descriptor::TypedValueSource *valueSource, void *ownerPointer)
 
template<typename DataType >
void setAbstractProperty (AbstractPropertyType abstractPropertyType, typename PropertyType< DataType >::Traits::ParameterType value)
 
template<typename DataType >
void setProperty (const PropertyType< DataType > &propertyType, typename PropertyType< DataType >::Traits::ParameterType value)
 Sets the local value of a property type. More...
 
void setPropertyFlag (AbstractPropertyType propertyType, uint32_t flag)
 
void validatePropertyModifiers (AbstractPropertyType propertyType)
 
virtual ~PropertyObject ()
 

Static Public Member Functions

static ResourceDictionarySharedPtr create (Domain *domain, string_view name)
 Creates a resource dictionary. More...
 
static ResourceDictionarySharedPtr loadFromKZB (Domain *domain, string_view name, KzbFile &kzbFile, ReadOnlyMemoryFile &file, KzbMemoryParser &parser)
 Loads a resource dictionary from a file. More...
 
- Static Public Member Functions inherited from kanzi::Object
static const MetaclassgetStaticMetaclass ()
 Returns the metaclass of Object class. More...
 
static PropertyTypeEditorInfoSharedPtr makeEditorInfo ()
 Default implementation that returns empty editor info. More...
 
- Static Public Member Functions inherited from kanzi::MetaObject
static const MetaclassgetStaticMetaclass ()
 Returns the metaclass of Object class. More...
 
static PropertyTypeEditorInfoSharedPtr makeEditorInfo ()
 Default implementation that returns empty editor info. More...
 

Protected Member Functions

virtual ResourceManager::AcquireTaskSharedPtr acquireAsyncOverride (const ResourceID &key, ResourceManager::AsyncAcquireFinishedCallback func) const
 Implements asynchronous resource acquire described in acquireAsync(). More...
 
virtual ResourceSharedPtr acquireOverride (const ResourceID &key) const
 Implements resource lookup described in acquire. More...
 
virtual ResourceDictionarySharedPtr cloneOverride () const
 Implements cloning of the object in clone. More...
 
void loadFromKZB (KzbFile &kzbFile, ReadOnlyMemoryFile &file, KzbMemoryParser &parser)
 Loads a resource dictionary from a file. More...
 
 ResourceDictionary (Domain *domain, string_view name)
 Constructor. More...
 
virtual ResourceSharedPtr tryAcquireOverride (const ResourceID &key) const
 Implements resource lookup described in tryAcquire. More...
 
- Protected Member Functions inherited from kanzi::Resource
virtual unsigned int getCPUMemoryUsageOverride () const
 
virtual void reloadFromFileOverride (string_view filePath)
 
virtual void reloadFromKzbOverride (KzbFile &kzbFile, ReadOnlyMemoryFile &file, KzbMemoryParser &parser)
 
virtual void reloadOverride ()
 
 Resource (Domain *domain, string_view name)
 Constructor. More...
 
- Protected Member Functions inherited from kanzi::Object
void initialize ()
 
void onCopy (const Object &other)
 
- Protected Member Functions inherited from kanzi::MetaObject
void initialize ()
 
 MetaObject ()
 
- Protected Member Functions inherited from kanzi::PropertyObject
AbstractPropertyTypeDescriptor::ValueSourceEntryacquireLocalValueSourceEntry (AbstractPropertyTypeDescriptor &descriptor, PropertyStoragePtr &propertyStorage)
 Acquires a local value source entry that is free for the assignment of a value. More...
 
AbstractPropertyTypeDescriptor::ModifierStorageacquireModifierStorage (AbstractPropertyTypeDescriptor &descriptor, AbstractPropertyTypeDescriptor::PropertyStorage &propertyStorage)
 
AbstractPropertyTypeDescriptor::NotificationStorageacquireNotificationStorage (AbstractPropertyTypeDescriptor &descriptor)
 
PropertyStoragePtr acquirePropertyStorage (AbstractPropertyTypeDescriptor &descriptor)
 
void addPropertyValueSource (AbstractPropertyTypeDescriptor &descriptor, AbstractPropertyTypeDescriptor::ValueSource *valueSource, PropertyValuePrecedence precedence, void *ownerPointer)
 Internally adds a property value source. More...
 
void addPropertyValueSource (AbstractPropertyTypeDescriptor &descriptor, AbstractPropertyTypeDescriptor::ValueSource *valueSource, PropertyValuePrecedence precedence, AbstractPropertyTypeDescriptor::ValueSourceOwner *owner)
 Internally adds a property value source. More...
 
AbstractPropertyTypeDescriptor::ValueSourceEntryconstructLocalValueSourceEntry (AbstractPropertyTypeDescriptor &descriptor, AbstractPropertyTypeDescriptor::PropertyStorage &propertyStorage)
 
PropertyStoragePtr constructPropertyStorage (AbstractPropertyTypeDescriptor &descriptor)
 
void copyLocalValue (const AbstractPropertyTypeDescriptor::PropertyStorage &otherPropertyStorage)
 Copy local value from property storage. More...
 
AbstractPropertyTypeDescriptor::ModifierStoragefindModifierStorage (AbstractPropertyTypeDescriptor &descriptor)
 
AbstractPropertyTypeDescriptor::NotificationStoragefindNotificationStorage (AbstractPropertyTypeDescriptor &descriptor) const
 
AbstractPropertyTypeDescriptor::PropertyStoragefindPropertyStorage (AbstractPropertyTypeDescriptor &descriptor) const
 Gets the property storage for given property type descriptor. More...
 
PropertyStoragePtr findPropertyStoragePtr (AbstractPropertyTypeDescriptor &descriptor) const
 Gets property storage intrusive pointer which you can use to hold a reference until the end of the operation. More...
 
AbstractPropertyTypeDescriptorfindPropertyTypeDescriptorByNameAndDataType (string_view name, PropertyDataType dataType) const
 Finds a property type descriptor by name and data type. More...
 
AbstractPropertyTypeDescriptorfindPropertyTypeDescriptorByQualifiedNameAndDataType (string_view qualifiedName, PropertyDataType dataType) const
 Like findPropertyTypeDescriptorByNameAndDataType, but only searches by matching with qualified names. More...
 
AbstractPropertyTypeDescriptorfindPropertyTypeDescriptorByUnqualifiedNameAndDataType (string_view unqualifiedName, PropertyDataType dataType) const
 Like findPropertyTypeDescriptorByNameAndDataType, but only searches by matching with unqualified names. More...
 
AbstractPropertyTypeDescriptor::ValueSourcegetClassValueSource (AbstractPropertyTypeDescriptor &descriptor) const
 
AbstractPropertyTypeDescriptor::ValueSourcegetFinalValueSource (AbstractPropertyTypeDescriptor &descriptor) const
 
AbstractPropertyTypeDescriptor::ValueSourcegetNonClassValueSource (AbstractPropertyTypeDescriptor &descriptor) const
 
AbstractPropertyTypeDescriptor::ValueSourcegetTopValueSource (AbstractPropertyTypeDescriptor &descriptor) const
 Gets the top-level value source for a given property descriptor. More...
 
virtual void notifyPropertyHandlers (PropertyStoragePtr &storagePtr, PropertyNotificationReason reason)
 Notifies all property handlers on a property storage. More...
 
void onCopy (const PropertyObject &other)
 
void removeLocalValue (AbstractPropertyTypeDescriptor &descriptor, PropertyStoragePtr &propertyStorage)
 Removes a local value from the given property storage. More...
 
void removePropertyValueSource (AbstractPropertyTypeDescriptor &descriptor, AbstractPropertyTypeDescriptor::ValueSource *valueSource, void *owner)
 Removes a property value source. More...
 
void validatePropertyModifiersAndNotifyHandlers (PropertyStoragePtr &propertyStorage)
 

Static Protected Member Functions

static PropertyTypeEditorInfoSharedPtr makeEditorInfo ()
 

Additional Inherited Members

- Protected Types inherited from kanzi::Object
typedef vector< AppliedStyleEntrySharedPtrAppliedStyleContainer
 Applied style container. More...
 
- Protected Attributes inherited from kanzi::Object
AppliedStyleContainer m_appliedStyles
 Listing of applied styles applied to this object. More...
 

Detailed Description

A resource dictionary is a container that maps resource IDs to resources.

A node can refer to resources by setting resource IDs to resource ID properties. You can set a resource dictionary to the node or to any of its parent nodes to define which resources the node uses. You can use a resource dictionary to group similar resources to logical entity, such as themes or locales, and change a resource dictionary of a node to change multiple resources at the same time.

Use Node::acquireResource to get the resource from the resource dictionary of a node or from the resource dictionaries of its parent nodes.

A resource dictionary can map resource IDs to resources in these ways:

  • Directly to a resource pointer
  • Indirectly to a resource with a resource URL

Use acquire and tryAcquire functions to get a mapped resource regardless of the way how a resource ID is mapped to a resource.

You can store nested resource dictionaries in a resource dictionary. When you are getting a resource from a resource dictionary and the resource dictionary cannot find the resource ID you specify, the resource dictionary looks for the resource ID recursively in the nested resource dictionaries.

In a resource dictionary you can store resources without mapping a resource ID to them. In Kanzi Engine such resources are called anonymous resources. You can get anonymous resources with beginAnonymousResources and endAnonymousResources.

Examples

To create a resource dictionary:

// Create a resource dictionary.
ResourceDictionarySharedPtr dictionary = ResourceDictionary::create(domain, "Dictionary");

To add content to a resource dictionary:

// Add resources to a resource dictionary.
dictionary->add(ResourceID("red icon"), texture);
dictionary->add(ResourceID("blue icon"), "kzb://my_project/Textures/Blue Icon");

To get resources from a resource dictionary:

// Acquire resources from a resource dictionary.
ResourceSharedPtr redIcon = dictionary->acquire(ResourceID("red icon"));
ResourceSharedPtr blueIcon = dictionary->acquire(ResourceID("blue icon"));

To change the resource dictionary of a node:

// Change the resource dictionary of a node.
node->setResourceDictionary(dictionary);

To extend the existing resource dictionary of a node:

// Extend the existing resource dictionary of a node with a nested resource dictionary.
node->addResourceDictionary(dictionary);

Member Typedef Documentation

◆ DictionaryContainer

The type used for container of nested resource dictionaries.

◆ DictionaryConstIterator

typedef DictionaryContainer::const_iterator kanzi::ResourceDictionary::DictionaryConstIterator

The type used for iterators of nested resource dictionary containers.

◆ DictionaryConstReverseIterator

typedef DictionaryContainer::const_reverse_iterator kanzi::ResourceDictionary::DictionaryConstReverseIterator

The type used for reverse iterators of nested resource dictionary containers.

◆ URLMap

typedef unordered_map<ResourceID, string> kanzi::ResourceDictionary::URLMap

The type used for mapping resource IDs to URLs.

◆ URLConstIterator

typedef URLMap::const_iterator kanzi::ResourceDictionary::URLConstIterator

The type used for iterators of the mapping of resource IDs to URLs.

◆ ResourceMap

The type used for mapping resource IDs to resources.

◆ ResourceConstIterator

typedef ResourceMap::const_iterator kanzi::ResourceDictionary::ResourceConstIterator

The type used for iterators of the mapping of resource IDs to resources.

◆ AnonymousResourceContainer

The type used for the container of anonymous resources.

◆ AnonymousResourceConstIterator

typedef AnonymousResourceContainer::const_iterator kanzi::ResourceDictionary::AnonymousResourceConstIterator

The type used for iterators of the anonymous resource container.

Constructor & Destructor Documentation

◆ ResourceDictionary()

kanzi::ResourceDictionary::ResourceDictionary ( Domain domain,
string_view  name 
)
explicitprotected

Constructor.

Parameters
domainThe domain to which the resource dictionary belongs.
nameThe name of the resource dictionary.

Member Function Documentation

◆ create()

static ResourceDictionarySharedPtr kanzi::ResourceDictionary::create ( Domain domain,
string_view  name 
)
static

Creates a resource dictionary.

Parameters
domainThe domain to which the resource dictionary belongs.
nameThe name of the resource dictionary.
Returns
The pointer to the resource dictionary.

◆ add() [1/3]

void kanzi::ResourceDictionary::add ( const ResourceID key,
string_view  url 
)

Adds a resource ID to a resource URL mapping to a resource dictionary.

Parameters
keyThe resource ID to add.
urlThe URL that points to the resource to map to the resource ID.

◆ add() [2/3]

void kanzi::ResourceDictionary::add ( const ResourceID key,
ResourceSharedPtr  resource 
)

Adds a resource ID to a resource pointer mapping to a resource dictionary.

Parameters
keyThe resource ID to add.
resourceThe resource pointer to map to the resource ID..

◆ remove()

void kanzi::ResourceDictionary::remove ( const ResourceID key)

Removes a resource ID mapping from a resource dictionary.

Parameters
keyThe resource ID that you want to remove.

◆ contains()

bool kanzi::ResourceDictionary::contains ( const ResourceID key) const

Returns whether a resource dictionary contains a mapping for the resource ID that you pass to the function.

Parameters
keyThe resource ID for which you want to check whether there is a mapping in the resource dictionary.
Returns
If the resource dictionary or a nested resource dictionary contains a mapping for the resource ID that you passed to the function, true, otherwise false.

◆ find()

optional<string> kanzi::ResourceDictionary::find ( const ResourceID key) const

Resolves the mapping from the resource ID that you pass to the function to the URL of the resource.

This function ignores the direct resource ID to resource mappings.

Parameters
keyThe resource ID of the resource for which you want to get the URL.
Returns
If the resource dictionary or a nested resource dictionary contains a resource URL, a resource ID that you passed, otherwise nullopt.

◆ findOverride()

virtual optional<string> kanzi::ResourceDictionary::findOverride ( const ResourceID key) const
virtual

Implementation for find().

Reimplemented in kanzi::ResourceDictionarySelector.

◆ beginUrls()

URLConstIterator kanzi::ResourceDictionary::beginUrls ( ) const

Returns an iterator pointing to the first element of the URL mappings container.

Returns
An iterator pointing to the first element of the container.

◆ endUrls()

URLConstIterator kanzi::ResourceDictionary::endUrls ( ) const

Returns an iterator pointing to the element following the last element of the URL mappings container.

Returns
An iterator pointing to the element following the last element of the URL mappings container.

◆ beginAnonymousResources()

AnonymousResourceConstIterator kanzi::ResourceDictionary::beginAnonymousResources ( ) const

Returns an iterator pointing to the first element of the anonymous resources container.

Returns
An iterator pointing to the first element of the anonymous resources container.

◆ endAnonymousResources()

AnonymousResourceConstIterator kanzi::ResourceDictionary::endAnonymousResources ( ) const

Returns an iterator pointing to the element following the last element of the anonymous resources container.

Returns
An iterator pointing to the element following the last element of the anonymous resources container.

◆ addAnonymousResource()

void kanzi::ResourceDictionary::addAnonymousResource ( ResourceSharedPtr  resource)

Adds an anonymous resource to a resource dictionary.

Parameters
resourceThe anonymous resource that you want to add to the resource dictionary.

◆ removeAnonymousResource()

void kanzi::ResourceDictionary::removeAnonymousResource ( const Resource resource)

Removes an anonymous resource from the resource dictionary.

If the resource does not exist in the resource dictionary, the function does not do anything.

Parameters
resourceThe anonymous resource you want to remove from the resource dictionary.

◆ add() [3/3]

void kanzi::ResourceDictionary::add ( ResourceDictionarySharedPtr  resourceDictionary)

Adds a nested resource dictionary to a resource dictionary.

You can add to multiple resource dictionaries the same resource dictionary as a nested resource dictionary. Do not form cycles with the nested resource dictionaries.

Parameters
resourceDictionaryThe nested resource dictionary that you want to add to the resource dictionary.

◆ getDictionaryCount()

size_t kanzi::ResourceDictionary::getDictionaryCount ( ) const

Gets the number of nested resource dictionaries in a resource dictionary.

Returns
The number of nested resource dictionaries in the resource dictionary.

◆ removeDictionary()

void kanzi::ResourceDictionary::removeDictionary ( size_t  index)

Removes a nested resource dictionary from a resource dictionary.

Parameters
indexThe index of the nested resource dictionary that you want to remove.

◆ crbeginDictionaries()

DictionaryConstReverseIterator kanzi::ResourceDictionary::crbeginDictionaries ( ) const

Returns a reverse iterator to the first element of the reversed nested resource dictionary container.

It corresponds to the last element of the non-reversed container.

Returns
A reverse iterator to the first element of the reversed nested resource dictionary container.

◆ crendDictionaries()

DictionaryConstReverseIterator kanzi::ResourceDictionary::crendDictionaries ( ) const

Returns a reverse iterator to the element following the last element of the reversed nested resource dictionary container.

It corresponds to the element preceding the first element of the non-reversed container.

Returns
A reverse iterator to the element following the last element of the reversed nested resource dictionary container.

◆ findDictionary()

ResourceDictionarySharedPtr kanzi::ResourceDictionary::findDictionary ( string_view  name) const

Searches for a nested dictionary with the specified name and returns a pointer to it.

Parameters
nameThe name of the dictionary to find.
Returns
A child dictionary with the specified name. If a dictionary with the specified name does not exist, returns null.

◆ findStoredResource()

ResourceSharedPtr kanzi::ResourceDictionary::findStoredResource ( const ResourceID key) const

Finds an explicitly stored resource pointer from a dictionary.

Does not try to acquire a resource from the resource manager. To acquire a resource, use acquire().

Parameters
keyThe resource ID of the resource that you want to get.
Returns
The resource to which the resource ID is mapped.

◆ acquire() [1/2]

ResourceSharedPtr kanzi::ResourceDictionary::acquire ( const ResourceID key) const

Gets from the resource dictionary the resource with the resource ID that you pass to the function.

The function forwards the resource URL mappings to ResourceManager::acquireResource. Classes that derive from ResourceDictionary can override the behavior of acquire by implementing acquireOverride.

Parameters
keyThe resource ID of the resource that you want to get.
Returns
The resource to which the resource ID is mapped.
  • If the resource ID is mapped to a resource pointer, the function returns the resource pointer.
  • If the resource ID is mapped to a resource URL, the function uses the URL to query the resource from ResourceManager::acquireResource.
  • If the resource dictionary has nested resource dictionaries, the function forwards the query to the nested dictionaries: the last nested resource dictionary is searched first, and the first nested resource dictionary is searched last.
  • If the resource ID is not mapped to anything in this resource dictionary or any of the nested dictionaries, the function returns nullptr.

◆ acquire() [2/2]

template<typename Type >
shared_ptr<Type> kanzi::ResourceDictionary::acquire ( const ResourceID key) const
inline

Gets from the resource dictionary the resource with the resource ID you pass to the function and casts the resource to the type you specify.

See also
acquire

◆ tryAcquire() [1/2]

ResourceSharedPtr kanzi::ResourceDictionary::tryAcquire ( const ResourceID key) const

Gets from the resource dictionary the resource with the resource ID you pass to the function.

Any resource URL mappings are forwarded to ResourceManager::tryAcquireResource. Classes that derive from ResourceDictionary can override the behavior of tryAcquire by implementing tryAcquireOverride.

Parameters
keyThe resource ID of the resource that you want to get.
Returns
The resource to which the resource ID is mapped.
  • If the resource ID is mapped to a resource pointer, the function returns the resource pointer.
  • If the resource ID is mapped to a resource URL, the function uses the URL to query the resource from ResourceManager::tryAcquireResource.
  • If the resource dictionary has nested resource dictionaries, the function forwards the query to the nested dictionaries: the last nested resource dictionary is searched first, and the first nested resource dictionary is searched last.
  • If the resource ID is not mapped to anything in this resource dictionary or any of the nested dictionaries, the function returns nullptr.

◆ tryAcquire() [2/2]

template<typename Type >
shared_ptr<Type> kanzi::ResourceDictionary::tryAcquire ( const ResourceID key) const
inline

Gets from the resource dictionary the resource with the resource ID you pass to the function and casts the resource to the type you specify.

See also
tryAcquire

◆ acquireAsync()

ResourceManager::AcquireTaskSharedPtr kanzi::ResourceDictionary::acquireAsync ( const ResourceID key,
ResourceManager::AsyncAcquireFinishedCallback  func 
) const

Asynchronously acquires a resource.

If the function cannot find a resource URL mapping, it does not launch an asynchronous task. Kanzi executes the callback only the next time when it executes callbacks, if there are no asynchronous task to launch.

Parameters
keyThe resource ID of the resource that you want to get.
funcThe callback to execute when loading is complete.
Returns
The launched asynchronous task.

◆ merge()

void kanzi::ResourceDictionary::merge ( const ResourceDictionary preferredDictionary)

Copies into this resource dictionary the contents of the resource dictionary that you pass to the function.

The function adds to this resource dictionary:

  • Resource ID mappings
  • Pointers to the nested resource directories
  • Anonymous resources from the given resource directory

If there are duplicate values for the resource ID mappings, prefers the values from the resource directory that you pass to the function.

Parameters
preferredDictionaryThe resource dictionary that you want to merge to this resource dictionary.

◆ clone()

ResourceDictionarySharedPtr kanzi::ResourceDictionary::clone ( ) const

Duplicates a resource dictionary.

When you duplicate a resource dictionary that contains nested resource dictionaries, the function creates a shallow copy: it copies the pointers to the nested resource dictionaries, not the contents of the nested resource dictionaries.

A class that derives from ResourceDictionary must override the cloning implementation in cloneOverride.

Returns
The pointer to the duplicated resource dictionary.

◆ loadFromKZB() [1/2]

static ResourceDictionarySharedPtr kanzi::ResourceDictionary::loadFromKZB ( Domain domain,
string_view  name,
KzbFile kzbFile,
ReadOnlyMemoryFile file,
KzbMemoryParser parser 
)
static

Loads a resource dictionary from a file.

Used internally by Kanzi Engine.

Parameters
domainDomain
nameName
kzbFileThe kzb file from which to load a resource dictionary.
fileResource Dictionary file in the kzb file from which to load.
parserParser pointing to the beginning of the file.

◆ loadFromKZB() [2/2]

void kanzi::ResourceDictionary::loadFromKZB ( KzbFile kzbFile,
ReadOnlyMemoryFile file,
KzbMemoryParser parser 
)
protected

Loads a resource dictionary from a file.

Used internally by Kanzi Engine.

Parameters
kzbFileThe kzb file from which to load a resource dictionary.
fileResource Dictionary file in the kzb file from which to load.
parserParser pointing to the beginning of the file.

◆ acquireOverride()

virtual ResourceSharedPtr kanzi::ResourceDictionary::acquireOverride ( const ResourceID key) const
protectedvirtual

Implements resource lookup described in acquire.

Reimplemented in kanzi::ResourceDictionarySelector.

◆ tryAcquireOverride()

virtual ResourceSharedPtr kanzi::ResourceDictionary::tryAcquireOverride ( const ResourceID key) const
protectedvirtual

Implements resource lookup described in tryAcquire.

Reimplemented in kanzi::ResourceDictionarySelector.

◆ acquireAsyncOverride()

virtual ResourceManager::AcquireTaskSharedPtr kanzi::ResourceDictionary::acquireAsyncOverride ( const ResourceID key,
ResourceManager::AsyncAcquireFinishedCallback  func 
) const
protectedvirtual

Implements asynchronous resource acquire described in acquireAsync().

Reimplemented in kanzi::ResourceDictionarySelector.

◆ cloneOverride()

virtual ResourceDictionarySharedPtr kanzi::ResourceDictionary::cloneOverride ( ) const
protectedvirtual

Implements cloning of the object in clone.

Reimplemented in kanzi::ResourceDictionarySelector.

◆ makeEditorInfo()

static PropertyTypeEditorInfoSharedPtr kanzi::ResourceDictionary::makeEditorInfo ( )
inlinestaticprotected

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