I am accepting input for the full name of the user using QLineEdit
, and I want to accept
all international characters
such as "é" in French or "æ", "ø", and "å" in Norwegian, while at the same time using QRegularExpressionValidator
to ensure the name is in fact a valid name (no non-letter characters).
So the question is, do I have to list all such accented characters exhaustively, or is there some kind of "word class" that can be used, that allows me to trust Qt to provide an updated list for me?
What would be the best approach?