1
Graphique / Re: sf::Text en utf-8
« le: Février 21, 2021, 12:11:12 pm »
Merci Laurent, du coup j'ai tout modifié pour le mettre en wstring
Si quelqu'un passe par là et le même problème
if (event.type == sf::Event::TextEntered)
ma_fonction(static_cast<wchar_t>(event.text.unicode));
ma_fonction(static_cast<wchar_t>(event.text.unicode));
std::wstring ajout(std::wstring aba, wchar_t x, int position)
{
std::wstring real = L"";
for (int i = 0; i < aba.size(); i++)
{
if (position == i)
{
real += x;
}
real += aba[i];
}
std::cout << tailleLargeur << std::endl;
return real;
}
{
std::wstring real = L"";
for (int i = 0; i < aba.size(); i++)
{
if (position == i)
{
real += x;
}
real += aba[i];
}
std::cout << tailleLargeur << std::endl;
return real;
}
std::wstring ChangeText::valeur()
{
std::wstring aba;
for (auto i : textstr)
{
aba.insert(aba.end(), i.begin(), i.end());
aba += L"\n";
}
changement = false;
return aba;
}
{
std::wstring aba;
for (auto i : textstr)
{
aba.insert(aba.end(), i.begin(), i.end());
aba += L"\n";
}
changement = false;
return aba;
}
Si quelqu'un passe par là et le même problème