[locale] Tidy LocaleConfiguration
- expand API documentation - minor coding-style adjustments
This commit is contained in:
parent
81520bbbf9
commit
a307217d83
@ -37,7 +37,7 @@ LocaleConfiguration::LocaleConfiguration( const QString& localeName, const QStri
|
|||||||
lc_numeric = lc_time = lc_monetary = lc_paper = lc_name = lc_address = lc_telephone = lc_measurement
|
lc_numeric = lc_time = lc_monetary = lc_paper = lc_name = lc_address = lc_telephone = lc_measurement
|
||||||
= lc_identification = formatsName;
|
= lc_identification = formatsName;
|
||||||
|
|
||||||
(void)setLanguage( localeName );
|
setLanguage( localeName );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -83,7 +83,7 @@ LocaleConfiguration::fromLanguageAndLocation( const QString& languageLocale,
|
|||||||
if ( language == "pt" || language == "zh" )
|
if ( language == "pt" || language == "zh" )
|
||||||
{
|
{
|
||||||
QString proposedLocale = QString( "%1_%2" ).arg( language ).arg( countryCode );
|
QString proposedLocale = QString( "%1_%2" ).arg( language ).arg( countryCode );
|
||||||
foreach ( QString line, linesForLanguage )
|
for ( const QString& line : linesForLanguage )
|
||||||
{
|
{
|
||||||
if ( line.contains( proposedLocale ) )
|
if ( line.contains( proposedLocale ) )
|
||||||
{
|
{
|
||||||
|
@ -26,36 +26,53 @@
|
|||||||
|
|
||||||
class LocaleConfiguration
|
class LocaleConfiguration
|
||||||
{
|
{
|
||||||
public:
|
public: // TODO: private (but need to be public for tests)
|
||||||
/// @brief Create an empty locale, with nothing set
|
/** @brief Create a locale with everything set to the given @p localeName
|
||||||
explicit LocaleConfiguration();
|
*
|
||||||
/// @brief Create a locale with everything set to the given @p localeName
|
* Consumers should use fromLanguageAndLocation() instead.
|
||||||
|
*/
|
||||||
explicit LocaleConfiguration( const QString& localeName /* "en_US.UTF-8" */ )
|
explicit LocaleConfiguration( const QString& localeName /* "en_US.UTF-8" */ )
|
||||||
: LocaleConfiguration( localeName, localeName )
|
: LocaleConfiguration( localeName, localeName )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
/// @brief Create a locale with language and formats separate
|
/** @brief Create a locale with language and formats separate
|
||||||
|
*
|
||||||
|
* Consumers should use fromLanguageAndLocation() instead.
|
||||||
|
*/
|
||||||
explicit LocaleConfiguration( const QString& localeName, const QString& formatsName );
|
explicit LocaleConfiguration( const QString& localeName, const QString& formatsName );
|
||||||
|
|
||||||
|
/// @brief Create an empty locale, with nothing set
|
||||||
|
explicit LocaleConfiguration();
|
||||||
|
|
||||||
|
/** @brief Create a "sensible" locale configuration for @p language and @p countryCode
|
||||||
|
*
|
||||||
|
* This method applies some heuristics to pick a good locale (from the list
|
||||||
|
* @p availableLocales), along with a good language (for instance, in
|
||||||
|
* large countries with many languages, picking a generally used one).
|
||||||
|
*/
|
||||||
static LocaleConfiguration
|
static LocaleConfiguration
|
||||||
fromLanguageAndLocation( const QString& language, const QStringList& availableLocales, const QString& countryCode );
|
fromLanguageAndLocation( const QString& language, const QStringList& availableLocales, const QString& countryCode );
|
||||||
|
|
||||||
|
/// Is this an empty (default-constructed and not modified) configuration?
|
||||||
bool isEmpty() const;
|
bool isEmpty() const;
|
||||||
|
|
||||||
/** @brief sets lang and the BCP47 representation
|
/** @brief sets language to @p localeName
|
||||||
*
|
*
|
||||||
* Note that the documentation how this works is in packages.conf
|
* The language may be regionalized, e.g. "nl_BE". Both the language
|
||||||
|
* (with region) and BCP47 representation (without region, lowercase)
|
||||||
|
* are updated. The BCP47 representation is used by the packages module.
|
||||||
|
* See also `packages.conf` for a discussion of how this is used.
|
||||||
*/
|
*/
|
||||||
void setLanguage( const QString& localeName );
|
void setLanguage( const QString& localeName );
|
||||||
|
/// Current language (including region)
|
||||||
QString language() const { return m_lang; }
|
QString language() const { return m_lang; }
|
||||||
|
/// Current language (lowercase, BCP47 format, no region)
|
||||||
// Note that the documentation how this works is in packages.conf
|
|
||||||
QString toBcp47() const { return m_languageLocaleBcp47; }
|
QString toBcp47() const { return m_languageLocaleBcp47; }
|
||||||
|
|
||||||
QMap< QString, QString > toMap() const;
|
QMap< QString, QString > toMap() const;
|
||||||
|
|
||||||
// These become all uppercase in locale.conf, but we keep them lowercase here to
|
// These become all uppercase in locale.conf, but we keep them lowercase here to
|
||||||
// avoid confusion with locale.h.
|
// avoid confusion with <locale.h>, which defines (e.g.) LC_NUMERIC macro.
|
||||||
QString lc_numeric, lc_time, lc_monetary, lc_paper, lc_name, lc_address, lc_telephone, lc_measurement,
|
QString lc_numeric, lc_time, lc_monetary, lc_paper, lc_name, lc_address, lc_telephone, lc_measurement,
|
||||||
lc_identification;
|
lc_identification;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user