2017-12-20 14:39:09 +01:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
2016-08-10 11:40:22 +02:00
|
|
|
*
|
|
|
|
* Copyright 2016, Teo Mrnjavac <teo@kde.org>
|
2019-01-08 22:30:12 +01:00
|
|
|
* Copyright 2017-2019, Adriaan de Groot <groot@kde.org>
|
2016-08-10 11:40:22 +02:00
|
|
|
*
|
|
|
|
* Calamares is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Calamares is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LOCALECONFIGURATION_H
|
|
|
|
#define LOCALECONFIGURATION_H
|
|
|
|
|
2019-01-08 13:40:20 +01:00
|
|
|
#include <QDebug>
|
2016-08-10 11:40:22 +02:00
|
|
|
#include <QMap>
|
2019-09-07 16:58:37 +02:00
|
|
|
#include <QString>
|
2016-08-10 11:40:22 +02:00
|
|
|
|
|
|
|
class LocaleConfiguration
|
|
|
|
{
|
|
|
|
public:
|
2019-01-08 11:10:16 +01:00
|
|
|
/// @brief Create an empty locale, with nothing set
|
2016-08-10 11:40:22 +02:00
|
|
|
explicit LocaleConfiguration();
|
2019-01-08 11:10:16 +01:00
|
|
|
/// @brief Create a locale with everything set to the given @p localeName
|
2019-01-08 13:23:16 +01:00
|
|
|
explicit LocaleConfiguration( const QString& localeName /* "en_US.UTF-8" */ )
|
2019-09-07 16:58:37 +02:00
|
|
|
: LocaleConfiguration( localeName, localeName )
|
|
|
|
{
|
|
|
|
}
|
2019-01-08 13:23:16 +01:00
|
|
|
/// @brief Create a locale with language and formats separate
|
|
|
|
explicit LocaleConfiguration( const QString& localeName, const QString& formatsName );
|
2016-08-10 11:40:22 +02:00
|
|
|
|
2019-09-07 16:58:37 +02:00
|
|
|
static LocaleConfiguration
|
|
|
|
fromLanguageAndLocation( const QString& language, const QStringList& availableLocales, const QString& countryCode );
|
2016-08-10 11:40:22 +02:00
|
|
|
|
2017-08-08 14:59:44 +02:00
|
|
|
bool isEmpty() const;
|
2016-08-10 11:40:22 +02:00
|
|
|
|
2019-01-08 18:09:34 +01:00
|
|
|
/** @brief sets lang and the BCP47 representation
|
|
|
|
*
|
|
|
|
* Note that the documentation how this works is in packages.conf
|
|
|
|
*/
|
|
|
|
void setLanguage( const QString& localeName );
|
|
|
|
QString language() const { return m_lang; }
|
|
|
|
|
2018-04-03 18:10:05 +02:00
|
|
|
// Note that the documentation how this works is in packages.conf
|
2019-01-08 18:09:34 +01:00
|
|
|
QString toBcp47() const { return m_languageLocaleBcp47; }
|
|
|
|
|
|
|
|
QMap< QString, QString > toMap() const;
|
2018-04-03 18:10:05 +02:00
|
|
|
|
2016-08-10 11:40:22 +02:00
|
|
|
// These become all uppercase in locale.conf, but we keep them lowercase here to
|
|
|
|
// avoid confusion with locale.h.
|
2019-09-07 16:58:37 +02:00
|
|
|
QString lc_numeric, lc_time, lc_monetary, lc_paper, lc_name, lc_address, lc_telephone, lc_measurement,
|
|
|
|
lc_identification;
|
2017-06-06 16:45:35 +02:00
|
|
|
|
|
|
|
// If the user has explicitly selected language (from the dialog)
|
|
|
|
// or numbers format, set these to avoid implicit changes to them.
|
|
|
|
bool explicit_lang, explicit_lc;
|
2018-04-03 18:10:05 +02:00
|
|
|
|
|
|
|
private:
|
2019-01-08 18:09:34 +01:00
|
|
|
QString m_lang;
|
|
|
|
QString m_languageLocaleBcp47;
|
2016-08-10 11:40:22 +02:00
|
|
|
};
|
|
|
|
|
2019-09-07 16:58:37 +02:00
|
|
|
inline QDebug&
|
|
|
|
operator<<( QDebug& s, const LocaleConfiguration& l )
|
2019-01-08 13:40:20 +01:00
|
|
|
{
|
2019-01-08 18:09:34 +01:00
|
|
|
return s << l.language() << '(' << l.toBcp47() << ") +" << l.lc_numeric;
|
2019-01-08 13:40:20 +01:00
|
|
|
}
|
|
|
|
|
2019-09-07 16:58:37 +02:00
|
|
|
#endif // LOCALECONFIGURATION_H
|