Struct xpcom::interfaces::mozIOSPreferences [] [src]

#[repr(C)]
pub struct mozIOSPreferences { /* fields omitted */ }

interface mozIOSPreferences : nsISupports

Methods

impl mozIOSPreferences
[src]

[src]

Cast this mozIOSPreferences to one of its base interfaces.

impl mozIOSPreferences
[src]

dateTimeFormatStyleNone: i64 = 0

dateTimeFormatStyleShort: i64 = 1

dateTimeFormatStyleMedium: i64 = 2

dateTimeFormatStyleLong: i64 = 3

dateTimeFormatStyleFull: i64 = 4

[src]

/**
   * Returns a list of locales used by the host environment for UI
   * localization.
   *
   * The result is a sorted list and we expect that the OS attempts to
   * use the top locale from the list for which it has data.
   *
   * Each element of the list is a valid locale ID that can be passed to ICU
   * and ECMA402 Intl APIs,
   * At the same time each element is a valid BCP47 language tag that can be
   * used for language negotiation.
   *
   * Example: ["en-US", "de", "pl", "sr-Cyrl", "zh-Hans-HK"]
   *
   * (See OSPreferences.h for a more C++-friendly version of this.)
   */

void getSystemLocales ([optional] out unsigned long aCount, [array, size_is (aCount), retval] out string aOutArray);

[src]

/**
   * Returns a list of locales used by host environment for regional
   * preferences internationalization.
   *
   * The result is a sorted list and we expect that the OS attempts to
   * use the top locale from the list for which it has data.
   *
   * Each element of the list is a valid locale ID that can be passed to ICU
   * and ECMA402 Intl APIs,
   *
   * Example: ["en-US", "de", "pl", "sr-Cyrl", "zh-Hans-HK"]
   *
   * (See OSPreferences.h for a more C++-friendly version of this.)
   */

void getRegionalPrefsLocales ([optional] out unsigned long aCount, [array, size_is (aCount), retval] out string aOutArray);

[src]

/**
   * Returns the best locale that the host environment is localized to.
   *
   * The result is a valid locale ID and it should be
   * used for all APIs that do not handle language negotiation.
   *
   * In any scenario involving language negotiation, GetSystemLocales should
   * be preferred over the single value.
   *
   * Example: "zh-Hans-HK"
   */

readonly attribute ACString systemLocale;

[src]

/**
   * Returns the best possible date/time pattern for the host environment
   * taking into account date/time regional settings user defined in the OS
   * preferences.
   *
   * Notice, that depending on the OS it may take into account those settings
   * for all locales, or only if the locale matches the OS locale.
   *
   * It takes two integer arguments that must be valid `dateTimeFormatStyle*`
   * values (see constants defined above), and a string representing a
   * BCP47 locale.
   *
   * It returns a string with a LDML date/time pattern.
   *
   * If no pattern can be retrieved from the host environment, it will
   * lookup the best available pattern from ICU.
   *
   * Notice, this is a pretty unique method in this API in that it does
   * more than look up into host environment.
   * The reason for that is that constructing the right date/time pattern
   * requires a lot of OS-specific logic and it ends up being easier to just
   * handle all scenarios, including with cases where we fail to retrieve
   * anything from the OS, here.
   */

AString getDateTimePattern (in long timeFormatStyle, in long dateFormatStyle, [optional] in ACString locale);

Methods from Deref<Target = nsISupports>

[src]

Cast this nsISupports to one of its base interfaces.

[src]

void QueryInterface (in nsIIDRef uuid, [iid_is (uuid), retval] out nsQIResult result);

[src]

[noscript,notxpcom] nsrefcnt AddRef ();

[src]

[noscript,notxpcom] nsrefcnt Release ();

Trait Implementations

impl XpCom for mozIOSPreferences
[src]

IID: nsIID = nsID(1704216597, 59822, 18621, [162, 191, 241, 16, 135, 32, 149, 12])

[src]

Perform a QueryInterface call on this object, attempting to dynamically cast it to the requested interface type. Returns Some(RefPtr) if the cast succeeded, and None otherwise. Read more

impl RefCounted for mozIOSPreferences
[src]

[src]

Increment the reference count.

[src]

Decrement the reference count, potentially freeing backing memory.

impl Deref for mozIOSPreferences
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.