summaryrefslogtreecommitdiff
path: root/iup/srccontrols/iup_oldmask.c
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2009-11-04 11:56:41 -0800
committerPixel <pixel@nobis-crew.org>2009-11-04 11:59:33 -0800
commitd577d991b97ae2b5ee1af23641bcffc3f83af5b2 (patch)
tree590639d50205d1bcfaff2a7d2dc6ebf3f373c7ed /iup/srccontrols/iup_oldmask.c
Initial import. Contains the im, cd and iup librairies, and a "working" Makefile for them under linux.
Diffstat (limited to 'iup/srccontrols/iup_oldmask.c')
-rwxr-xr-xiup/srccontrols/iup_oldmask.c208
1 files changed, 208 insertions, 0 deletions
diff --git a/iup/srccontrols/iup_oldmask.c b/iup/srccontrols/iup_oldmask.c
new file mode 100755
index 0000000..fec10f3
--- /dev/null
+++ b/iup/srccontrols/iup_oldmask.c
@@ -0,0 +1,208 @@
+/** \file
+ * \brief OLD mask pattern matching
+ *
+ * See Copyright Notice in "iup.h"
+ */
+
+#include <stdlib.h>
+#include <stdio.h>
+
+#include "iup.h"
+#include "iupcontrols.h"
+#include "iupmask.h"
+
+#include "iup_mask.h"
+#include "iup_str.h"
+
+
+void iupmaskRemove(Ihandle *ih)
+{
+ IupSetAttribute(ih,"MASK", NULL);
+}
+
+void iupmaskMatRemove(Ihandle *ih, int lin, int col)
+{
+ IupMatSetAttribute(ih,"MASK", lin, col, NULL);
+}
+
+int iupmaskSetInt(Ihandle *ih, int autofill, int min, int max)
+{
+ (void)autofill;
+ IupSetfAttribute(ih,"MASKINT", "%d:%d", min, max);
+ return 1;
+}
+
+int iupmaskMatSetInt(Ihandle *ih, int autofill, int min, int max, int lin, int col)
+{
+ (void)autofill;
+ IupMatSetfAttribute(ih,"MASKINT", lin, col, "%d:%d", min, max);
+ return 1;
+}
+
+int iupmaskSetFloat(Ihandle* ih, int autofill, float min, float max)
+{
+ (void)autofill;
+ IupSetfAttribute(ih,"MASKFLOAT", "%f:%f", min, max);
+ return 1;
+}
+
+int iupmaskMatSetFloat(Ihandle* ih, int autofill, float min, float max, int lin, int col)
+{
+ (void)autofill;
+ IupMatSetfAttribute(ih,"MASKFLOAT", lin, col, "%f:%f", min, max);
+ return 0;
+}
+
+int iupmaskSet(Ihandle* ih, const char* mask_str, int autofill, int casei)
+{
+ (void)autofill;
+ IupSetAttribute(ih,"MASKCASEI", casei?"YES":"NO");
+ IupStoreAttribute(ih,"MASK", mask_str);
+ if (iupStrEqual(mask_str, IupGetAttribute(ih,"MASK")))
+ return 1;
+ else
+ return 0;
+}
+
+int iupmaskMatSet(Ihandle* ih, const char* mask_str, int autofill, int casei, int lin, int col)
+{
+ (void)autofill;
+ IupMatSetAttribute(ih,"MASKCASEI", lin, col, casei?"YES":"NO");
+ IupMatSetAttribute(ih,"MASK", lin, col, (char*)mask_str);
+ if (iupStrEqual(mask_str, IupMatGetAttribute(ih,"MASK", lin, col)))
+ return 1;
+ else
+ return 0;
+}
+
+int iupmaskCheck(Ihandle* ih)
+{
+ char *val = IupGetAttribute(ih,"VALUE");
+ Imask* mask = (Imask*)IupGetAttribute(ih,"OLD_MASK_DATA");
+ return iupMaskCheck(mask,val)==1;
+}
+
+int iupmaskMatCheck(Ihandle *ih, int lin, int col)
+{
+ char *val = IupMatGetAttribute(ih,"",lin,col);
+ Imask* mask = (Imask*)IupGetAttribute(ih,"OLD_MASK_DATA");
+ return iupMaskCheck(mask,val)==1;
+}
+
+int iupmaskGet(Ihandle *ih, char **sval)
+{
+ char *val = IupGetAttribute(ih,"VALUE");
+ Imask* mask = (Imask*)IupGetAttribute(ih,"OLD_MASK_DATA");
+
+ if (iupMaskCheck(mask,val)==1)
+ {
+ *sval = val;
+ return 1;
+ }
+ else
+ return 0;
+}
+
+int iupmaskMatGet(Ihandle *ih, char **sval, int lin, int col)
+{
+ char *val = IupMatGetAttribute(ih,"",lin,col);
+ Imask* mask = (Imask*)IupGetAttribute(ih,"OLD_MASK_DATA");
+
+ if (iupMaskCheck(mask,val)==1)
+ {
+ *sval = val;
+ return 1;
+ }
+ else
+ return 0;
+}
+
+int iupmaskGetDouble(Ihandle *ih, double *dval)
+{
+ char *val = IupGetAttribute(ih,"VALUE");
+ Imask* mask = (Imask*)IupGetAttribute(ih,"OLD_MASK_DATA");
+
+ if(iupMaskCheck(mask,val)==1)
+ {
+ *dval = 0.0;
+ sscanf(val,"%lf",dval);
+ return 1;
+ }
+ else
+ return 0;
+}
+
+int iupmaskMatGetDouble(Ihandle *ih, double *dval, int lin, int col)
+{
+ char *val = IupMatGetAttribute(ih,"",lin,col);
+ Imask* mask = (Imask*)IupGetAttribute(ih,"OLD_MASK_DATA");
+
+ if(iupMaskCheck(mask,val)==1)
+ {
+ *dval = 0.0;
+ sscanf(val,"%lf",dval);
+ return 1;
+ }
+ else
+ return 0;
+}
+
+int iupmaskGetFloat(Ihandle *ih, float *fval)
+{
+ char *val = IupGetAttribute(ih,"VALUE");
+ Imask* mask = (Imask*)IupGetAttribute(ih,"OLD_MASK_DATA");
+
+ if(iupMaskCheck(mask,val)==1)
+ {
+ *fval = 0.0F;
+ sscanf(val,"%f",fval);
+ return 1;
+ }
+ else
+ return 0;
+}
+
+int iupmaskMatGetFloat(Ihandle *ih, float *fval, int lin, int col)
+{
+ char *val = IupMatGetAttribute(ih,"",lin,col);
+ Imask* mask = (Imask*)IupGetAttribute(ih,"OLD_MASK_DATA");
+
+ if (iupMaskCheck(mask,val)==1)
+ {
+ *fval = 0.0F;
+ sscanf(val,"%f",fval);
+ return 1;
+ }
+ else
+ return 0;
+}
+
+int iupmaskGetInt(Ihandle *ih, int *ival)
+{
+ char *val = IupGetAttribute(ih,"VALUE");
+ Imask* mask = (Imask*)IupGetAttribute(ih,"OLD_MASK_DATA");
+
+ if (iupMaskCheck(mask,val)==1)
+ {
+ *ival = 0;
+ sscanf(val,"%d",ival);
+ return 1;
+ }
+ else
+ return 0;
+}
+
+int iupmaskMatGetInt(Ihandle *ih, int *ival, int lin, int col)
+{
+ char *val = IupMatGetAttribute(ih,"",lin,col);
+ Imask* mask = (Imask*)IupGetAttribute(ih,"OLD_MASK_DATA");
+
+ if(iupMaskCheck(mask,val)==1)
+ {
+ *ival = 0;
+ sscanf(val,"%d",ival);
+ return 1;
+ }
+ else
+ return 0;
+}