An input filter for a TextEditor that limits the length of text and/or the characters that it may contain.
More...
#include <juce_TextEditor.h>
An input filter for a TextEditor that limits the length of text and/or the characters that it may contain.
◆ LengthAndCharacterRestriction()
TextEditor::LengthAndCharacterRestriction::LengthAndCharacterRestriction |
( |
int |
maxNumChars, |
|
|
const String & |
allowedCharacters |
|
) |
| |
Creates a filter that limits the length of text, and/or the characters that it can contain.
- Parameters
-
maxNumChars | if this is > 0, it sets a maximum length limit; if <= 0, no limit is set |
allowedCharacters | if this is non-empty, then only characters that occur in this string are allowed to be entered into the editor. |
◆ filterNewText()
This method is called whenever text is entered into the editor.
An implementation of this class should should check the input string, and return an edited version of it that should be used.
Implements TextEditor::InputFilter.
◆ allowedCharacters
String TextEditor::LengthAndCharacterRestriction::allowedCharacters |
|
private |
◆ maxLength
int TextEditor::LengthAndCharacterRestriction::maxLength |
|
private |
The documentation for this class was generated from the following file: