/**
******************************************************************************
* This file is part of the TouchGFX 4.16.1 distribution.
*
*
© Copyright (c) 2021 STMicroelectronics.
* All rights reserved.
*
* This software component is licensed by ST under Ultimate Liberty license
* SLA0044, the "License"; You may not use this file except in compliance with
* the License. You may obtain a copy of the License at:
* www.st.com/SLA0044
*
******************************************************************************
*/
/**
* @file touchgfx/Texts.hpp
*
* Declares the touchgfx::Texts class.
*/
#ifndef TEXTS_HPP
#define TEXTS_HPP
#include
namespace touchgfx
{
/** Language IDs generated by the text converter are uint16_t typedef'ed. */
typedef uint16_t LanguageId;
/**
* Class for setting language and getting texts. The language set will determine which texts
* will be used in the application.
*/
class Texts
{
public:
/**
* Sets the current language for texts.
*
* @param id The id of the language.
*/
static void setLanguage(LanguageId id);
/**
* Gets the current language.
*
* @return The id of the language.
*/
static LanguageId getLanguage()
{
return currentLanguage;
}
/**
* Get text in the set language.
*
* @param id The id of the text to lookup.
*
* @return The text.
*
* @see setLanguage
*/
const Unicode::UnicodeChar* getText(TypedTextId id) const;
/**
* Adds or replaces a translation. This function allows an application to add a
* translation at runtime.
*
* @param id The id of the language to add or replace.
* @param translation A pointer to the translation in flash or RAM.
*/
static void setTranslation(LanguageId id, const void* translation);
private:
static LanguageId currentLanguage;
};
} // namespace touchgfx
#endif // TEXTS_HPP