1180b5831d
locale.h seems reserved in newer GCC
583 lines
14 KiB
C++
583 lines
14 KiB
C++
/* This file is part of the KDE libraries
|
|
Copyright (C) 2012 Giorgos Tsiapaliwkas <terietor@gmail.com>
|
|
Copyright (C) 2012 Antonis Tsiapaliokas <kok3rs@gmail.com>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
//own
|
|
#include "locale_p.h"
|
|
|
|
//KDE
|
|
#include <KGlobal>
|
|
|
|
Locale::Locale(QObject* parent)
|
|
: QObject(parent)
|
|
{
|
|
m_locale = KGlobal::locale();
|
|
}
|
|
|
|
bool Locale::setCountryDivisionCode(const QString &countryDivisionCode)
|
|
{
|
|
bool ok = m_locale->setCountryDivisionCode(countryDivisionCode);
|
|
emit countryDivisionCodeChanged();
|
|
return ok;
|
|
}
|
|
|
|
void Locale::setCurrencyCode(const QString &newCurrencyCode)
|
|
{
|
|
m_locale->setCurrencyCode(newCurrencyCode);
|
|
emit currencyCodeChanged();
|
|
}
|
|
|
|
bool Locale::isApplicationTranslatedInto(const QString &lang)
|
|
{
|
|
return m_locale->isApplicationTranslatedInto(lang);
|
|
}
|
|
|
|
void Locale::splitLocale(const QString &locale, QString &language, QString &country, QString &modifier,
|
|
QString &charset)
|
|
{
|
|
Locale::splitLocale(locale, language, country, modifier, charset);
|
|
}
|
|
|
|
QString Locale::language() const
|
|
{
|
|
return m_locale->language();
|
|
}
|
|
|
|
QString Locale::country() const
|
|
{
|
|
return m_locale->country();
|
|
}
|
|
|
|
QString Locale::countryDivisionCode() const
|
|
{
|
|
return m_locale->countryDivisionCode();
|
|
}
|
|
|
|
QString Locale::currencyCode() const
|
|
{
|
|
return m_locale->currencyCode();
|
|
}
|
|
|
|
QString Locale::translateQt(const char *context, const char *sourceText, const char *comment) const
|
|
{
|
|
return m_locale->translateQt(context, sourceText, comment);
|
|
}
|
|
|
|
QList<int> Locale::allDigitSetsList() const
|
|
{
|
|
QList<int> digitList;
|
|
|
|
foreach(KLocale::DigitSet digit, m_locale->allDigitSetsList()) {
|
|
digitList.append((int)digit);
|
|
}
|
|
|
|
return digitList;
|
|
}
|
|
|
|
QString Locale::digitSetToName(Locale::DigitSet digitSet, bool withDigits) const
|
|
{
|
|
return m_locale->digitSetToName((KLocale::DigitSet)digitSet, withDigits);
|
|
}
|
|
|
|
QString Locale::convertDigits(const QString &str, DigitSet digitSet, bool ignoreContext) const
|
|
{
|
|
return m_locale->convertDigits(str, (KLocale::DigitSet)digitSet, ignoreContext);
|
|
}
|
|
|
|
bool Locale::dateMonthNamePossessive() const
|
|
{
|
|
return m_locale->dateMonthNamePossessive();
|
|
}
|
|
|
|
int Locale::weekStartDay() const
|
|
{
|
|
return m_locale->weekStartDay();
|
|
}
|
|
|
|
int Locale::workingWeekStartDay() const
|
|
{
|
|
return m_locale->workingWeekStartDay();
|
|
}
|
|
|
|
int Locale::workingWeekEndDay() const
|
|
{
|
|
return m_locale->workingWeekEndDay();
|
|
}
|
|
|
|
int Locale::weekDayOfPray() const
|
|
{
|
|
return m_locale->weekDayOfPray();
|
|
}
|
|
|
|
int Locale::decimalPlaces() const
|
|
{
|
|
return m_locale->decimalPlaces();
|
|
}
|
|
|
|
QString Locale::decimalSymbol() const
|
|
{
|
|
return m_locale->decimalSymbol();
|
|
}
|
|
|
|
QString Locale::thousandsSeparator() const
|
|
{
|
|
return m_locale->thousandsSeparator();
|
|
}
|
|
|
|
QString Locale::currencySymbol() const
|
|
{
|
|
return m_locale->currencySymbol();
|
|
}
|
|
|
|
QString Locale::monetaryDecimalSymbol() const
|
|
{
|
|
return m_locale->monetaryDecimalSymbol();
|
|
}
|
|
|
|
QString Locale::monetaryThousandsSeparator() const
|
|
{
|
|
return m_locale->monetaryThousandsSeparator();
|
|
}
|
|
|
|
QString Locale::positiveSign() const
|
|
{
|
|
return m_locale->positiveSign();
|
|
}
|
|
|
|
QString Locale::negativeSign() const
|
|
{
|
|
return m_locale->negativeSign();
|
|
}
|
|
|
|
int Locale::monetaryDecimalPlaces() const
|
|
{
|
|
return m_locale->monetaryDecimalPlaces();
|
|
}
|
|
|
|
bool Locale::positivePrefixCurrencySymbol() const
|
|
{
|
|
return m_locale->positivePrefixCurrencySymbol();
|
|
}
|
|
|
|
bool Locale::negativePrefixCurrencySymbol() const
|
|
{
|
|
return m_locale->negativePrefixCurrencySymbol();
|
|
}
|
|
|
|
Locale::SignPosition Locale::positiveMonetarySignPosition() const
|
|
{
|
|
return (Locale::SignPosition)m_locale->positiveMonetarySignPosition();
|
|
}
|
|
|
|
Locale::SignPosition Locale::negativeMonetarySignPosition() const
|
|
{
|
|
return (Locale::SignPosition)m_locale->negativeMonetarySignPosition();
|
|
}
|
|
|
|
QString Locale::formatMoney(double num, const QString &symbol, int precision) const
|
|
{
|
|
return m_locale->formatMoney(num, symbol, precision);
|
|
}
|
|
|
|
QString Locale::formatLong(long num) const
|
|
{
|
|
return m_locale->formatLong(num);
|
|
}
|
|
|
|
QString Locale::formatNumber(const QString &numStr, bool round, int precision) const
|
|
{
|
|
return m_locale->formatNumber(numStr, round, precision);
|
|
}
|
|
|
|
QString Locale::formatByteSize(double size, int precision, Locale::BinaryUnitDialect dialect,
|
|
Locale::BinarySizeUnits specificUnit) const
|
|
{
|
|
return m_locale->formatByteSize(size, precision, (KLocale::BinaryUnitDialect)dialect, (KLocale::BinarySizeUnits)specificUnit);
|
|
}
|
|
|
|
QString Locale::formatByteSize(double size) const
|
|
{
|
|
return m_locale->formatByteSize(size);
|
|
}
|
|
|
|
Locale::BinaryUnitDialect Locale::binaryUnitDialect() const
|
|
{
|
|
return (Locale::BinaryUnitDialect)m_locale->binaryUnitDialect();
|
|
}
|
|
|
|
void Locale::setBinaryUnitDialect(Locale::BinaryUnitDialect newDialect)
|
|
{
|
|
m_locale->setBinaryUnitDialect((KLocale::BinaryUnitDialect)newDialect);
|
|
emit binaryUnitDialectChanged();
|
|
}
|
|
|
|
QString Locale::formatDuration(unsigned long mSec) const
|
|
{
|
|
return m_locale->formatDuration(mSec);
|
|
}
|
|
|
|
QString Locale::prettyFormatDuration(unsigned long mSec) const
|
|
{
|
|
return m_locale->prettyFormatDuration(mSec);
|
|
}
|
|
|
|
QString Locale::formatDate(const QDate &date, Locale::DateFormat format) const
|
|
{
|
|
return m_locale->formatDate(date, (KLocale::DateFormat)format);
|
|
}
|
|
|
|
double Locale::readNumber(const QString &_str) const
|
|
{
|
|
bool ok;
|
|
return m_locale->readNumber(_str, &ok);
|
|
}
|
|
|
|
double Locale::readMoney(const QString &_str) const
|
|
{
|
|
bool ok;
|
|
return m_locale->readMoney(_str, &ok);
|
|
}
|
|
|
|
QDate Locale::readDate(const QString &intstr, ReadDateFlags flags) const
|
|
{
|
|
bool ok;
|
|
return m_locale->readDate(intstr, (KLocale::ReadDateFlags)flags, &ok);
|
|
}
|
|
|
|
QTime Locale::readTime(const QString &intstr) const
|
|
{
|
|
bool ok;
|
|
return m_locale->readTime(intstr, &ok);
|
|
}
|
|
|
|
QTime Locale::readLocaleTime(const QString &intstr, TimeFormatOptions options,
|
|
TimeProcessingOptions processing) const
|
|
{
|
|
bool ok;
|
|
return m_locale->readLocaleTime(intstr, &ok, (KLocale::TimeFormatOptions)(int)options, (KLocale::TimeProcessingOptions)(int)processing);
|
|
}
|
|
|
|
QString Locale::formatLocaleTime(const QTime &time, TimeFormatOptions options) const
|
|
{
|
|
return m_locale->formatLocaleTime(time, (KLocale::TimeFormatOptions)(int)options);
|
|
}
|
|
|
|
bool Locale::use12Clock() const
|
|
{
|
|
return m_locale->use12Clock();
|
|
}
|
|
|
|
QString Locale::dayPeriodText(const QTime &time, DateTimeComponentFormat format) const
|
|
{
|
|
return m_locale->dayPeriodText(time, (KLocale::DateTimeComponentFormat)format);
|
|
}
|
|
|
|
QStringList Locale::languageList() const
|
|
{
|
|
return m_locale->languageList();
|
|
}
|
|
|
|
QStringList Locale::currencyCodeList() const
|
|
{
|
|
return m_locale->currencyCodeList();
|
|
}
|
|
|
|
QString Locale::formatDateTime(const QDateTime &dateTime, Locale::DateFormat format, DateTimeFormatOptions options) const
|
|
{
|
|
return m_locale->formatDateTime(dateTime, (KLocale::DateFormat)format, (KLocale::DateTimeFormatOptions)(int)options);
|
|
}
|
|
|
|
void Locale::setDateFormat(const QString &format)
|
|
{
|
|
m_locale->setDateFormat(format);
|
|
emit dateFormatChanged();
|
|
}
|
|
|
|
void Locale::setDateFormatShort(const QString &format)
|
|
{
|
|
m_locale->setDateFormatShort(format);
|
|
emit dateFormatShortChanged();
|
|
}
|
|
|
|
void Locale::setDateMonthNamePossessive(bool possessive)
|
|
{
|
|
m_locale->setDateMonthNamePossessive(possessive);
|
|
emit dateMonthNamePossessiveChanged();
|
|
}
|
|
|
|
void Locale::setTimeFormat(const QString &format)
|
|
{
|
|
m_locale->setTimeFormat(format);
|
|
emit timeFormatChanged();
|
|
}
|
|
|
|
void Locale::setWeekStartDay(int day)
|
|
{
|
|
m_locale->setWeekStartDay(day);
|
|
emit weekStartDayChanged();
|
|
}
|
|
|
|
void Locale::setWorkingWeekStartDay(int day)
|
|
{
|
|
m_locale->setWorkingWeekStartDay(day);
|
|
emit workingWeekStartDayChanged();
|
|
}
|
|
|
|
void Locale::setWorkingWeekEndDay(int day)
|
|
{
|
|
m_locale->setWorkingWeekEndDay(day);
|
|
emit workingWeekEndDayChanged();
|
|
}
|
|
|
|
void Locale::setWeekDayOfPray(int day)
|
|
{
|
|
m_locale->setWeekDayOfPray(day);
|
|
emit weekDayOfPrayChanged();
|
|
}
|
|
|
|
QString Locale::dateFormat() const
|
|
{
|
|
return m_locale->dateFormat();
|
|
}
|
|
|
|
QString Locale::dateFormatShort() const
|
|
{
|
|
return m_locale->dateFormatShort();
|
|
}
|
|
|
|
QString Locale::timeFormat() const
|
|
{
|
|
return m_locale->timeFormat();
|
|
}
|
|
|
|
void Locale::setDecimalPlaces(int digits)
|
|
{
|
|
m_locale->setDecimalPlaces(digits);
|
|
emit decimalPlacesChanged();
|
|
}
|
|
|
|
void Locale::setDecimalSymbol(const QString &symbol)
|
|
{
|
|
m_locale->setDecimalSymbol(symbol);
|
|
emit decimalSymbolChanged();
|
|
}
|
|
|
|
void Locale::setThousandsSeparator(const QString &separator)
|
|
{
|
|
m_locale->setThousandsSeparator(separator);
|
|
emit thousandsSeparatorChanged();
|
|
}
|
|
|
|
void Locale::setPositiveSign(const QString &sign)
|
|
{
|
|
m_locale->setPositiveSign(sign);
|
|
emit positiveSignChanged();
|
|
}
|
|
|
|
void Locale::setNegativeSign(const QString &sign)
|
|
{
|
|
m_locale->setNegativeSign(sign);
|
|
emit negativeSignChanged();
|
|
}
|
|
|
|
void Locale::setPositiveMonetarySignPosition(Locale::SignPosition signpos)
|
|
{
|
|
m_locale->setPositiveMonetarySignPosition((KLocale::SignPosition)signpos);
|
|
emit positiveMonetarySignPositionChanged();
|
|
}
|
|
|
|
void Locale::setNegativeMonetarySignPosition(Locale::SignPosition signpos)
|
|
{
|
|
m_locale->setNegativeMonetarySignPosition((KLocale::SignPosition)signpos);
|
|
emit negativeMonetarySignPositionChanged();
|
|
}
|
|
|
|
void Locale::setPositivePrefixCurrencySymbol(bool prefix)
|
|
{
|
|
m_locale->setPositivePrefixCurrencySymbol(prefix);
|
|
emit positivePrefixCurrencySymbolChanged();
|
|
}
|
|
|
|
void Locale::setNegativePrefixCurrencySymbol(bool prefix)
|
|
{
|
|
m_locale->setNegativePrefixCurrencySymbol(prefix);
|
|
emit negativePrefixCurrencySymbolChanged();
|
|
}
|
|
|
|
void Locale::setMonetaryDecimalPlaces(int digits)
|
|
{
|
|
m_locale->setMonetaryDecimalPlaces(digits);
|
|
emit monetaryDecimalPlacesChanged();
|
|
}
|
|
|
|
void Locale::setMonetaryThousandsSeparator(const QString &separator)
|
|
{
|
|
m_locale->setMonetaryThousandsSeparator(separator);
|
|
emit monetaryThousandsSeparatorChanged();
|
|
}
|
|
|
|
void Locale::setMonetaryDecimalSymbol(const QString &symbol)
|
|
{
|
|
m_locale->setMonetaryDecimalSymbol(symbol);
|
|
emit monetaryDecimalSymbolChanged();
|
|
}
|
|
|
|
void Locale::setCurrencySymbol(const QString & symbol)
|
|
{
|
|
m_locale->setCurrencySymbol(symbol);
|
|
emit currencySymbolChanged();
|
|
}
|
|
|
|
int Locale::pageSize() const
|
|
{
|
|
return m_locale->pageSize();
|
|
}
|
|
|
|
void Locale::setPageSize(int size)
|
|
{
|
|
m_locale->setPageSize(size);
|
|
emit pageSizeChanged();
|
|
}
|
|
|
|
Locale::MeasureSystem Locale::measureSystem() const
|
|
{
|
|
return (Locale::MeasureSystem)m_locale->measureSystem();
|
|
}
|
|
|
|
void Locale::setMeasureSystem(Locale::MeasureSystem value)
|
|
{
|
|
m_locale->setMeasureSystem((KLocale::MeasureSystem)value);
|
|
emit measureSystemChanged();
|
|
}
|
|
|
|
QString Locale::defaultLanguage()
|
|
{
|
|
return KLocale::defaultLanguage();
|
|
}
|
|
|
|
QString Locale::defaultCountry()
|
|
{
|
|
return KLocale::defaultCountry();
|
|
}
|
|
|
|
QString Locale::defaultCurrencyCode()
|
|
{
|
|
return KLocale::defaultCurrencyCode();
|
|
}
|
|
|
|
bool Locale::useTranscript() const
|
|
{
|
|
return m_locale->useTranscript();
|
|
}
|
|
|
|
int Locale::fileEncodingMib() const
|
|
{
|
|
return m_locale->fileEncodingMib();
|
|
}
|
|
|
|
QStringList Locale::allLanguagesList() const
|
|
{
|
|
return m_locale->allLanguagesList();
|
|
}
|
|
|
|
QStringList Locale::installedLanguages() const
|
|
{
|
|
return m_locale->installedLanguages();
|
|
}
|
|
|
|
QString Locale::languageCodeToName(const QString &language) const
|
|
{
|
|
return m_locale->languageCodeToName(language);
|
|
}
|
|
|
|
QStringList Locale::allCountriesList() const
|
|
{
|
|
return m_locale->allCountriesList();
|
|
}
|
|
|
|
QString Locale::countryCodeToName(const QString &country) const
|
|
{
|
|
return m_locale->countryCodeToName(country);
|
|
}
|
|
|
|
void Locale::setCalendarSystem(Locale::CalendarSystem calendarSystem)
|
|
{
|
|
m_locale->setCalendarSystem((KLocale::CalendarSystem)calendarSystem);
|
|
emit calendarSystemChanged();
|
|
}
|
|
|
|
Locale::CalendarSystem Locale::calendarSystem() const
|
|
{
|
|
return (Locale::CalendarSystem)m_locale->calendarSystem();
|
|
}
|
|
|
|
void Locale::setWeekNumberSystem(Locale::WeekNumberSystem weekNumberSystem)
|
|
{
|
|
m_locale->setWeekNumberSystem((KLocale::WeekNumberSystem)weekNumberSystem);
|
|
emit WeekNumberSystemChanged();
|
|
}
|
|
|
|
Locale::WeekNumberSystem Locale::weekNumberSystem() const
|
|
{
|
|
return (Locale::WeekNumberSystem)m_locale->weekNumberSystem();
|
|
}
|
|
|
|
QString Locale::removeAcceleratorMarker(const QString &label) const
|
|
{
|
|
return m_locale->removeAcceleratorMarker(label);
|
|
}
|
|
|
|
void Locale::setDigitSet(Locale::DigitSet digitSet)
|
|
{
|
|
m_locale->setDigitSet((KLocale::DigitSet)digitSet);
|
|
emit digitSetChanged();
|
|
}
|
|
|
|
Locale::DigitSet Locale::digitSet() const
|
|
{
|
|
return (Locale::DigitSet)m_locale->digitSet();
|
|
}
|
|
|
|
void Locale::setMonetaryDigitSet(Locale::DigitSet digitSet)
|
|
{
|
|
m_locale->setMonetaryDigitSet((KLocale::DigitSet)digitSet);
|
|
emit monetaryDigitSetChanged();
|
|
}
|
|
|
|
Locale::DigitSet Locale::monetaryDigitSet() const
|
|
{
|
|
return (Locale::DigitSet)m_locale->monetaryDigitSet();
|
|
}
|
|
|
|
void Locale::setDateTimeDigitSet(Locale::DigitSet digitSet)
|
|
{
|
|
m_locale->setDateTimeDigitSet((KLocale::DigitSet)digitSet);
|
|
emit dateTimeDigitSetChanged();
|
|
}
|
|
|
|
Locale::DigitSet Locale::dateTimeDigitSet() const
|
|
{
|
|
return (Locale::DigitSet)m_locale->dateTimeDigitSet();
|
|
}
|
|
|
|
void Locale::reparseConfiguration()
|
|
{
|
|
m_locale->reparseConfiguration();
|
|
}
|