lib_LTLIBRARIES = libgtkform.la
libgtkform_la_SOURCES = form.c \
- formkey.c \
+ key.c \
field.c \
fieldboolean.c \
fielddatetime.c \
libgtkform_la_LDFLAGS = -no-undefined
-libgtkform_include_HEADERS = libform.h \
- libformkey.h \
- libformfield.h \
- libformfieldboolean.h \
- libformfielddatetime.h \
- libformfieldfloat.h \
- libformfieldinteger.h \
- libformfieldtext.h \
- libformwidget.h \
- libformwidgetcheck.h \
- libformwidgetcombobox.h \
- libformwidgetentry.h \
- libformwidgetlabel.h \
- libformwidgetspin.h \
- libformwidgettextview.h
+libgtkform_include_HEADERS = form.h \
+ key.h \
+ field.h \
+ fieldboolean.h \
+ fielddatetime.h \
+ fieldfloat.h \
+ fieldinteger.h \
+ fieldtext.h \
+ widget.h \
+ widgetcheck.h \
+ widgetcombobox.h \
+ widgetentry.h \
+ widgetlabel.h \
+ widgetspin.h \
+ widgettextview.h
libgtkform_includedir = $(includedir)/libgtkform
/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include <gtk/gtk.h>
-
-#include "libformwidget.h"
-#include "libformfield.h"
+#include "widget.h"
+#include "field.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_FIELD_H__
+#define __LIBFORM_FIELD_H__
+
+#include <glib.h>
+
+#include <libgdaex.h>
+
+#include "widget.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_FIELD (form_field_get_type ())
+#define FORM_FIELD(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD, FormField))
+#define FORM_FIELD_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD, FormFieldClass))
+#define IS_FORM_FIELD(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD))
+#define IS_FORM_FIELD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD))
+#define FORM_FIELD_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD, FormFieldClass))
+
+
+typedef struct _FormField FormField;
+typedef struct _FormFieldClass FormFieldClass;
+
+struct _FormField
+ {
+ GObject parent;
+ };
+
+struct _FormFieldClass
+ {
+ GObjectClass parent_class;
+
+ const gchar *(*get_value_stringify) (FormField *field);
+ const GValue *(*get_value) (FormField *field);
+ const gchar *(*get_value_sql) (FormField *field);
+
+ gboolean (*clear) (FormField *field);
+ gboolean (*is_empty) (FormField *field);
+ gboolean (*set_from_datamodel) (FormField *field, GdaDataModel *dm, gint row);
+ };
+
+GType form_field_get_type (void) G_GNUC_CONST;
+
+FormField *form_field_new (void);
+FormField *form_field_new_from_form_widget (FormWidget *fwidget);
+
+const gchar *form_field_get_field_name (FormField *field);
+FormWidget *form_field_get_form_widget (FormField *field);
+
+const gchar *form_field_get_value_stringify (FormField *field);
+const GValue *form_field_get_value (FormField *field);
+const gchar *form_field_get_value_sql (FormField *field);
+
+gboolean form_field_clear (FormField *field);
+
+gboolean form_field_is_empty (FormField *field);
+
+gboolean form_field_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_FIELD_H__ */
#include <string.h>
-#include <gtk/gtk.h>
-
-#include "libformwidget.h"
-#include "libformfieldboolean.h"
+#include "widget.h"
+#include "fieldboolean.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_FIELD_BOOLEAN_H__
+#define __LIBFORM_FIELD_BOOLEAN_H__
+
+#include <libgdaex.h>
+
+#include "field.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_FIELD_BOOLEAN (form_field_boolean_get_type ())
+#define FORM_FIELD_BOOLEAN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD_BOOLEAN, FormFieldBoolean))
+#define FORM_FIELD_BOOLEAN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD_BOOLEAN, FormFieldBooleanClass))
+#define IS_FORM_FIELD_BOOLEAN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD_BOOLEAN))
+#define IS_FORM_FIELD_BOOLEAN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD_BOOLEAN))
+#define FORM_FIELD_BOOLEAN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD_BOOLEAN, FormFieldBooleanClass))
+
+
+typedef struct _FormFieldBoolean FormFieldBoolean;
+typedef struct _FormFieldBooleanClass FormFieldBooleanClass;
+
+struct _FormFieldBoolean
+ {
+ FormField parent;
+ };
+
+struct _FormFieldBooleanClass
+ {
+ FormFieldClass parent_class;
+ };
+
+GType form_field_boolean_get_type (void) G_GNUC_CONST;
+
+FormField *form_field_boolean_new (void);
+
+const gchar *form_field_boolean_get_value_stringify (FormField *field);
+const GValue *form_field_boolean_get_value (FormField *field);
+const gchar *form_field_boolean_get_value_sql (FormField *field);
+
+gboolean form_field_boolean_clear (FormField *field);
+
+gboolean form_field_boolean_is_empty (FormField *field);
+
+gboolean form_field_boolean_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_FIELD_BOOLEAN_H__ */
#include <string.h>
#include <time.h>
-#include <gtk/gtk.h>
-
-#include "libformwidget.h"
-#include "libformfielddatetime.h"
+#include "widget.h"
+#include "fielddatetime.h"
enum
{
g_param_spec_int ("type",
"Type",
"Type",
- G_MININT,
- G_MAXINT,
- FORM_FIELD_DATETIME_TYPE_DATETIME,
+ G_MININT,
+ G_MAXINT,
+ FORM_FIELD_DATETIME_TYPE_DATETIME,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
g_type_class_add_private (object_class, sizeof (FormFieldDateTimePrivate));
if (dm != NULL)
{
ret = form_field_datetime_set_value_stringify (field,
- gdaex_data_model_get_field_value_stringify_at (dm, row, field_name));
+ gdaex_data_model_get_field_value_stringify_at (dm, row, field_name));
}
return ret;
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_FIELD_DATETIME_H__
+#define __LIBFORM_FIELD_DATETIME_H__
+
+#include <libgdaex.h>
+
+#include "field.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_FIELD_DATETIME (form_field_datetime_get_type ())
+#define FORM_FIELD_DATETIME(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD_DATETIME, FormFieldDateTime))
+#define FORM_FIELD_DATETIME_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD_DATETIME, FormFieldDateTimeClass))
+#define IS_FORM_FIELD_DATETIME(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD_DATETIME))
+#define IS_FORM_FIELD_DATETIME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD_DATETIME))
+#define FORM_FIELD_DATETIME_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD_DATETIME, FormFieldDateTimeClass))
+
+
+typedef struct _FormFieldDateTime FormFieldDateTime;
+typedef struct _FormFieldDateTimeClass FormFieldDateTimeClass;
+
+struct _FormFieldDateTime
+ {
+ FormField parent;
+ };
+
+struct _FormFieldDateTimeClass
+ {
+ FormFieldClass parent_class;
+ };
+
+GType form_field_datetime_get_type (void) G_GNUC_CONST;
+
+enum
+{
+ FORM_FIELD_DATETIME_TYPE_DATETIME,
+ FORM_FIELD_DATETIME_TYPE_DATE,
+ FORM_FIELD_DATETIME_TYPE_TIME
+};
+
+FormField *form_field_datetime_new (void);
+
+const gchar *form_field_datetime_get_value_stringify (FormField *field);
+const GValue *form_field_datetime_get_value (FormField *field);
+const gchar *form_field_datetime_get_value_sql (FormField *field);
+
+gboolean form_field_datetime_clear (FormField *field);
+
+gboolean form_field_datetime_is_empty (FormField *field);
+
+gboolean form_field_datetime_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_FIELD_DATETIME_H__ */
#include <locale.h>
-#include <gtk/gtk.h>
-
-#include "libformwidget.h"
-#include "libformfieldfloat.h"
+#include "widget.h"
+#include "fieldfloat.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_FIELD_FLOAT_H__
+#define __LIBFORM_FIELD_FLOAT_H__
+
+#include <libgdaex.h>
+
+#include "field.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_FIELD_FLOAT (form_field_float_get_type ())
+#define FORM_FIELD_FLOAT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD_FLOAT, FormFieldFloat))
+#define FORM_FIELD_FLOAT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD_FLOAT, FormFieldFloatClass))
+#define IS_FORM_FIELD_FLOAT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD_FLOAT))
+#define IS_FORM_FIELD_FLOAT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD_FLOAT))
+#define FORM_FIELD_FLOAT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD_FLOAT, FormFieldFloatClass))
+
+
+typedef struct _FormFieldFloat FormFieldFloat;
+typedef struct _FormFieldFloatClass FormFieldFloatClass;
+
+struct _FormFieldFloat
+ {
+ FormField parent;
+ };
+
+struct _FormFieldFloatClass
+ {
+ FormFieldClass parent_class;
+ };
+
+GType form_field_float_get_type (void) G_GNUC_CONST;
+
+FormField *form_field_float_new (void);
+
+const gchar *form_field_float_get_value_stringify (FormField *field);
+const GValue *form_field_float_get_value (FormField *field);
+const gchar *form_field_float_get_value_sql (FormField *field);
+
+gboolean form_field_float_clear (FormField *field);
+
+gboolean form_field_float_is_empty (FormField *field);
+
+gboolean form_field_float_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_FIELD_FLOAT_H__ */
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include <gtk/gtk.h>
-
-#include "libformwidget.h"
-#include "libformfieldinteger.h"
+#include "widget.h"
+#include "fieldinteger.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_FIELD_INTEGER_H__
+#define __LIBFORM_FIELD_INTEGER_H__
+
+#include <libgdaex.h>
+
+#include "field.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_FIELD_INTEGER (form_field_integer_get_type ())
+#define FORM_FIELD_INTEGER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD_INTEGER, FormFieldInteger))
+#define FORM_FIELD_INTEGER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD_INTEGER, FormFieldIntegerClass))
+#define IS_FORM_FIELD_INTEGER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD_INTEGER))
+#define IS_FORM_FIELD_INTEGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD_INTEGER))
+#define FORM_FIELD_INTEGER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD_INTEGER, FormFieldIntegerClass))
+
+
+typedef struct _FormFieldInteger FormFieldInteger;
+typedef struct _FormFieldIntegerClass FormFieldIntegerClass;
+
+struct _FormFieldInteger
+ {
+ FormField parent;
+ };
+
+struct _FormFieldIntegerClass
+ {
+ FormFieldClass parent_class;
+ };
+
+GType form_field_integer_get_type (void) G_GNUC_CONST;
+
+FormField *form_field_integer_new (void);
+
+const gchar *form_field_integer_get_value_stringify (FormField *field);
+const GValue *form_field_integer_get_value (FormField *field);
+const gchar *form_field_integer_get_value_sql (FormField *field);
+
+gboolean form_field_integer_clear (FormField *field);
+
+gboolean form_field_integer_is_empty (FormField *field);
+
+gboolean form_field_integer_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_FIELD_INTEGER_H__ */
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include <gtk/gtk.h>
-
-#include "libformwidget.h"
-#include "libformfieldtext.h"
+#include "widget.h"
+#include "fieldtext.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_FIELD_TEXT_H__
+#define __LIBFORM_FIELD_TEXT_H__
+
+#include <libgdaex.h>
+
+#include "field.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_FIELD_TEXT (form_field_text_get_type ())
+#define FORM_FIELD_TEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD_TEXT, FormFieldText))
+#define FORM_FIELD_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD_TEXT, FormFieldTextClass))
+#define IS_FORM_FIELD_TEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD_TEXT))
+#define IS_FORM_FIELD_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD_TEXT))
+#define FORM_FIELD_TEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD_TEXT, FormFieldTextClass))
+
+
+typedef struct _FormFieldText FormFieldText;
+typedef struct _FormFieldTextClass FormFieldTextClass;
+
+struct _FormFieldText
+ {
+ FormField parent;
+ };
+
+struct _FormFieldTextClass
+ {
+ FormFieldClass parent_class;
+ };
+
+GType form_field_text_get_type (void) G_GNUC_CONST;
+
+FormField *form_field_text_new (void);
+
+const gchar *form_field_text_get_value_stringify (FormField *field);
+const GValue *form_field_text_get_value (FormField *field);
+const gchar *form_field_text_get_value_sql (FormField *field);
+
+gboolean form_field_text_clear (FormField *field);
+
+gboolean form_field_text_is_empty (FormField *field);
+
+gboolean form_field_text_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_FIELD_TEXT_H__ */
/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
#include <string.h>
-#include "libform.h"
+#include "form.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_H__
+#define __LIBFORM_H__
+
+#include <glib.h>
+#include <glade/glade.h>
+
+#include "field.h"
+#include "widget.h"
+#include "key.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM (form_get_type ())
+#define FORM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM, Form))
+#define FORM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM, FormClass))
+#define IS_FORM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM))
+#define IS_FORM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM))
+#define FORM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM, FormClass))
+
+
+typedef struct _Form Form;
+typedef struct _FormClass FormClass;
+
+struct _Form
+ {
+ GObject parent;
+ };
+
+struct _FormClass
+ {
+ GObjectClass parent_class;
+ };
+
+GType form_get_type (void) G_GNUC_CONST;
+
+
+Form *form_new (void);
+
+gboolean form_add_field (Form *form, FormField *field);
+gboolean form_remove_field (Form *form, FormField *field);
+
+gboolean form_add_fields (Form *form, ...);
+
+FormField *form_get_field_from_name (Form *form, const gchar *field_name);
+FormWidget *form_get_widget_from_name (Form *form, const gchar *widget_name);
+
+gboolean form_clear (Form *form);
+
+gboolean form_check (Form *form);
+
+void form_set_sensitive (Form *form, gboolean sensitive);
+void form_set_editable (Form *form, gboolean editable);
+
+typedef enum
+{
+ FORM_SQL_SELECT,
+ FORM_SQL_INSERT,
+ FORM_SQL_UPDATE,
+ FORM_SQL_DELETE
+} FormSqlType;
+
+gchar *form_get_sql (Form *form, FormSqlType type);
+
+gboolean form_fill_from_datamodel (Form *form, GdaDataModel *dm, gint row);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#include <stdarg.h>
-#include <string.h>
-
-#include "libformkey.h"
-
-static void form_key_class_init (FormKeyClass *class);
-static void form_key_init (FormKey *form_key);
-
-
-#define FORM_KEY_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_FORM_KEY, FormKeyPrivate))
-
-typedef struct _FormKeyPrivate FormKeyPrivate;
-struct _FormKeyPrivate
- {
- GList *fields;
- };
-
-
-GType
-form_key_get_type (void)
-{
- static GType form_key_type = 0;
-
- if (!form_key_type)
- {
- static const GTypeInfo form_key_info =
- {
- sizeof (FormKeyClass),
- NULL, /* base_init */
- NULL, /* base_finalize */
- (GClassInitFunc) form_key_class_init,
- NULL, /* class_finalize */
- NULL, /* class_data */
- sizeof (FormKey),
- 0, /* n_preallocs */
- (GInstanceInitFunc) form_key_init,
- NULL
- };
-
- form_key_type = g_type_register_static (G_TYPE_OBJECT, "FormKey",
- &form_key_info, 0);
- }
-
- return form_key_type;
-}
-
-static void
-form_key_class_init (FormKeyClass *class)
-{
- GObjectClass *object_class = G_OBJECT_CLASS (class);
-
- g_type_class_add_private (object_class, sizeof (FormKeyPrivate));
-}
-
-static void
-form_key_init (FormKey *form_key)
-{
- FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
-
- priv->fields = NULL;
-}
-
-/**
- * form_key_new:
- *
- * Returns: the newly created #FormKey.
- */
-FormKey
-*form_key_new ()
-{
- return g_object_new (TYPE_FORM_KEY, NULL);
-}
-
-/**
- * form_key_add_field:
- * @form_key: a #FormKey object.
- * @field: a #FormField object.
- *
- */
-gboolean
-form_key_add_field (FormKey *form_key, FormField *field)
-{
- gboolean ret = FALSE;
-
- FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
-
- g_return_val_if_fail (IS_FORM_FIELD (field), FALSE);
-
- priv->fields = g_list_append (priv->fields, field);
-
- ret = TRUE;
-
- return ret;
-}
-
-/**
- * form_key_remove_field:
- * @form_key: a #FormKey object.
- * @field: a #FormField object.
- *
- */
-gboolean
-form_key_remove_field (FormKey *form_key, FormField *field)
-{
- gboolean ret = FALSE;
-
- FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
-
- g_return_val_if_fail (IS_FORM_FIELD (field), FALSE);
-
- priv->fields = g_list_remove (priv->fields, field);
-
- ret = TRUE;
-
- return ret;
-}
-
-/**
- * form_key_add_fields:
- * @form_key: a #FormKey object.
- *
- */
-gboolean
-form_key_add_fields (FormKey *form_key, ...)
-{
- FormField *field;
-
- va_list vargs;
-
- va_start (vargs, form_key);
-
- while ((field = va_arg (vargs, FormField *)) != NULL)
- {
- form_key_add_field (form_key, field);
- }
-
- va_end (vargs);
-}
-
-/**
- * form_key_check:
- * @form_key: a #FormKey object.
- *
- * Returns: TRUE if all obligatory fields are full.
- */
-gboolean
-form_key_check (FormKey *form_key)
-{
- FormField *field;
- gboolean ret = FALSE;
-
- FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
-
- GList *fields = g_list_first (priv->fields);
-
- while (fields != NULL)
- {
- field = (FormField *)fields->data;
-
- if (form_field_is_empty (field))
- {
- ret = TRUE;
- break;
- }
-
- fields = g_list_next (fields);
- }
-
- return ret;
-}
-
-/**
- * form_key_get_sql:
- * @form_key: a #FormKey object.
- *
- */
-gchar
-*form_key_get_sql (FormKey *form_key)
-{
- FormField *field;
- gchar *sql = "";
- gchar *field_name;
-
- g_return_val_if_fail (IS_FORM_KEY (form_key), NULL);
-
- FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
-
- GList *fields = g_list_first (priv->fields);
-
- while (fields != NULL)
- {
- field = (FormField *)fields->data;
-
- g_object_get (G_OBJECT (field),
- "field", &field_name,
- NULL);
-
- sql = g_strconcat (sql, " AND ", field_name, " = ",
- form_field_get_value_sql (field), NULL);
-
- fields = g_list_next (fields);
- }
-
- if (strcmp (sql, "") != 0)
- {
- sql = g_strconcat (" WHERE ", g_strdup (sql + 5), NULL);
- }
-
- return sql;
-}
-
-/**
- * form_key_field_is_key:
- * @form_key: a #FormKey object.
- * @field: a #FormField object.
- *
- * Returns: TRUE if @field is part of @form_key.
- */
-gboolean
-form_key_field_is_key (FormKey *form_key, FormField *field)
-{
- g_return_val_if_fail (IS_FORM_KEY (form_key), FALSE);
- g_return_val_if_fail (IS_FORM_FIELD (field), FALSE);
-
- FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
-
- return (g_list_index (priv->fields, field) >= 0 ? TRUE : FALSE);
-}
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <stdarg.h>
+#include <string.h>
+
+#include "key.h"
+
+static void form_key_class_init (FormKeyClass *class);
+static void form_key_init (FormKey *form_key);
+
+
+#define FORM_KEY_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_FORM_KEY, FormKeyPrivate))
+
+typedef struct _FormKeyPrivate FormKeyPrivate;
+struct _FormKeyPrivate
+ {
+ GList *fields;
+ };
+
+
+GType
+form_key_get_type (void)
+{
+ static GType form_key_type = 0;
+
+ if (!form_key_type)
+ {
+ static const GTypeInfo form_key_info =
+ {
+ sizeof (FormKeyClass),
+ NULL, /* base_init */
+ NULL, /* base_finalize */
+ (GClassInitFunc) form_key_class_init,
+ NULL, /* class_finalize */
+ NULL, /* class_data */
+ sizeof (FormKey),
+ 0, /* n_preallocs */
+ (GInstanceInitFunc) form_key_init,
+ NULL
+ };
+
+ form_key_type = g_type_register_static (G_TYPE_OBJECT, "FormKey",
+ &form_key_info, 0);
+ }
+
+ return form_key_type;
+}
+
+static void
+form_key_class_init (FormKeyClass *class)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (class);
+
+ g_type_class_add_private (object_class, sizeof (FormKeyPrivate));
+}
+
+static void
+form_key_init (FormKey *form_key)
+{
+ FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
+
+ priv->fields = NULL;
+}
+
+/**
+ * form_key_new:
+ *
+ * Returns: the newly created #FormKey.
+ */
+FormKey
+*form_key_new ()
+{
+ return g_object_new (TYPE_FORM_KEY, NULL);
+}
+
+/**
+ * form_key_add_field:
+ * @form_key: a #FormKey object.
+ * @field: a #FormField object.
+ *
+ */
+gboolean
+form_key_add_field (FormKey *form_key, FormField *field)
+{
+ gboolean ret = FALSE;
+
+ FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
+
+ g_return_val_if_fail (IS_FORM_FIELD (field), FALSE);
+
+ priv->fields = g_list_append (priv->fields, field);
+
+ ret = TRUE;
+
+ return ret;
+}
+
+/**
+ * form_key_remove_field:
+ * @form_key: a #FormKey object.
+ * @field: a #FormField object.
+ *
+ */
+gboolean
+form_key_remove_field (FormKey *form_key, FormField *field)
+{
+ gboolean ret = FALSE;
+
+ FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
+
+ g_return_val_if_fail (IS_FORM_FIELD (field), FALSE);
+
+ priv->fields = g_list_remove (priv->fields, field);
+
+ ret = TRUE;
+
+ return ret;
+}
+
+/**
+ * form_key_add_fields:
+ * @form_key: a #FormKey object.
+ *
+ */
+gboolean
+form_key_add_fields (FormKey *form_key, ...)
+{
+ FormField *field;
+
+ va_list vargs;
+
+ va_start (vargs, form_key);
+
+ while ((field = va_arg (vargs, FormField *)) != NULL)
+ {
+ form_key_add_field (form_key, field);
+ }
+
+ va_end (vargs);
+}
+
+/**
+ * form_key_check:
+ * @form_key: a #FormKey object.
+ *
+ * Returns: TRUE if all obligatory fields are full.
+ */
+gboolean
+form_key_check (FormKey *form_key)
+{
+ FormField *field;
+ gboolean ret = FALSE;
+
+ FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
+
+ GList *fields = g_list_first (priv->fields);
+
+ while (fields != NULL)
+ {
+ field = (FormField *)fields->data;
+
+ if (form_field_is_empty (field))
+ {
+ ret = TRUE;
+ break;
+ }
+
+ fields = g_list_next (fields);
+ }
+
+ return ret;
+}
+
+/**
+ * form_key_get_sql:
+ * @form_key: a #FormKey object.
+ *
+ */
+gchar
+*form_key_get_sql (FormKey *form_key)
+{
+ FormField *field;
+ gchar *sql = "";
+ gchar *field_name;
+
+ g_return_val_if_fail (IS_FORM_KEY (form_key), NULL);
+
+ FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
+
+ GList *fields = g_list_first (priv->fields);
+
+ while (fields != NULL)
+ {
+ field = (FormField *)fields->data;
+
+ g_object_get (G_OBJECT (field),
+ "field", &field_name,
+ NULL);
+
+ sql = g_strconcat (sql, " AND ", field_name, " = ",
+ form_field_get_value_sql (field), NULL);
+
+ fields = g_list_next (fields);
+ }
+
+ if (strcmp (sql, "") != 0)
+ {
+ sql = g_strconcat (" WHERE ", g_strdup (sql + 5), NULL);
+ }
+
+ return sql;
+}
+
+/**
+ * form_key_field_is_key:
+ * @form_key: a #FormKey object.
+ * @field: a #FormField object.
+ *
+ * Returns: TRUE if @field is part of @form_key.
+ */
+gboolean
+form_key_field_is_key (FormKey *form_key, FormField *field)
+{
+ g_return_val_if_fail (IS_FORM_KEY (form_key), FALSE);
+ g_return_val_if_fail (IS_FORM_FIELD (field), FALSE);
+
+ FormKeyPrivate *priv = FORM_KEY_GET_PRIVATE (form_key);
+
+ return (g_list_index (priv->fields, field) >= 0 ? TRUE : FALSE);
+}
--- /dev/null
+/*
+ * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_KEY_H__
+#define __LIBFORM_KEY_H__
+
+#include <glib.h>
+
+#include "field.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_KEY (form_key_get_type ())
+#define FORM_KEY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_KEY, FormKey))
+#define FORM_KEY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_KEY, FormKeyClass))
+#define IS_FORM_KEY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_KEY))
+#define IS_FORM_KEY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_KEY))
+#define FORM_KEY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_KEY, FormKeyClass))
+
+
+typedef struct _FormKey FormKey;
+typedef struct _FormKeyClass FormKeyClass;
+
+struct _FormKey
+ {
+ GObject parent;
+ };
+
+struct _FormKeyClass
+ {
+ GObjectClass parent_class;
+ };
+
+GType form_key_get_type (void) G_GNUC_CONST;
+
+
+FormKey *form_key_new (void);
+
+gboolean form_key_add_field (FormKey *form_key, FormField *field);
+gboolean form_key_remove_field (FormKey *form_key, FormField *field);
+
+gboolean form_key_add_fields (FormKey *form_key, ...);
+
+gboolean form_key_check (FormKey *form_key);
+
+gchar *form_key_get_sql (FormKey *form_key);
+
+gboolean form_key_field_is_key (FormKey *form_key, FormField *field);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_KEY_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_H__
-#define __LIBFORM_H__
-
-#include <glib.h>
-#include <glade/glade.h>
-
-#include <libformfield.h>
-#include <libformwidget.h>
-#include <libformkey.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM (form_get_type ())
-#define FORM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM, Form))
-#define FORM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM, FormClass))
-#define IS_FORM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM))
-#define IS_FORM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM))
-#define FORM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM, FormClass))
-
-
-typedef struct _Form Form;
-typedef struct _FormClass FormClass;
-
-struct _Form
- {
- GObject parent;
- };
-
-struct _FormClass
- {
- GObjectClass parent_class;
- };
-
-GType form_get_type (void) G_GNUC_CONST;
-
-
-Form *form_new (void);
-
-gboolean form_add_field (Form *form, FormField *field);
-gboolean form_remove_field (Form *form, FormField *field);
-
-gboolean form_add_fields (Form *form, ...);
-
-FormField *form_get_field_from_name (Form *form, const gchar *field_name);
-FormWidget *form_get_widget_from_name (Form *form, const gchar *widget_name);
-
-gboolean form_clear (Form *form);
-
-gboolean form_check (Form *form);
-
-void form_set_sensitive (Form *form, gboolean sensitive);
-void form_set_editable (Form *form, gboolean editable);
-
-typedef enum
-{
- FORM_SQL_SELECT,
- FORM_SQL_INSERT,
- FORM_SQL_UPDATE,
- FORM_SQL_DELETE
-} FormSqlType;
-
-gchar *form_get_sql (Form *form, FormSqlType type);
-
-gboolean form_fill_from_datamodel (Form *form, GdaDataModel *dm, gint row);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_FIELD_H__
-#define __LIBFORM_FIELD_H__
-
-#include <glib.h>
-
-#include <libgdaex.h>
-
-#include <libformwidget.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_FIELD (form_field_get_type ())
-#define FORM_FIELD(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD, FormField))
-#define FORM_FIELD_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD, FormFieldClass))
-#define IS_FORM_FIELD(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD))
-#define IS_FORM_FIELD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD))
-#define FORM_FIELD_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD, FormFieldClass))
-
-
-typedef struct _FormField FormField;
-typedef struct _FormFieldClass FormFieldClass;
-
-struct _FormField
- {
- GObject parent;
- };
-
-struct _FormFieldClass
- {
- GObjectClass parent_class;
-
- const gchar *(*get_value_stringify) (FormField *field);
- const GValue *(*get_value) (FormField *field);
- const gchar *(*get_value_sql) (FormField *field);
-
- gboolean (*clear) (FormField *field);
- gboolean (*is_empty) (FormField *field);
- gboolean (*set_from_datamodel) (FormField *field, GdaDataModel *dm, gint row);
- };
-
-GType form_field_get_type (void) G_GNUC_CONST;
-
-FormField *form_field_new (void);
-FormField *form_field_new_from_form_widget (FormWidget *fwidget);
-
-const gchar *form_field_get_field_name (FormField *field);
-FormWidget *form_field_get_form_widget (FormField *field);
-
-const gchar *form_field_get_value_stringify (FormField *field);
-const GValue *form_field_get_value (FormField *field);
-const gchar *form_field_get_value_sql (FormField *field);
-
-gboolean form_field_clear (FormField *field);
-
-gboolean form_field_is_empty (FormField *field);
-
-gboolean form_field_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_FIELD_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_FIELD_BOOLEAN_H__
-#define __LIBFORM_FIELD_BOOLEAN_H__
-
-#include <libgdaex.h>
-
-#include <libformfield.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_FIELD_BOOLEAN (form_field_boolean_get_type ())
-#define FORM_FIELD_BOOLEAN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD_BOOLEAN, FormFieldBoolean))
-#define FORM_FIELD_BOOLEAN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD_BOOLEAN, FormFieldBooleanClass))
-#define IS_FORM_FIELD_BOOLEAN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD_BOOLEAN))
-#define IS_FORM_FIELD_BOOLEAN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD_BOOLEAN))
-#define FORM_FIELD_BOOLEAN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD_BOOLEAN, FormFieldBooleanClass))
-
-
-typedef struct _FormFieldBoolean FormFieldBoolean;
-typedef struct _FormFieldBooleanClass FormFieldBooleanClass;
-
-struct _FormFieldBoolean
- {
- FormField parent;
- };
-
-struct _FormFieldBooleanClass
- {
- FormFieldClass parent_class;
- };
-
-GType form_field_boolean_get_type (void) G_GNUC_CONST;
-
-FormField *form_field_boolean_new (void);
-
-const gchar *form_field_boolean_get_value_stringify (FormField *field);
-const GValue *form_field_boolean_get_value (FormField *field);
-const gchar *form_field_boolean_get_value_sql (FormField *field);
-
-gboolean form_field_boolean_clear (FormField *field);
-
-gboolean form_field_boolean_is_empty (FormField *field);
-
-gboolean form_field_boolean_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_FIELD_BOOLEAN_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_FIELD_DATETIME_H__
-#define __LIBFORM_FIELD_DATETIME_H__
-
-#include <libgdaex.h>
-
-#include <libformfield.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_FIELD_DATETIME (form_field_datetime_get_type ())
-#define FORM_FIELD_DATETIME(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD_DATETIME, FormFieldDateTime))
-#define FORM_FIELD_DATETIME_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD_DATETIME, FormFieldDateTimeClass))
-#define IS_FORM_FIELD_DATETIME(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD_DATETIME))
-#define IS_FORM_FIELD_DATETIME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD_DATETIME))
-#define FORM_FIELD_DATETIME_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD_DATETIME, FormFieldDateTimeClass))
-
-
-typedef struct _FormFieldDateTime FormFieldDateTime;
-typedef struct _FormFieldDateTimeClass FormFieldDateTimeClass;
-
-struct _FormFieldDateTime
- {
- FormField parent;
- };
-
-struct _FormFieldDateTimeClass
- {
- FormFieldClass parent_class;
- };
-
-GType form_field_datetime_get_type (void) G_GNUC_CONST;
-
-enum
-{
- FORM_FIELD_DATETIME_TYPE_DATETIME,
- FORM_FIELD_DATETIME_TYPE_DATE,
- FORM_FIELD_DATETIME_TYPE_TIME
-};
-
-FormField *form_field_datetime_new (void);
-
-const gchar *form_field_datetime_get_value_stringify (FormField *field);
-const GValue *form_field_datetime_get_value (FormField *field);
-const gchar *form_field_datetime_get_value_sql (FormField *field);
-
-gboolean form_field_datetime_clear (FormField *field);
-
-gboolean form_field_datetime_is_empty (FormField *field);
-
-gboolean form_field_datetime_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_FIELD_DATETIME_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_FIELD_FLOAT_H__
-#define __LIBFORM_FIELD_FLOAT_H__
-
-#include <libgdaex.h>
-
-#include <libformfield.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_FIELD_FLOAT (form_field_float_get_type ())
-#define FORM_FIELD_FLOAT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD_FLOAT, FormFieldFloat))
-#define FORM_FIELD_FLOAT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD_FLOAT, FormFieldFloatClass))
-#define IS_FORM_FIELD_FLOAT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD_FLOAT))
-#define IS_FORM_FIELD_FLOAT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD_FLOAT))
-#define FORM_FIELD_FLOAT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD_FLOAT, FormFieldFloatClass))
-
-
-typedef struct _FormFieldFloat FormFieldFloat;
-typedef struct _FormFieldFloatClass FormFieldFloatClass;
-
-struct _FormFieldFloat
- {
- FormField parent;
- };
-
-struct _FormFieldFloatClass
- {
- FormFieldClass parent_class;
- };
-
-GType form_field_float_get_type (void) G_GNUC_CONST;
-
-FormField *form_field_float_new (void);
-
-const gchar *form_field_float_get_value_stringify (FormField *field);
-const GValue *form_field_float_get_value (FormField *field);
-const gchar *form_field_float_get_value_sql (FormField *field);
-
-gboolean form_field_float_clear (FormField *field);
-
-gboolean form_field_float_is_empty (FormField *field);
-
-gboolean form_field_float_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_FIELD_FLOAT_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_FIELD_INTEGER_H__
-#define __LIBFORM_FIELD_INTEGER_H__
-
-#include <libgdaex.h>
-
-#include <libformfield.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_FIELD_INTEGER (form_field_integer_get_type ())
-#define FORM_FIELD_INTEGER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD_INTEGER, FormFieldInteger))
-#define FORM_FIELD_INTEGER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD_INTEGER, FormFieldIntegerClass))
-#define IS_FORM_FIELD_INTEGER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD_INTEGER))
-#define IS_FORM_FIELD_INTEGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD_INTEGER))
-#define FORM_FIELD_INTEGER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD_INTEGER, FormFieldIntegerClass))
-
-
-typedef struct _FormFieldInteger FormFieldInteger;
-typedef struct _FormFieldIntegerClass FormFieldIntegerClass;
-
-struct _FormFieldInteger
- {
- FormField parent;
- };
-
-struct _FormFieldIntegerClass
- {
- FormFieldClass parent_class;
- };
-
-GType form_field_integer_get_type (void) G_GNUC_CONST;
-
-FormField *form_field_integer_new (void);
-
-const gchar *form_field_integer_get_value_stringify (FormField *field);
-const GValue *form_field_integer_get_value (FormField *field);
-const gchar *form_field_integer_get_value_sql (FormField *field);
-
-gboolean form_field_integer_clear (FormField *field);
-
-gboolean form_field_integer_is_empty (FormField *field);
-
-gboolean form_field_integer_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_FIELD_INTEGER_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_FIELD_TEXT_H__
-#define __LIBFORM_FIELD_TEXT_H__
-
-#include <libgdaex.h>
-
-#include <libformfield.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_FIELD_TEXT (form_field_text_get_type ())
-#define FORM_FIELD_TEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_FIELD_TEXT, FormFieldText))
-#define FORM_FIELD_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_FIELD_TEXT, FormFieldTextClass))
-#define IS_FORM_FIELD_TEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_FIELD_TEXT))
-#define IS_FORM_FIELD_TEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_FIELD_TEXT))
-#define FORM_FIELD_TEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_FIELD_TEXT, FormFieldTextClass))
-
-
-typedef struct _FormFieldText FormFieldText;
-typedef struct _FormFieldTextClass FormFieldTextClass;
-
-struct _FormFieldText
- {
- FormField parent;
- };
-
-struct _FormFieldTextClass
- {
- FormFieldClass parent_class;
- };
-
-GType form_field_text_get_type (void) G_GNUC_CONST;
-
-FormField *form_field_text_new (void);
-
-const gchar *form_field_text_get_value_stringify (FormField *field);
-const GValue *form_field_text_get_value (FormField *field);
-const gchar *form_field_text_get_value_sql (FormField *field);
-
-gboolean form_field_text_clear (FormField *field);
-
-gboolean form_field_text_is_empty (FormField *field);
-
-gboolean form_field_text_set_from_datamodel (FormField *field, GdaDataModel *dm, gint row);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_FIELD_TEXT_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_KEY_H__
-#define __LIBFORM_KEY_H__
-
-#include <glib.h>
-
-#include <libformfield.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_KEY (form_key_get_type ())
-#define FORM_KEY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_KEY, FormKey))
-#define FORM_KEY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_KEY, FormKeyClass))
-#define IS_FORM_KEY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_KEY))
-#define IS_FORM_KEY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_KEY))
-#define FORM_KEY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_KEY, FormKeyClass))
-
-
-typedef struct _FormKey FormKey;
-typedef struct _FormKeyClass FormKeyClass;
-
-struct _FormKey
- {
- GObject parent;
- };
-
-struct _FormKeyClass
- {
- GObjectClass parent_class;
- };
-
-GType form_key_get_type (void) G_GNUC_CONST;
-
-
-FormKey *form_key_new (void);
-
-gboolean form_key_add_field (FormKey *form_key, FormField *field);
-gboolean form_key_remove_field (FormKey *form_key, FormField *field);
-
-gboolean form_key_add_fields (FormKey *form_key, ...);
-
-gboolean form_key_check (FormKey *form_key);
-
-gchar *form_key_get_sql (FormKey *form_key);
-
-gboolean form_key_field_is_key (FormKey *form_key, FormField *field);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_KEY_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_WIDGET_H__
-#define __LIBFORM_WIDGET_H__
-
-#include <glib.h>
-#include <gtk/gtk.h>
-#include <glade/glade.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_WIDGET (form_widget_get_type ())
-#define FORM_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET, FormWidget))
-#define FORM_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET, FormWidgetClass))
-#define IS_FORM_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET))
-#define IS_FORM_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET))
-#define FORM_WIDGET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET, FormWidgetClass))
-
-
-typedef struct _FormWidget FormWidget;
-typedef struct _FormWidgetClass FormWidgetClass;
-
-struct _FormWidget
- {
- GObject parent;
- };
-
-struct _FormWidgetClass
- {
- GObjectClass parent_class;
-
- const gchar *(*get_value_stringify) (FormWidget *fwidget);
-
- gboolean (*set_value_stringify) (FormWidget *fwidget, const gchar *value);
-
- void (*set_editable) (FormWidget *fwidget, gboolean editable);
- };
-
-GType form_widget_get_type (void) G_GNUC_CONST;
-
-FormWidget *form_widget_new (void);
-
-gboolean form_widget_set_from_glade (FormWidget *fwidget, GladeXML *glade, const gchar *widget_name);
-
-GtkWidget *form_widget_get_widget (FormWidget *fwidget);
-
-const gchar *form_widget_get_widget_name (FormWidget *fwidget);
-
-const gchar *form_widget_get_value_stringify (FormWidget *fwidget);
-
-gboolean form_widget_set_value_stringify (FormWidget *fwidget, const gchar *value);
-
-void form_widget_set_editable (FormWidget *fwidget, gboolean editable);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_WIDGET_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_WIDGET_CHECK_H__
-#define __LIBFORM_WIDGET_CHECK_H__
-
-#include <libformwidget.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_WIDGET_CHECK (form_widget_check_get_type ())
-#define FORM_WIDGET_CHECK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_CHECK, FormWidgetCheck))
-#define FORM_WIDGET_CHECK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_CHECK, FormWidgetCheckClass))
-#define IS_FORM_WIDGET_CHECK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_CHECK))
-#define IS_FORM_WIDGET_CHECK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_CHECK))
-#define FORM_WIDGET_CHECK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_CHECK, FormWidgetCheckClass))
-
-
-typedef struct _FormWidgetCheck FormWidgetCheck;
-typedef struct _FormWidgetCheckClass FormWidgetCheckClass;
-
-struct _FormWidgetCheck
- {
- FormWidget parent;
- };
-
-struct _FormWidgetCheckClass
- {
- FormWidgetClass parent_class;
- };
-
-GType form_widget_check_get_type (void) G_GNUC_CONST;
-
-FormWidget *form_widget_check_new (void);
-
-const gchar *form_widget_check_get_value_stringify (FormWidget *widget);
-
-gboolean form_widget_check_set_value_stringify (FormWidget *fwidget, const gchar *value);
-
-void form_widget_check_set_editable (FormWidget *fwidget, gboolean editable);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_WIDGET_CHECK_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_WIDGET_COMBO_BOX_H__
-#define __LIBFORM_WIDGET_COMBO_BOX_H__
-
-#include <libformwidget.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_WIDGET_COMBO_BOX (form_widget_combo_box_get_type ())
-#define FORM_WIDGET_COMBO_BOX(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_COMBO_BOX, FormWidgetComboBox))
-#define FORM_WIDGET_COMBO_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_COMBO_BOX, FormWidgetComboBoxClass))
-#define IS_FORM_WIDGET_COMBO_BOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_COMBO_BOX))
-#define IS_FORM_WIDGET_COMBO_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_COMBO_BOX))
-#define FORM_WIDGET_COMBO_BOX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_COMBO_BOX, FormWidgetComboBoxClass))
-
-
-typedef struct _FormWidgetComboBox FormWidgetComboBox;
-typedef struct _FormWidgetComboBoxClass FormWidgetComboBoxClass;
-
-struct _FormWidgetComboBox
- {
- FormWidget parent;
- };
-
-struct _FormWidgetComboBoxClass
- {
- FormWidgetClass parent_class;
- };
-
-GType form_widget_combo_box_get_type (void) G_GNUC_CONST;
-
-FormWidget *form_widget_combo_box_new (void);
-
-const gchar *form_widget_combo_box_get_value_stringify (FormWidget *widget);
-
-gboolean form_widget_combo_box_set_value_stringify (FormWidget *fwidget, const gchar *value);
-
-void form_widget_combo_box_set_editable (FormWidget *fwidget, gboolean editable);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_WIDGET_COMBO_BOX_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_WIDGET_ENTRY_H__
-#define __LIBFORM_WIDGET_ENTRY_H__
-
-#include <libformwidget.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_WIDGET_ENTRY (form_widget_entry_get_type ())
-#define FORM_WIDGET_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_ENTRY, FormWidgetEntry))
-#define FORM_WIDGET_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_ENTRY, FormWidgetEntryClass))
-#define IS_FORM_WIDGET_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_ENTRY))
-#define IS_FORM_WIDGET_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_ENTRY))
-#define FORM_WIDGET_ENTRY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_ENTRY, FormWidgetEntryClass))
-
-
-typedef struct _FormWidgetEntry FormWidgetEntry;
-typedef struct _FormWidgetEntryClass FormWidgetEntryClass;
-
-struct _FormWidgetEntry
- {
- FormWidget parent;
- };
-
-struct _FormWidgetEntryClass
- {
- FormWidgetClass parent_class;
- };
-
-GType form_widget_entry_get_type (void) G_GNUC_CONST;
-
-FormWidget *form_widget_entry_new (void);
-
-const gchar *form_widget_entry_get_value_stringify (FormWidget *widget);
-
-gboolean form_widget_entry_set_value_stringify (FormWidget *fwidget, const gchar *value);
-
-void form_widget_entry_set_editable (FormWidget *fwidget, gboolean editable);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_WIDGET_ENTRY_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_WIDGET_LABEL_H__
-#define __LIBFORM_WIDGET_LABEL_H__
-
-#include <libformwidget.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_WIDGET_LABEL (form_widget_label_get_type ())
-#define FORM_WIDGET_LABEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_LABEL, FormWidgetLabel))
-#define FORM_WIDGET_LABEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_LABEL, FormWidgetLabelClass))
-#define IS_FORM_WIDGET_LABEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_LABEL))
-#define IS_FORM_WIDGET_LABEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_LABEL))
-#define FORM_WIDGET_LABEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_LABEL, FormWidgetLabelClass))
-
-
-typedef struct _FormWidgetLabel FormWidgetLabel;
-typedef struct _FormWidgetLabelClass FormWidgetLabelClass;
-
-struct _FormWidgetLabel
- {
- FormWidget parent;
- };
-
-struct _FormWidgetLabelClass
- {
- FormWidgetClass parent_class;
- };
-
-GType form_widget_label_get_type (void) G_GNUC_CONST;
-
-FormWidget *form_widget_label_new (void);
-
-const gchar *form_widget_label_get_value_stringify (FormWidget *widget);
-
-gboolean form_widget_label_set_value_stringify (FormWidget *fwidget, const gchar *value);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_WIDGET_LABEL_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_WIDGET_SPIN_H__
-#define __LIBFORM_WIDGET_SPIN_H__
-
-#include <libformwidget.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_WIDGET_SPIN (form_widget_spin_get_type ())
-#define FORM_WIDGET_SPIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_SPIN, FormWidgetSpin))
-#define FORM_WIDGET_SPIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_SPIN, FormWidgetSpinClass))
-#define IS_FORM_WIDGET_SPIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_SPIN))
-#define IS_FORM_WIDGET_SPIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_SPIN))
-#define FORM_WIDGET_SPIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_SPIN, FormWidgetSpinClass))
-
-
-typedef struct _FormWidgetSpin FormWidgetSpin;
-typedef struct _FormWidgetSpinClass FormWidgetSpinClass;
-
-struct _FormWidgetSpin
- {
- FormWidget parent;
- };
-
-struct _FormWidgetSpinClass
- {
- FormWidgetClass parent_class;
- };
-
-GType form_widget_spin_get_type (void) G_GNUC_CONST;
-
-FormWidget *form_widget_spin_new (void);
-
-const gchar *form_widget_spin_get_value_stringify (FormWidget *widget);
-
-gboolean form_widget_spin_set_value_stringify (FormWidget *fwidget, const gchar *value);
-
-void form_widget_spin_set_editable (FormWidget *fwidget, gboolean editable);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_WIDGET_SPIN_H__ */
+++ /dev/null
-/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
- *
- * This program 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 of the License, or
- * (at your option) any later version.
- *
- * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef __LIBFORM_WIDGET_TEXTVIEW_H__
-#define __LIBFORM_WIDGET_TEXTVIEW_H__
-
-#include <libformwidget.h>
-
-
-G_BEGIN_DECLS
-
-
-#define TYPE_FORM_WIDGET_TEXTVIEW (form_widget_textview_get_type ())
-#define FORM_WIDGET_TEXTVIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_TEXTVIEW, FormWidgetTextview))
-#define FORM_WIDGET_TEXTVIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_TEXTVIEW, FormWidgetTextviewClass))
-#define IS_FORM_WIDGET_TEXTVIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_TEXTVIEW))
-#define IS_FORM_WIDGET_TEXTVIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_TEXTVIEW))
-#define FORM_WIDGET_TEXTVIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_TEXTVIEW, FormWidgetTextviewClass))
-
-
-typedef struct _FormWidgetTextview FormWidgetTextview;
-typedef struct _FormWidgetTextviewClass FormWidgetTextviewClass;
-
-struct _FormWidgetTextview
- {
- FormWidget parent;
- };
-
-struct _FormWidgetTextviewClass
- {
- FormWidgetClass parent_class;
- };
-
-GType form_widget_textview_get_type (void) G_GNUC_CONST;
-
-FormWidget *form_widget_textview_new (void);
-
-const gchar *form_widget_textview_get_value_stringify (FormWidget *widget);
-
-gboolean form_widget_textview_set_value_stringify (FormWidget *fwidget, const gchar *value);
-
-void form_widget_textview_set_editable (FormWidget *fwidget, gboolean editable);
-
-
-G_END_DECLS
-
-
-#endif /* __LIBFORM_WIDGET_TEXTVIEW_H__ */
/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
#include <gtk/gtk.h>
-#include "libformwidget.h"
+#include "widget.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_WIDGET_H__
+#define __LIBFORM_WIDGET_H__
+
+#include <glib.h>
+#include <gtk/gtk.h>
+#include <glade/glade.h>
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_WIDGET (form_widget_get_type ())
+#define FORM_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET, FormWidget))
+#define FORM_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET, FormWidgetClass))
+#define IS_FORM_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET))
+#define IS_FORM_WIDGET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET))
+#define FORM_WIDGET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET, FormWidgetClass))
+
+
+typedef struct _FormWidget FormWidget;
+typedef struct _FormWidgetClass FormWidgetClass;
+
+struct _FormWidget
+ {
+ GObject parent;
+ };
+
+struct _FormWidgetClass
+ {
+ GObjectClass parent_class;
+
+ const gchar *(*get_value_stringify) (FormWidget *fwidget);
+
+ gboolean (*set_value_stringify) (FormWidget *fwidget, const gchar *value);
+
+ void (*set_editable) (FormWidget *fwidget, gboolean editable);
+ };
+
+GType form_widget_get_type (void) G_GNUC_CONST;
+
+FormWidget *form_widget_new (void);
+
+gboolean form_widget_set_from_glade (FormWidget *fwidget, GladeXML *glade, const gchar *widget_name);
+
+GtkWidget *form_widget_get_widget (FormWidget *fwidget);
+
+const gchar *form_widget_get_widget_name (FormWidget *fwidget);
+
+const gchar *form_widget_get_value_stringify (FormWidget *fwidget);
+
+gboolean form_widget_set_value_stringify (FormWidget *fwidget, const gchar *value);
+
+void form_widget_set_editable (FormWidget *fwidget, gboolean editable);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_WIDGET_H__ */
/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
#include <gtk/gtk.h>
-#include "libformwidgetcheck.h"
+#include "widgetcheck.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_WIDGET_CHECK_H__
+#define __LIBFORM_WIDGET_CHECK_H__
+
+#include "widget.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_WIDGET_CHECK (form_widget_check_get_type ())
+#define FORM_WIDGET_CHECK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_CHECK, FormWidgetCheck))
+#define FORM_WIDGET_CHECK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_CHECK, FormWidgetCheckClass))
+#define IS_FORM_WIDGET_CHECK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_CHECK))
+#define IS_FORM_WIDGET_CHECK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_CHECK))
+#define FORM_WIDGET_CHECK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_CHECK, FormWidgetCheckClass))
+
+
+typedef struct _FormWidgetCheck FormWidgetCheck;
+typedef struct _FormWidgetCheckClass FormWidgetCheckClass;
+
+struct _FormWidgetCheck
+ {
+ FormWidget parent;
+ };
+
+struct _FormWidgetCheckClass
+ {
+ FormWidgetClass parent_class;
+ };
+
+GType form_widget_check_get_type (void) G_GNUC_CONST;
+
+FormWidget *form_widget_check_new (void);
+
+const gchar *form_widget_check_get_value_stringify (FormWidget *widget);
+
+gboolean form_widget_check_set_value_stringify (FormWidget *fwidget, const gchar *value);
+
+void form_widget_check_set_editable (FormWidget *fwidget, gboolean editable);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_WIDGET_CHECK_H__ */
/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
#include <gtk/gtk.h>
-#include "libformwidgetcombobox.h"
+#include "widgetcombobox.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_WIDGET_COMBO_BOX_H__
+#define __LIBFORM_WIDGET_COMBO_BOX_H__
+
+#include "widget.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_WIDGET_COMBO_BOX (form_widget_combo_box_get_type ())
+#define FORM_WIDGET_COMBO_BOX(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_COMBO_BOX, FormWidgetComboBox))
+#define FORM_WIDGET_COMBO_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_COMBO_BOX, FormWidgetComboBoxClass))
+#define IS_FORM_WIDGET_COMBO_BOX(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_COMBO_BOX))
+#define IS_FORM_WIDGET_COMBO_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_COMBO_BOX))
+#define FORM_WIDGET_COMBO_BOX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_COMBO_BOX, FormWidgetComboBoxClass))
+
+
+typedef struct _FormWidgetComboBox FormWidgetComboBox;
+typedef struct _FormWidgetComboBoxClass FormWidgetComboBoxClass;
+
+struct _FormWidgetComboBox
+ {
+ FormWidget parent;
+ };
+
+struct _FormWidgetComboBoxClass
+ {
+ FormWidgetClass parent_class;
+ };
+
+GType form_widget_combo_box_get_type (void) G_GNUC_CONST;
+
+FormWidget *form_widget_combo_box_new (void);
+
+const gchar *form_widget_combo_box_get_value_stringify (FormWidget *widget);
+
+gboolean form_widget_combo_box_set_value_stringify (FormWidget *fwidget, const gchar *value);
+
+void form_widget_combo_box_set_editable (FormWidget *fwidget, gboolean editable);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_WIDGET_COMBO_BOX_H__ */
/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
#include <gtk/gtk.h>
-#include "libformwidgetentry.h"
+#include "widgetentry.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_WIDGET_ENTRY_H__
+#define __LIBFORM_WIDGET_ENTRY_H__
+
+#include "widget.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_WIDGET_ENTRY (form_widget_entry_get_type ())
+#define FORM_WIDGET_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_ENTRY, FormWidgetEntry))
+#define FORM_WIDGET_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_ENTRY, FormWidgetEntryClass))
+#define IS_FORM_WIDGET_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_ENTRY))
+#define IS_FORM_WIDGET_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_ENTRY))
+#define FORM_WIDGET_ENTRY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_ENTRY, FormWidgetEntryClass))
+
+
+typedef struct _FormWidgetEntry FormWidgetEntry;
+typedef struct _FormWidgetEntryClass FormWidgetEntryClass;
+
+struct _FormWidgetEntry
+ {
+ FormWidget parent;
+ };
+
+struct _FormWidgetEntryClass
+ {
+ FormWidgetClass parent_class;
+ };
+
+GType form_widget_entry_get_type (void) G_GNUC_CONST;
+
+FormWidget *form_widget_entry_new (void);
+
+const gchar *form_widget_entry_get_value_stringify (FormWidget *widget);
+
+gboolean form_widget_entry_set_value_stringify (FormWidget *fwidget, const gchar *value);
+
+void form_widget_entry_set_editable (FormWidget *fwidget, gboolean editable);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_WIDGET_ENTRY_H__ */
/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
#include <gtk/gtk.h>
-#include "libformwidgetlabel.h"
+#include "widgetlabel.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_WIDGET_LABEL_H__
+#define __LIBFORM_WIDGET_LABEL_H__
+
+#include "widget.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_WIDGET_LABEL (form_widget_label_get_type ())
+#define FORM_WIDGET_LABEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_LABEL, FormWidgetLabel))
+#define FORM_WIDGET_LABEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_LABEL, FormWidgetLabelClass))
+#define IS_FORM_WIDGET_LABEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_LABEL))
+#define IS_FORM_WIDGET_LABEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_LABEL))
+#define FORM_WIDGET_LABEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_LABEL, FormWidgetLabelClass))
+
+
+typedef struct _FormWidgetLabel FormWidgetLabel;
+typedef struct _FormWidgetLabelClass FormWidgetLabelClass;
+
+struct _FormWidgetLabel
+ {
+ FormWidget parent;
+ };
+
+struct _FormWidgetLabelClass
+ {
+ FormWidgetClass parent_class;
+ };
+
+GType form_widget_label_get_type (void) G_GNUC_CONST;
+
+FormWidget *form_widget_label_new (void);
+
+const gchar *form_widget_label_get_value_stringify (FormWidget *widget);
+
+gboolean form_widget_label_set_value_stringify (FormWidget *fwidget, const gchar *value);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_WIDGET_LABEL_H__ */
/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
#include <gtk/gtk.h>
-#include "libformwidgetspin.h"
+#include "widgetspin.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_WIDGET_SPIN_H__
+#define __LIBFORM_WIDGET_SPIN_H__
+
+#include "widget.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_WIDGET_SPIN (form_widget_spin_get_type ())
+#define FORM_WIDGET_SPIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_SPIN, FormWidgetSpin))
+#define FORM_WIDGET_SPIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_SPIN, FormWidgetSpinClass))
+#define IS_FORM_WIDGET_SPIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_SPIN))
+#define IS_FORM_WIDGET_SPIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_SPIN))
+#define FORM_WIDGET_SPIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_SPIN, FormWidgetSpinClass))
+
+
+typedef struct _FormWidgetSpin FormWidgetSpin;
+typedef struct _FormWidgetSpinClass FormWidgetSpinClass;
+
+struct _FormWidgetSpin
+ {
+ FormWidget parent;
+ };
+
+struct _FormWidgetSpinClass
+ {
+ FormWidgetClass parent_class;
+ };
+
+GType form_widget_spin_get_type (void) G_GNUC_CONST;
+
+FormWidget *form_widget_spin_new (void);
+
+const gchar *form_widget_spin_get_value_stringify (FormWidget *widget);
+
+gboolean form_widget_spin_set_value_stringify (FormWidget *fwidget, const gchar *value);
+
+void form_widget_spin_set_editable (FormWidget *fwidget, gboolean editable);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_WIDGET_SPIN_H__ */
/*
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@inwind.it>
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
#include <gtk/gtk.h>
-#include "libformwidgettextview.h"
+#include "widgettextview.h"
enum
{
--- /dev/null
+/*
+ * Copyright (C) 2005-2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This program 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 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __LIBFORM_WIDGET_TEXTVIEW_H__
+#define __LIBFORM_WIDGET_TEXTVIEW_H__
+
+#include "widget.h"
+
+
+G_BEGIN_DECLS
+
+
+#define TYPE_FORM_WIDGET_TEXTVIEW (form_widget_textview_get_type ())
+#define FORM_WIDGET_TEXTVIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_FORM_WIDGET_TEXTVIEW, FormWidgetTextview))
+#define FORM_WIDGET_TEXTVIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_FORM_WIDGET_TEXTVIEW, FormWidgetTextviewClass))
+#define IS_FORM_WIDGET_TEXTVIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_FORM_WIDGET_TEXTVIEW))
+#define IS_FORM_WIDGET_TEXTVIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_FORM_WIDGET_TEXTVIEW))
+#define FORM_WIDGET_TEXTVIEW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_FORM_WIDGET_TEXTVIEW, FormWidgetTextviewClass))
+
+
+typedef struct _FormWidgetTextview FormWidgetTextview;
+typedef struct _FormWidgetTextviewClass FormWidgetTextviewClass;
+
+struct _FormWidgetTextview
+ {
+ FormWidget parent;
+ };
+
+struct _FormWidgetTextviewClass
+ {
+ FormWidgetClass parent_class;
+ };
+
+GType form_widget_textview_get_type (void) G_GNUC_CONST;
+
+FormWidget *form_widget_textview_new (void);
+
+const gchar *form_widget_textview_get_value_stringify (FormWidget *widget);
+
+gboolean form_widget_textview_set_value_stringify (FormWidget *fwidget, const gchar *value);
+
+void form_widget_textview_set_editable (FormWidget *fwidget, gboolean editable);
+
+
+G_END_DECLS
+
+
+#endif /* __LIBFORM_WIDGET_TEXTVIEW_H__ */
#include <gtk/gtk.h>
#include <glade/glade.h>
-#include <libform.h>
-#include <libformfield.h>
-#include <libformfieldboolean.h>
-#include <libformfielddatetime.h>
-#include <libformfieldinteger.h>
-#include <libformfieldfloat.h>
-#include <libformfieldtext.h>
-#include <libformwidget.h>
-#include <libformwidgetcheck.h>
-#include <libformwidgetcombobox.h>
-#include <libformwidgetentry.h>
-#include <libformwidgetlabel.h>
-#include <libformwidgetspin.h>
-#include <libformwidgettextview.h>
+#include "form.h"
+#include "field.h"
+#include "fieldboolean.h"
+#include "fielddatetime.h"
+#include "fieldinteger.h"
+#include "fieldfloat.h"
+#include "fieldtext.h"
+#include "widget.h"
+#include "widgetcheck.h"
+#include "widgetcombobox.h"
+#include "widgetentry.h"
+#include "widgetlabel.h"
+#include "widgetspin.h"
+#include "widgettextview.h"
Form *form;