]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/input_validators.h
Introduce LFUN_PRINT.
[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 #include "forms_fwd.h"
22
23 #if defined(__cplusplus)
24 extern "C"
25 {
26 #endif
27
28     /** Only allow integer numbers,
29         possibly preceeded by a +' or '-' sign */
30 int fl_int_filter(FL_OBJECT *, char const *, char const *, int);
31     /** Only allow integer numbers. No '+' or '-' signs. */
32 int fl_unsigned_int_filter(FL_OBJECT *, char const *, char const *, int);
33     /** Only allow floating point numbers,
34         possibly preceeded by a +' or '-' sign */
35 int fl_float_filter(FL_OBJECT *, char const *, char const *, int);
36     /** Only allow floating point numbers. No '+' or '-' signs. */
37 int fl_unsigned_float_filter(FL_OBJECT *, char const *, char const *, int);
38
39     /** Only allow lowercase letters. */
40 int fl_lowercase_filter(FL_OBJECT *, char const *, char const *, int);
41
42 #if defined(__cplusplus)
43 }
44 #endif
45
46 #endif