/*
- * Copyright (C) 2005-2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2011 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
#include "widgettextview.h"
+static guint debug;
+static gchar *log_file;
+
+static GOptionEntry entries[] =
+{
+ { "gtkform-debug-level", 0, 0, G_OPTION_ARG_INT, &debug, "Sets the debug level", NULL },
+ { "gtkform-log-file", 0, 0, G_OPTION_ARG_FILENAME, &log_file, "Path to file where to write debug info (or stdout or stderr)", NULL },
+ { NULL }
+};
+
enum
{
PROP_0,
GdaEx *gdaex;
GSList *groups;
+
+ guint debug;
+ GFileOutputStream *log_file;
};
G_DEFINE_TYPE (GtkForm, gtk_form, G_TYPE_OBJECT)
return form;
}
+static void
+gtkform_log_handler (const gchar *log_domain,
+ GLogLevelFlags log_level,
+ const gchar *message,
+ gpointer user_data)
+{
+ GError *error;
+
+ gchar *msg;
+
+ GtkFormPrivate *priv = GTK_FORM_GET_PRIVATE ((GtkForm *)user_data);
+
+ msg = g_strdup_printf ("%s **: %s\n\n", log_domain, message);
+
+ if (g_output_stream_write (G_OUTPUT_STREAM (priv->log_file),
+ msg, strlen (msg), NULL, &error) < 0)
+ {
+ g_warning ("Error on writing on log file: %s",
+ error != NULL && error->message != NULL ? error->message : "no details.");
+ }
+}
+
+static gboolean
+gtkform_post_parse_options (GOptionContext *context,
+ GOptionGroup *group,
+ gpointer user_data,
+ GError **error)
+{
+ GtkFormPrivate *priv = GTK_FORM_GET_PRIVATE ((GtkForm *)user_data);
+
+ GError *my_error;
+
+ priv->debug = debug;
+ if (log_file == NULL)
+ {
+ priv->log_file = 0;
+ }
+ else if (priv->debug > 0)
+ {
+ gchar *filename = g_strstrip (g_strdup (log_file));
+ if (g_ascii_strncasecmp (filename, "stdout", 6) == 0
+ || g_ascii_strncasecmp (filename, "stderr", 6) == 0)
+ {
+ }
+ else
+ {
+ my_error = NULL;
+ priv->log_file = g_file_replace (g_file_new_for_path (filename),
+ NULL, FALSE, G_FILE_CREATE_NONE, NULL, &my_error);
+ if (priv->log_file == NULL)
+ {
+ g_warning ("Error on opening log file: %s.",
+ my_error != NULL && my_error->message != NULL ? my_error->message : "no details.");
+ }
+ else
+ {
+ /* set handler */
+ g_log_set_handler (G_LOG_DOMAIN, G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL
+ | G_LOG_FLAG_RECURSION, gtkform_log_handler, user_data);
+ }
+ }
+ }
+
+ return TRUE;
+}
+
+/**
+ * gtk_form_get_option_group:
+ * #gtkform: a #GtkForm object.
+ *
+ * Returns: the #GOptionGroup.
+ */
+GOptionGroup
+*gtk_form_get_option_group (GtkForm *gtkform)
+{
+ GOptionGroup *ret;
+
+ ret = g_option_group_new ("gtkform", "GtkForm", "GtkForm", (gpointer)gtkform, g_free);
+ if (ret != NULL)
+ {
+ g_option_group_add_entries (ret, entries);
+ g_option_group_set_parse_hooks (ret, NULL, gtkform_post_parse_options);
+ }
+
+ return ret;
+}
+
static void
parse_widget_on_change (GtkForm *form, xmlNodePtr xnode, GtkFormWidget *fwidget)
{
widget = gtk_form_widget_get_widget (fwidget);
if (form_widget != NULL && *form_widget == NULL)
- {
+ {
*form_widget = fwidget;
}
/**
* gtk_form_is_changed:
- * @form:
+ * @form: a #GtkForm object.
*
* Returns: TRUE if the values in the form are changed since last calling to
* gtk_form_clear(), gtk_form_fill_from_datamodel() or gtk_form_set_as_origin().
if (gtk_form_field_is_to_save (field))
{
ret = gtk_form_field_is_changed (field);
- if (ret) break;
+ if (ret)
+ {
+ if (priv->debug > 0)
+ {
+ g_message ("Field «%s» is changed.", gtk_form_field_get_field_name (field));
+ }
+ break;
+ }
}
fields = g_slist_next (fields);
/**
* gtk_form_set_as_origin:
- * @form: a #GtkForm object.
+ * @form: a #GtkForm object.
*
* Sets the original values of every #GtkForm #GtkFormField's to the currents
* values.