Mercurial > minori
view include/gui/locale.h @ 291:9a88e1725fd2
*: refactor lots of stuff
I forgot to put this into different commits, oops!
anyway, it doesn't really matter *that* much since this is an
unfinished hobby project anyway. once it starts getting stable
commit history will be more important, but for now it's not
that big of a deal
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Sun, 12 May 2024 16:31:07 -0400 |
parents | 3ec7804abf17 |
children | b1f625b0227c |
line wrap: on
line source
#ifndef MINORI_GUI_LOCALE_H_ #define MINORI_GUI_LOCALE_H_ #include <QLocale> #include <QTranslator> #include <memory> #include <string> #include <vector> namespace Locale { std::string GetLocaleFullName(const QLocale& locale); class Locale { public: Locale(); Locale(const std::string& name); QLocale GetLocale() const; std::vector<QLocale> GetAvailableLocales() const; void RefreshAvailableLocales(); // why would this ever be called? bool IsLocaleAvailable(const QLocale& locale) const; bool SetActiveLocale(const QLocale& locale); private: bool SwitchTranslator(QTranslator& translator, const QString& name); QTranslator _translator; QTranslator _translator_qt; QLocale _locale; std::vector<QLocale> _available_translations = {}; }; } // namespace Locale #endif // MINORI_GUI_LOCALE_H_