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>
|
2018-06-15 11:59:11 +02:00
|
|
|
* Copyright 2017-2018, 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
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QMap>
|
|
|
|
|
|
|
|
class LocaleConfiguration
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit LocaleConfiguration();
|
|
|
|
|
|
|
|
static LocaleConfiguration createDefault();
|
|
|
|
static LocaleConfiguration fromLanguageAndLocation( const QString& language,
|
|
|
|
const QStringList& availableLocales,
|
|
|
|
const QString& countryCode );
|
|
|
|
|
2017-08-08 14:59:44 +02:00
|
|
|
bool isEmpty() const;
|
2016-08-10 11:40:22 +02:00
|
|
|
|
2018-04-03 18:10:05 +02:00
|
|
|
QMap< QString, QString > toMap() const;
|
|
|
|
// Note that the documentation how this works is in packages.conf
|
|
|
|
QString toBcp47() const;
|
|
|
|
|
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.
|
|
|
|
QString lang, 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:
|
|
|
|
QString myLanguageLocaleBcp47;
|
2016-08-10 11:40:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LOCALECONFIGURATION_H
|