#endif
typedef ZakFormElement *(* FormElementConstructorFunc) (void);
-typedef gboolean (* FormElementXmlParsingFunc) (ZakFormElement *, xmlNodePtr);
typedef GObject *(* FormElementExtensionConstructorFunc) (void);
typedef gboolean (* FormElementExtensionXmlParsingFunc) (GObject *, xmlNodePtr);
typedef ZakFormValidator *(* FormValidatorConstructorFunc) (void);
zak_form_form_load_modules (zak_form_form);
}
-static void
+void
zak_form_form_element_xml_parsing (ZakFormForm *zakform, ZakFormElement *element, xmlNode *xnode)
{
ZakFormFormPrivate *priv;
gint y;
FormElementConstructorFunc element_constructor;
- FormElementXmlParsingFunc element_xml_parsing;
-
FormValidatorConstructorFunc validator_constructor;
xmlXPathContextPtr xpcontext;
cur_clean = xmlCopyNode (cur, 1);
zak_form_form_element_xml_parsing (zakform, element, cur_clean);
-
- if (g_module_symbol ((GModule *)g_ptr_array_index (priv->ar_modules, i),
- g_strconcat (type, "_xml_parsing", NULL),
- (gpointer *)&element_xml_parsing))
- {
- if (element_xml_parsing != NULL)
- {
- element_xml_parsing (element, cur_clean);
- }
- }
+ zak_form_element_xml_parsing (element, cur_clean);
xmlUnlinkNode (cur_clean);
xmlFreeNode (cur_clean);
{
type = (gchar *)xmlGetProp (xnodeset->nodeTab[y], (const xmlChar *)"type");
- validator_constructor = _zak_form_form_get_module_new (zakform, type);
+ validator_constructor = (FormValidatorConstructorFunc)_zak_form_form_get_module_new (zakform, type);
if (validator_constructor != NULL)
{
validator = validator_constructor ();
static void zak_form_element_dispose (GObject *gobject);
static void zak_form_element_finalize (GObject *gobject);
-static void zak_form_element_xml_parsing (ZakFormElement *element, xmlNode *xmlnode);
-
typedef struct
{
gchar *name;
object_class->dispose = zak_form_element_dispose;
object_class->finalize = zak_form_element_finalize;
- class->xml_parsing = zak_form_element_xml_parsing;
-
g_object_class_install_property (object_class, PROP_NAME,
g_param_spec_string ("name",
"Name",
parent_class->finalize (gobject);
}
-static void
+void
zak_form_element_xml_parsing (ZakFormElement *element, xmlNode *xmlnode)
{
xmlNode *cur;
xmlFreeNode (xnode_tmp);
}
}
+
+ if (ZAK_FORM_ELEMENT_GET_CLASS (element)->xml_parsing != NULL)
+ {
+ ZAK_FORM_ELEMENT_GET_CLASS (element)->xml_parsing (element, xmlnode);
+ }
}