]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/input_validators.C
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / input_validators.C
index 634f84c72bcd20a352b1e8467beb6059b7b74939..c4e3389f0b61c0d4a5b6249885d64344330478f6 100644 (file)
@@ -1,15 +1,23 @@
-/* input_validators.C
- * A collection of input filtering and validating functions for use in
- * XForms dialogs.  Mainly meant for filtering input boxes although may
- * be extended to include other generally useful xforms-specific tools.
+/**
+ * \file input_validators.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Allan Rae
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
+#include "input_validators.h"
 
-#include FORMS_H_LOCATION
 #include "support/lstrings.h"
-#include "input_validators.h"
+
+#include "lyx_forms.h"
+
+namespace support = lyx::support;
+
 
 #if defined(__cplusplus)
 extern "C"
@@ -21,7 +29,7 @@ int fl_int_filter(FL_OBJECT * ob,
 {
        if (c == 0 /* final test before handing contents to app */
            || strchr("0123456789+-", c)) {
-               if (isStrInt(fl_get_input(ob)))
+               if (support::isStrInt(fl_get_input(ob)))
                        return FL_VALID;
        }
        return FL_INVALID|FL_RINGBELL;
@@ -45,7 +53,7 @@ int fl_float_filter(FL_OBJECT * ob,
 {
        if (c == 0 /* final test before handing contents to app */
            || strchr("0123456789.+-", c)) {
-               if (isStrDbl(fl_get_input(ob)))
+               if (support::isStrDbl(fl_get_input(ob)))
                        return FL_VALID;
        }
        return FL_INVALID|FL_RINGBELL;
@@ -59,7 +67,7 @@ int fl_unsigned_float_filter(FL_OBJECT * ob,
 {
        if (c == 0 /* final test before handing contents to app */
            || strchr("0123456789.", c)) {
-               if (isStrDbl(fl_get_input(ob)))
+               if (support::isStrDbl(fl_get_input(ob)))
                        return FL_VALID;
        }
        return FL_INVALID|FL_RINGBELL;