dialog_input_flags_t
The available input flags for prompt dialogs.
Synopsis:
#include <bps/dialog.h>
typedef enum {
DIALOG_INPUT_NONE = 0
DIALOG_INPUT_AUTO_CAPITALIZE = 1
DIALOG_INPUT_AUTO_CORRECT = 1 << 1
DIALOG_INPUT_SPELL_CHECK = 1 << 2
} dialog_input_flags_t;
Data:
- DIALOG_INPUT_NONE
- Specify that input will not be changed.
- DIALOG_INPUT_AUTO_CAPITALIZE
- Specify that input will be capitalized automatically.
- DIALOG_INPUT_AUTO_CORRECT
- Specify that input will be corrected automatically.
- DIALOG_INPUT_SPELL_CHECK
- Specify that input will be checked for spelling errors.
Library:
libbpsDescription:
This enumeration defines the available options on input fields for prompt dialogs. These values may be combined through a bitwise-OR operation to enable multiple input options.