Added the ability for plugin to auto parse xml.
AC_FUNC_STRTOD
AC_FUNC_MALLOC
-# Checks for library functions.
+dnl ******************************
+dnl Check for Operating System
+dnl ******************************
+
+platform_win32=no
+
+case "$host" in
+*-mingw*)
+ platform_win32=yes
+ ;;
+esac
+
+AM_CONDITIONAL(PLATFORM_WIN32, [test $platform_win32 = yes])
+
+# Output files
AC_CONFIG_FILES([
libgtkform.pc
libgtkformui.pc
};
typedef GtkFormWidget *(* FormWidgetConstructorFunc) (void);
+typedef gboolean (* FormWidgetXmlParsingFunc) (GtkFormWidget *, xmlNodePtr);
typedef struct
{
gboolean ret;
+ GList *modules;
+ FormWidgetConstructorFunc widget_constructor;
+ FormWidgetXmlParsingFunc widget_xml_parsing;
+
g_return_val_if_fail (IS_GTK_FORM (form), FALSE);
g_return_val_if_fail (xmldoc != NULL, FALSE);
else if (xmlStrcmp (cur->name, (const xmlChar *)"widget") == 0)
{
widget = NULL;
+ modules = NULL;
type = xmlGetProp (cur, (const xmlChar *)"type");
if (g_strcmp0 (type, "checkbox") == 0)
else
{
/* trying in modules */
- GList *modules;
- FormWidgetConstructorFunc widget_constructor;
-
modules = g_list_first (priv->modules);
while (modules != NULL)
{
if (widget == NULL)
{
g_warning (_("Unknown type «%s»."), type);
+ modules = NULL;
}
}
&& IS_GTK_FORM_WIDGET_COMBO_BOX (widget))
{
g_object_set (G_OBJECT (widget), "column-field",
- strtol ((gchar *)xmlNodeGetContent (node_widget), NULL, 10), NULL);
+ strtol ((gchar *)xmlNodeGetContent (node_widget), NULL, 10), NULL);
}
else if (xmlStrcmp (node_widget->name, (const xmlChar *)"sql") == 0
&& IS_GTK_FORM_WIDGET_COMBO_BOX (widget) && IS_GDAEX (priv->gdaex))
{
gtk_form_widget_combo_box_fill_from_sql (widget,
priv->gdaex,
- (gchar *)xmlNodeGetContent (node_widget),
- gtk_form_field_boolean_str_to_boolean (xmlGetProp (node_widget, "with-empty-entry")));
+ (gchar *)xmlNodeGetContent (node_widget),
+ gtk_form_field_boolean_str_to_boolean (xmlGetProp (node_widget, "with-empty-entry")));
}
else if (xmlStrcmp (node_widget->name, (const xmlChar *)"return-value") == 0
&& IS_GTK_FORM_WIDGET_RADIO (widget))
{
g_object_set (G_OBJECT (widget), "return-value",
- xmlNodeGetContent (node_widget), NULL);
+ xmlNodeGetContent (node_widget), NULL);
}
else if (xmlStrcmp (node_widget->name, (const xmlChar *)"on-change") == 0)
{
{
g_warning (_("Field of type «%s» not found."), type);
}
- }
+ }
+ else
+ {
+ /* if the widget is a plugin,
+ try to make xml parsing by the plugin */
+ if (modules != NULL)
+ {
+ if (g_module_symbol ((GModule *)modules->data,
+ g_strconcat ("gtk_form_widget_", type, "_xml_parsing", NULL),
+ (gpointer *)&widget_xml_parsing))
+ {
+ if (widget_xml_parsing != NULL)
+ {
+ widget_xml_parsing (widget, node_widget);
+ }
+ }
+ }
+ }
node_widget = node_widget->next;
}
* @form:
* @name:
*
+ * Returns: if @name is #NULL, the default #GdaEx connection; otherwise
+ * the connection associated with the name requested.
*/
GdaEx
*gtk_form_get_db_connection_by_name (GtkForm *form, const gchar *name)
GtkFormDbConnection *dbc;
g_return_val_if_fail (IS_GTK_FORM (form), NULL);
- g_return_val_if_fail (name != NULL, NULL);
+
+ GtkFormPrivate *priv = GTK_FORM_GET_PRIVATE (form);
+
+ if (name == NULL)
+ {
+ return priv->gdaex;
+ }
_name = g_strstrip (g_strdup (name));
g_return_val_if_fail (g_strcmp0 (_name, "") != 0, NULL);
- GtkFormPrivate *priv = GTK_FORM_GET_PRIVATE (form);
-
gdaex = NULL;
dbs = priv->db_connections;
GLADEDIR =
endif
+if PLATFORM_WIN32
+libmodulesext = -0.dll
+libmodulesdir = $(bindir)
+else
+libmodulesext = .so
+libmodulesdir = $(libdir)
+endif
+
SUBDIRS = . \
test \
$(GLADEDIR)
install-exec-hook:
cd $(libdir)/$(PACKAGE)/modules && \
- ln -s -f $(libdir)/libgtkformui.so .
+ ln -s -f $(libmodulesdir)/libgtkformui$(libmodulesext) .
uninstall-hook:
- rm -f $(libdir)/$(PACKAGE)/modules/libgtkdateentry.so
+ rm -f $(libdir)/$(PACKAGE)/modules/libgtkdateentry$(libmodulesext)
G_CALLBACK (gtk_form_decoder_on_btn_clean_clicked), (gpointer)decoder);
priv->btn_open = gtk_button_new ();
- gtk_widget_set_tooltip_text (priv->btn_open, "Open");
+ gtk_widget_set_tooltip_text (priv->btn_open, _("Open"));
gtk_box_pack_start (GTK_BOX (priv->hbox), priv->btn_open, FALSE, FALSE, 0);
gtk_widget_set_no_show_all (priv->btn_open, TRUE);
icon = gtk_image_new_from_stock ("gtk-open", GTK_ICON_SIZE_MENU);
G_CALLBACK (gtk_form_decoder_on_btn_open_clicked), (gpointer)decoder);
priv->btn_browse = gtk_button_new_with_label ("...");
- gtk_widget_set_tooltip_text (priv->btn_browse, "Find");
+ gtk_widget_set_tooltip_text (priv->btn_browse, _("Find"));
gtk_box_pack_start (GTK_BOX (priv->hbox), priv->btn_browse, FALSE, FALSE, 0);
gtk_widget_set_no_show_all (priv->btn_browse, TRUE);
gtk_widget_show (priv->btn_browse);
#include <gtk/gtk.h>
+#include <libgtkform/form.h>
+#include <libgtkform/fieldboolean.h>
+
#include "gtkformdecoder.h"
#include "gtkformwidgetdecoder.h"
return g_object_new (gtk_form_widget_decoder_get_type (), NULL);
}
+/**
+ * gtk_form_widget_decoder_xml_parsing:
+ * @widget:
+ * @xml_node:
+ *
+ */
+gboolean
+gtk_form_widget_decoder_xml_parsing (GtkFormWidget *fwidget, xmlNodePtr xml_node)
+{
+ GtkFormWidgetDecoderPrivate *priv = GTK_FORM_WIDGET_DECODER_GET_PRIVATE (fwidget);
+
+ GtkForm *form;
+ GtkWidget *w;
+
+ gchar *connection_name;
+
+ xmlNodePtr child;
+
+ if (xmlStrcmp (xml_node->name, "decoder") != 0)
+ {
+ return FALSE;
+ }
+
+ w = gtk_form_widget_get_widget (fwidget);
+
+ connection_name = NULL;
+
+ child = xml_node->children;
+ while (child != NULL)
+ {
+ if (xmlStrcmp (child->name, (const xmlChar *)"sql") == 0)
+ {
+ g_object_set (G_OBJECT (w), "sql", gtk_form_field_boolean_str_to_boolean ((gchar *)xmlNodeGetContent (child)), NULL);
+ }
+ else if (xmlStrcmp (child->name, (const xmlChar *)"connection-name") == 0)
+ {
+ connection_name = g_strdup ((gchar *)xmlNodeGetContent (child));
+ }
+ else if (xmlStrcmp (child->name, (const xmlChar *)"show-btn-clean") == 0)
+ {
+ g_object_set (G_OBJECT (w), "show-btn-clean", gtk_form_field_boolean_str_to_boolean ((gchar *)xmlNodeGetContent (child)), NULL);
+ }
+ else if (xmlStrcmp (child->name, (const xmlChar *)"show-btn-open") == 0)
+ {
+ g_object_set (G_OBJECT (w), "show-btn-open", gtk_form_field_boolean_str_to_boolean ((gchar *)xmlNodeGetContent (child)), NULL);
+ }
+
+ child = child->next;
+ }
+
+ g_object_get (G_OBJECT (fwidget), "form", &form, NULL);
+ g_object_set (G_OBJECT (w), "gdaex", gtk_form_get_db_connection_by_name (form, connection_name), NULL);
+
+ return TRUE;
+}
+
/**
* gtk_form_widget_decoder_get_value_stringify:
* @widget:
GParamSpec *pspec)
{
GtkFormWidgetDecoder *widget_entry = (GtkFormWidgetDecoder *)object;
-
GtkFormWidgetDecoderPrivate *priv = GTK_FORM_WIDGET_DECODER_GET_PRIVATE (widget_entry);
switch (property_id)
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
- }
+ }
}
static void
GParamSpec *pspec)
{
GtkFormWidgetDecoder *widget_entry = (GtkFormWidgetDecoder *)object;
-
GtkFormWidgetDecoderPrivate *priv = GTK_FORM_WIDGET_DECODER_GET_PRIVATE (widget_entry);
switch (property_id)
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
- }
+ }
}
GtkFormWidget *gtk_form_widget_decoder_new (void);
+gboolean gtk_form_widget_decoder_xml_parsing (GtkFormWidget *fwidget, xmlNodePtr xml_node);
+
gchar *gtk_form_widget_decoder_get_value_stringify (GtkFormWidget *widget);
gboolean gtk_form_widget_decoder_set_value_stringify (GtkFormWidget *fwidget, const gchar *value);