Copyright 2018-2019,2020 Thomas E. Dickey *
Copyright 1998-2010,2017 Free Software Foundation, Inc. *
*
Permission is hereby granted, free of charge, to any person obtaining a *
copy of this software and associated documentation files (the *
"Software"), to deal in the Software without restriction, including *
without limitation the rights to use, copy, modify, merge, publish, *
distribute, distribute with modifications, sublicense, and/or sell *
copies of the Software, and to permit persons to whom the Software is *
furnished to do so, subject to the following conditions: *
*
The above copyright notice and this permission notice shall be included *
in all copies or substantial portions of the Software. *
*
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
*
Except as contained in this notice, the name(s) of the above copyright *
holders shall not be used in advertising or otherwise to promote the *
sale, use or other dealings in this Software without prior written *
authorization. *
***************************************************************************
$Id: form_field_validation.3x,v 1.33 2020/12/12 19:57:55 tom Exp $
FIELDTYPE *field_type(const FIELD *field);
int set_field_type(FIELD *field, FIELDTYPE *type, ...); /* predefined field types */
FIELDTYPE *TYPE_ALNUM;
FIELDTYPE *TYPE_ALPHA;
FIELDTYPE *TYPE_ENUM;
FIELDTYPE *TYPE_INTEGER;
FIELDTYPE *TYPE_NUMERIC;
FIELDTYPE *TYPE_REGEXP;
FIELDTYPE *TYPE_IPV4;
Several field types are predefined by the form library.
It is possible to set up new programmer-defined field types. Field types are implemented via the FIELDTYPE data structure, which contains several pointers to functions.
See the form_fieldtype(3X) manual page, which describes functions which can be used to construct a field-type dynamically.
The predefined types are as follows:
5 TYPE_ALNUM Alphanumeric data. Required parameter:
.bP a third int argument, a minimum field width.
5 TYPE_ALPHA Character data. Required parameter:
.bP a third int argument, a minimum field width.
5 TYPE_ENUM Accept one of a specified set of strings. Required parameters:
.bP a third (char **) argument pointing to a string list; .bP a fourth int flag argument to enable case-sensitivity; .bP a fifth int flag argument specifying whether a partial match must be a unique one. If this flag is off, a prefix matches the first of any set of more than one list elements with that prefix.
5 TYPE_INTEGER Integer data, parsable to an integer by atoi(3). Required parameters:
.bP a third int argument controlling the precision, .bP a fourth long argument constraining minimum value, .bP a fifth long constraining maximum value. If the maximum value is less than or equal to the minimum value, the range is simply ignored.
5 TYPE_NUMERIC Numeric data (may have a decimal-point part). Required parameters:
.bP a third int argument controlling the precision, .bP a fourth double argument constraining minimum value, .bP and a fifth double constraining maximum value. If your system supports locales, the decimal point character must be the one specified by your locale. If the maximum value is less than or equal to the minimum value, the range is simply ignored.
5 TYPE_REGEXP Regular expression data. Required parameter:
.bP a third argument, a regular expression (char *) string. The data is valid if the regular expression matches it.
5 TYPE_IPV4 An Internet Protocol Version 4 address. Required parameter:
.bP none
5 E_OK The routine succeeded.
5 E_SYSTEM_ERROR System error occurred (see errno(3)).