LibreOffice
LibreOffice 7.4 SDK API Reference
Public Member Functions | List of all members
XStringResourceManager Interface Reference

Interface to manage a resource string table containing a set of strings for different locales. More...

import"XStringResourceManager.idl";

Inheritance diagram for XStringResourceManager:
XStringResourceResolver XModifyBroadcaster XInterface XStringResourcePersistence StringResource XStringResourceWithLocation XStringResourceWithStorage StringResourceWithLocation StringResourceWithStorage

Public Member Functions

boolean isReadOnly ()
 Returns the resource's read only state. More...
 
void setCurrentLocale ([in] com::sun::star::lang::Locale Locale, [in] boolean FindClosestMatch) raises ( com::sun::star::lang::IllegalArgumentException )
 Sets the locale to be used. More...
 
void setDefaultLocale ([in] com::sun::star::lang::Locale Locale) raises ( com::sun::star::lang::IllegalArgumentException, com::sun::star::lang::NoSupportException )
 Sets the default locale to be used. More...
 
void setString ([in] string ResourceID, [in] string Str) raises ( com::sun::star::lang::NoSupportException )
 Associates a String to a Resource ID for the current locale. More...
 
void setStringForLocale ([in] string ResourceID, [in] string Str, [in] com::sun::star::lang::Locale locale) raises ( com::sun::star::lang::NoSupportException )
 Associates a String to a Resource ID for a specific locale. More...
 
void removeId ([in] string ResourceID) raises ( com::sun::star::resource::MissingResourceException, com::sun::star::lang::NoSupportException )
 Removes a Resource ID including the corresponding string for the current locale. More...
 
void removeIdForLocale ([in] string ResourceID, [in] com::sun::star::lang::Locale locale) raises ( com::sun::star::resource::MissingResourceException, com::sun::star::lang::NoSupportException )
 Removes a Resource ID including the corresponding string for s specific locale. More...
 
void newLocale ([in] com::sun::star::lang::Locale locale) raises ( com::sun::star::container::ElementExistException, com::sun::star::lang::IllegalArgumentException, com::sun::star::lang::NoSupportException )
 Creates a new locale. More...
 
void removeLocale ([in] com::sun::star::lang::Locale locale) raises ( com::sun::star::lang::IllegalArgumentException, com::sun::star::lang::NoSupportException )
 Removes a locale completely including the corresponding strings for each locale. More...
 
long getUniqueNumericId () raises ( com::sun::star::lang::NoSupportException )
 Provides a numeric id that is unique within all Resource IDs used in the string table. More...
 
- Public Member Functions inherited from XStringResourceResolver
string resolveString ([in] string ResourceID) raises ( com::sun::star::resource::MissingResourceException )
 Resolves the passed ResourceID for the current locale. More...
 
string resolveStringForLocale ([in] string ResourceID, [in] com::sun::star::lang::Locale locale) raises ( com::sun::star::resource::MissingResourceException )
 Resolves the passed ResourceID for a specific locale. More...
 
boolean hasEntryForId ([in] string ResourceID)
 Checks if the resource contains an entry for the given ResourceID and current locale. More...
 
boolean hasEntryForIdAndLocale ([in] string ResourceID, [in] com::sun::star::lang::Locale locale)
 Checks if the resource contains an entry for the given ResourceID and locale. More...
 
sequence< string > getResourceIDs ()
 Returns a sequence of all valid Resource IDs for the current locale. More...
 
sequence< string > getResourceIDsForLocale ([in] com::sun::star::lang::Locale locale)
 Returns a sequence of all valid Resource IDs for a specific locale. More...
 
com::sun::star::lang::Locale getCurrentLocale ()
 Returns the current locale specified in the accessed resource. More...
 
com::sun::star::lang::Locale getDefaultLocale ()
 Returns the default locale of the accessed resource. More...
 
sequence< com::sun::star::lang::LocalegetLocales ()
 Returns a sequence of all supported locales. More...
 
- Public Member Functions inherited from XModifyBroadcaster
void addModifyListener ([in] com::sun::star::util::XModifyListener aListener)
 adds the specified listener to receive events "modified." More...
 
void removeModifyListener ([in] com::sun::star::util::XModifyListener aListener)
 removes the specified listener. More...
 
- Public Member Functions inherited from XInterface
any queryInterface ([in] type aType)
 queries for a new interface to an existing UNO object. More...
 
void acquire ()
 increases the reference counter by one. More...
 
void release ()
 decreases the reference counter by one. More...
 

Detailed Description

Interface to manage a resource string table containing a set of strings for different locales.

The interface is derived from com::sun::star::resource::XStringResourceResolver that allows to access the string table but not to modify it. This interface also allows to modify the string table.

It's designed to be used in the context of creating a string table, e.g. from a string table editor or from a Dialog Editor designing localized dialogs.

Member Function Documentation

◆ getUniqueNumericId()

long getUniqueNumericId ( )
raises (com::sun::star::lang::NoSupportException
)

Provides a numeric id that is unique within all Resource IDs used in the string table.

This method takes into account all Resource IDs starting with a decimal number and only evaluates the ID until the first non digit character is reached. This allows to extend unique IDs with individual identifiers without breaking the mechanism of this method.

Examples: ID "42" -> numeric id 42 ID "0foo" -> numeric id 0 ID "111.MyId.Something.Else" -> numeric id 111 ID "No Digits" -> not considered for numeric id

The id returned will be 0 for an empty string table and it will be reset to 0 if all locales are removed. In all other cases this method returns the maximum numeric id used so far at the beginning of a Resource ID incremented by 1. When calling this method more than once always the same number will be returned until this number is really used at the beginning of a new Resource ID passed to setString() or setStringForLocale().

As the numeric id is guaranteed to be unique for the complete string table all locales are taken into account. So using this methods will force the implementation to load all locale data that may not have been loaded so far.

Exceptions
com::sun::star::lang::NoSupportExceptionif the next available id exceeds the range of type long. So it's not recommended to use own Resource IDs starting with a decimal number near to the maximum long value if this methods should be used.

◆ isReadOnly()

boolean isReadOnly ( )

Returns the resource's read only state.

Returns
TRUE if the resource is read only, otherwise FALSE

◆ newLocale()

Creates a new locale.

For each existing ResourceID an empty string will be created. The first locale created will automatically be the first default locale. Otherwise strings for all already created IDs will be copied from the default locale.

Exceptions
com::sun::star::container::ElementExistExceptionif the Locale already has been created.
com::sun::star::lang::IllegalArgumentExceptionif the Locale is not valid.
com::sun::star::lang::NoSupportExceptionif the resource is read only, see isReadOnly()

◆ removeId()

Removes a Resource ID including the corresponding string for the current locale.

Parameters
ResourceIDThe Resource ID to be removed for the current locale.
Exceptions
com::sun::star::resource::MissingResourceExceptionif the Resource ID is not valid.
com::sun::star::lang::NoSupportExceptionif the resource is read only, see isReadOnly()

◆ removeIdForLocale()

void removeIdForLocale ( [in] string  ResourceID,
[in] com::sun::star::lang::Locale  locale 
)
raises ( com::sun::star::resource::MissingResourceException,
com::sun::star::lang::NoSupportException
)

Removes a Resource ID including the corresponding string for s specific locale.

Parameters
ResourceIDThe Resource ID to be removed.
localeThe locale the Resource ID should be removed for. The locale has to match exactly with one of the locales provided by getLocales(). A closest match search is not supported.
Exceptions
com::sun::star::resource::MissingResourceExceptionif the Resource ID is not valid.
com::sun::star::lang::NoSupportExceptionif the resource is read only, see isReadOnly()

◆ removeLocale()

Removes a locale completely including the corresponding strings for each locale.

Exceptions
com::sun::star::lang::IllegalArgumentExceptionif the Locale to be removed is not supported.
com::sun::star::lang::NoSupportExceptionif the resource is read only, see isReadOnly()

◆ setCurrentLocale()

void setCurrentLocale ( [in] com::sun::star::lang::Locale  Locale,
[in] boolean  FindClosestMatch 
)
raises (com::sun::star::lang::IllegalArgumentException
)

Sets the locale to be used.

Parameters
LocaleSpecifies the current locale to be used.
FindClosestMatch

If true: If the exact locale that should be set is not available the method tries to find the closest match. E.g. if en_US is re- quired but not available, en would be the next choice. Finally the default locale will be used TRUE.

If false: If the exact locale that should be set is not available a com::sun::star::lang::IllegalArgumentException is thrown.

If false: If the exact locale that should be set is not available a com::sun::star::lang::IllegalArgumentException is thrown.

◆ setDefaultLocale()

Sets the default locale to be used.

Parameters
LocaleSpecifies the default locale to be used. If this locale is not available a com::sun::star::lang::IllegalArgumentException is thrown.
Exceptions
com::sun::star::lang::NoSupportExceptionif the resource is read only, see isReadOnly()

◆ setString()

void setString ( [in] string  ResourceID,
[in] string  Str 
)
raises (com::sun::star::lang::NoSupportException
)

Associates a String to a Resource ID for the current locale.

If an entry for the Resource ID already exists, the string associated with it will be overwritten, otherwise a new entry will be created.

Parameters
ResourceIDID to address the string inside the resource for the current locale.
StrString to be associated with the Resource ID.
Exceptions
com::sun::star::lang::NoSupportExceptionif the resource is read only, see isReadOnly()

◆ setStringForLocale()

void setStringForLocale ( [in] string  ResourceID,
[in] string  Str,
[in] com::sun::star::lang::Locale  locale 
)
raises (com::sun::star::lang::NoSupportException
)

Associates a String to a Resource ID for a specific locale.

If an entry for the Resource ID already exists, the string associated with it will be overwritten, otherwise a new entry will be created.

It's not recommended to use this method to get the best performance as the implementation may be optimized for the use of the current locale.

Parameters
ResourceIDID to address the string inside the resource.
StrString to be associated with the Resource ID.
localeThe locale the string should be set for. The locale has to match exactly with one of the locales provided by getLocales(). A closest match search is not supported.
Exceptions
com::sun::star::lang::NoSupportExceptionif the resource is read only, see isReadOnly()

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