以下成员源于类 QLocale 被弃用。 提供它们是为使旧源代码能继续工作。强烈建议不要在新代码中使用它们。
(deprecated (6.6))
QLocale::Country
|
country () const |
(deprecated (6.6))
QString
|
nativeCountryName () const |
(deprecated (6.6))
QLocale::Country
|
codeToCountry (QStringView countryCode ) |
(deprecated (6.6))
QList<QLocale::Country>
|
countriesForLanguage (QLocale::Language 语言 ) |
(deprecated (6.6))
QString
|
countryToCode (QLocale::Country country ) |
(deprecated (6.6))
QString
|
countryToString (QLocale::Country country ) |
[static, since 6.1]
QLocale::Country
QLocale::
codeToCountry
(
QStringView
countryCode
)
This function is deprecated since 6.6. We strongly advise against using it in new code.
Returns the QLocale::Territory enum corresponding to the two-letter or three-digit countryCode , as defined in the ISO 3166 standard.
If the code is invalid or not known QLocale::AnyTerritory 被返回。
使用 codeToTerritory ( QStringView ) 代替。
This function was introduced in Qt 6.1.
另请参阅 territoryToCode (), codeToLanguage (),和 codeToScript ().
[static]
QList
<
QLocale::Country
> QLocale::
countriesForLanguage
(
QLocale::Language
语言
)
This function is deprecated since 6.6. We strongly advise against using it in new code.
使用 matchingLocales () instead and consult the territory () of each.
Returns the list of countries that have entries for language in Qt's locale database. If the result is an empty list, then language is not represented in Qt's locale database.
另请参阅 matchingLocales ().
This function is deprecated since 6.6. We strongly advise against using it in new code.
使用 territory () 代替。
Returns the territory of this locale.
另请参阅 language (), script (), territoryToString (),和 bcp47Name ().
[static]
QString
QLocale::
countryToCode
(
QLocale::Country
country
)
This function is deprecated since 6.6. We strongly advise against using it in new code.
使用 territoryToCode () 代替。
Returns the two-letter territory code for country , as defined in the ISO 3166 standard.
注意:
For
QLocale::AnyTerritory
or
QLocale::AnyCountry
an empty string is returned.
另请参阅 codeToTerritory (), territory (), name (), bcp47Name (), languageToCode (),和 scriptToCode ().
[static]
QString
QLocale::
countryToString
(
QLocale::Country
country
)
This function is deprecated since 6.6. We strongly advise against using it in new code.
使用 territoryToString () 代替。
返回 QString 包含名称对于 country .
另请参阅 languageToString (), scriptToString (), territory (),和 bcp47Name ().
This function is deprecated since 6.6. We strongly advise against using it in new code.
使用 nativeTerritoryName () 代替。
Returns a native name of the territory for the locale. For example "España" for Spanish/Spain locale.
另请参阅 nativeLanguageName () 和 territoryToString ().