shift-shell/kcms/time/timezonesi18n.h
Devin Lin e147f98aea kcms: Move KCMs from plasma-settings
Having the KCMs that are mobile specific here makes more sense than in the settings application. Historically plasma-settings had a faster release cycle than Plasma, but the application is now moving to the Plasma release schedule and so it makes sense do this now.
2023-03-13 18:45:47 -07:00

34 lines
798 B
C++

/*
SPDX-FileCopyrightText: 2014 Martin Klapetek <mklapetek@kde.org>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#ifndef TIMEZONESI18N_H
#define TIMEZONESI18N_H
#include <QHash>
#include <QLocale>
#include <QObject>
class TimezonesI18n : public QObject
{
Q_OBJECT
public:
explicit TimezonesI18n(QObject *parent = nullptr);
Q_INVOKABLE QString i18nCity(const QString &city);
Q_INVOKABLE QString i18nContinents(const QString &continent);
Q_INVOKABLE QString i18nCountry(QLocale::Country country);
private:
void init();
QHash<QString, QString> m_i18nCities;
QHash<QString, QString> m_i18nContinents;
QHash<QLocale::Country, QString> m_i18nCountries;
bool m_isInitialized;
};
#endif // TIMEZONESI18N_H