aboutsummaryrefslogtreecommitdiffstats
path: root/property.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-08-13 09:53:10 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-08-13 09:53:10 +0000
commit523bb7ba13a5d88588a270cf8ce2f0c0ac882708 (patch)
tree6490997635549846cf304b2cfc4fc256f55d6ca7 /property.h
parent517e84e9fd1b39fdef831c6fc5c6e774bf20a12a (diff)
downloadlcd4linux-523bb7ba13a5d88588a270cf8ce2f0c0ac882708.tar.gz
[lcd4linux @ 2006-08-13 09:53:10 by reinelt]
dynamic properties added (used by 'style' of text widget) git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@690 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'property.h')
-rw-r--r--property.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/property.h b/property.h
new file mode 100644
index 0000000..0226796
--- /dev/null
+++ b/property.h
@@ -0,0 +1,50 @@
+/* $Id: property.h,v 1.1 2006/08/13 09:53:10 reinelt Exp $
+ *
+ * dynamic properties
+ *
+ * Copyright (C) 2006 Michael Reinelt <reinelt@eunet.at>
+ * Copyright (C) 2006 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
+ *
+ * This file is part of LCD4Linux.
+ *
+ * LCD4Linux is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * LCD4Linux is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ *
+ * $Log: property.h,v $
+ * Revision 1.1 2006/08/13 09:53:10 reinelt
+ * dynamic properties added (used by 'style' of text widget)
+ *
+ */
+
+
+#ifndef _PROPERTY_H_
+#define _PROPERTY_H_
+
+
+typedef struct {
+ char *name;
+ char *expression;
+ void *compiled;
+ RESULT result;
+} PROPERTY;
+
+
+void property_load(const char *section, const char *name, const char *defval, PROPERTY * prop);
+void property_eval(PROPERTY * prop);
+double P2N(PROPERTY * prop);
+char *P2S(PROPERTY * prop);
+void property_free(PROPERTY * prop);
+
+#endif