]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/input_validators.h
Consistent header blurbs.
[lyx.git] / src / frontends / xforms / input_validators.h
1 // -*- C++ -*-
2 /**
3  * \file input_validators.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Allan Rae
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 /* Input validators and filters for xforms.
13  * A collection of input filtering and validating functions for use in
14  * XForms dialogs.  Mainly meant for filtering input boxes although may
15  * be extended to include other generally useful xforms-specific tools.
16  */
17
18 #ifndef INPUT_VALIDATORS_H
19 #define INPUT_VALIDATORS_H
20
21
22 #if defined(__cplusplus)
23 extern "C"
24 {
25 #endif
26
27     /** Only allow integer numbers,
28         possibly preceeded by a +' or '-' sign */
29 int fl_int_filter(FL_OBJECT *, char const *, char const *, int);
30     /** Only allow integer numbers. No '+' or '-' signs. */
31 int fl_unsigned_int_filter(FL_OBJECT *, char const *, char const *, int);
32     /** Only allow floating point numbers,
33         possibly preceeded by a +' or '-' sign */
34 int fl_float_filter(FL_OBJECT *, char const *, char const *, int);
35     /** Only allow floating point numbers. No '+' or '-' signs. */
36 int fl_unsigned_float_filter(FL_OBJECT *, char const *, char const *, int);
37
38     /** Only allow lowercase letters. */
39 int fl_lowercase_filter(FL_OBJECT *, char const *, char const *, int);
40
41 #if defined(__cplusplus)
42 }
43 #endif
44
45 #endif