From: Andrea Zagli Date: Sat, 14 Aug 2010 15:59:11 +0000 (+0200) Subject: Started table management. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=9608f673523701c2d1bdbcb4bb01bf976b9e8c8d;p=zakaudit%2Fgui Started table management. --- diff --git a/data/audit-gui/gui/audit-gui.gui b/data/audit-gui/gui/audit-gui.gui index da6ed87..ba45c0e 100644 --- a/data/audit-gui/gui/audit-gui.gui +++ b/data/audit-gui/gui/audit-gui.gui @@ -333,20 +333,6 @@ - - - - - - - - - - - - - - @@ -365,14 +351,30 @@ - + + + + + + + + + + + + + + + Table - Audit GUI True center-on-parent + 450 + 300 True @@ -380,6 +382,88 @@ 5 vertical 5 + + + True + 3 + 2 + 5 + 5 + + + True + 0 + Table + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + 0 + ID + + + GTK_FILL + GTK_FILL + + + + + True + 0 + lbl_id + + + 1 + 2 + GTK_FILL + + + + + lbl_id_datasources + + + 2 + 3 + GTK_FILL + GTK_FILL + + + + + + + + True + lstore_tables + + + + 0 + + + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + False + 0 + + True @@ -391,12 +475,12 @@ True True - tstore_tables_fields + lstore_fields - - Table + + Fields - + 1 @@ -404,18 +488,12 @@ - - Field - - - - 3 - - + + Under audit - 4 + 2 @@ -424,7 +502,7 @@ - 0 + 1 @@ -463,7 +541,7 @@ False - 1 + 2 @@ -496,48 +574,35 @@ 0 - Datasource + Objects + 0 1 + 0 2 - - - - - Table + 3 4 - - - - - Field + 5 6 - - - - 8 - 7 - - @@ -554,11 +619,11 @@ end - gtk-new + New _Datasource True True True - True + True False @@ -566,6 +631,20 @@ 0 + + + New _Table + True + True + True + True + + + False + False + 1 + + gtk-edit @@ -577,7 +656,7 @@ False False - 1 + 2 @@ -591,7 +670,7 @@ False False - 2 + 3 diff --git a/src/Makefile.am b/src/Makefile.am index eaeb64e..834d082 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -16,4 +16,6 @@ audit_gui_SOURCES = \ datasources.h \ main.c \ openauditds.c \ - openauditds.h + openauditds.h \ + table.c \ + table.h diff --git a/src/datasources.c b/src/datasources.c index 9efbf8e..e433a8d 100644 --- a/src/datasources.c +++ b/src/datasources.c @@ -21,6 +21,7 @@ #include "datasources.h" #include "datasource.h" +#include "table.h" static void datasources_class_init (DatasourcesClass *klass); static void datasources_init (Datasources *datasources); @@ -39,7 +40,9 @@ static void datasources_get_property (GObject *object, GValue *value, GParamSpec *pspec); -static void datasources_on_btn_new_clicked (GtkButton *button, +static void datasources_on_btn_new_datasource_clicked (GtkButton *button, + gpointer user_data); +static void datasources_on_btn_new_table_clicked (GtkButton *button, gpointer user_data); static void datasources_on_btn_edit_clicked (GtkButton *button, gpointer user_data); @@ -126,7 +129,9 @@ Datasources priv->tstore_datasources = GTK_TREE_STORE (gtk_builder_get_object (priv->commons->gtkbuilder, "tstore_ds_tables_fields")); g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button7"), - "clicked", G_CALLBACK (datasources_on_btn_new_clicked), (gpointer)a); + "clicked", G_CALLBACK (datasources_on_btn_new_datasource_clicked), (gpointer)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button10"), + "clicked", G_CALLBACK (datasources_on_btn_new_table_clicked), (gpointer)a); g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button9"), "clicked", G_CALLBACK (datasources_on_btn_edit_clicked), (gpointer)a); g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button8"), @@ -301,15 +306,34 @@ datasources_edit (Datasources *datasources) gtk_tree_model_get (GTK_TREE_MODEL (priv->tstore_datasources), &iter, COL_ID_DS, &id, -1); + if (id != 0) + { + Datasource *c = datasource_new (priv->commons, id); - Datasource *c = datasource_new (priv->commons, id); + g_signal_connect (G_OBJECT (c), "updated", + G_CALLBACK (datasources_on_datasource_updated), (gpointer)datasources); + + w = datasource_get_widget (c); + gtk_window_set_transient_for (GTK_WINDOW (w), GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main"))); + gtk_widget_show_all (w); + } + else + { + gtk_tree_model_get (GTK_TREE_MODEL (priv->tstore_datasources), &iter, + COL_ID_TABLE, &id, + -1); + if (id != 0) + { + Table *c = table_new (priv->commons, id, 0); - g_signal_connect (G_OBJECT (c), "updated", - G_CALLBACK (datasources_on_datasource_updated), (gpointer)datasources); + g_signal_connect (G_OBJECT (c), "updated", + G_CALLBACK (datasources_on_datasource_updated), (gpointer)datasources); - w = datasource_get_widget (c); - gtk_window_set_transient_for (GTK_WINDOW (w), GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main"))); - gtk_widget_show_all (w); + w = table_get_widget (c); + gtk_window_set_transient_for (GTK_WINDOW (w), GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main"))); + gtk_widget_show (w); + } + } } else { @@ -361,7 +385,7 @@ datasources_get_property (GObject *object, guint property_id, GValue *value, GPa /* CALLBACK */ static void -datasources_on_btn_new_clicked (GtkButton *button, +datasources_on_btn_new_datasource_clicked (GtkButton *button, gpointer user_data) { GtkWidget *w; @@ -379,6 +403,83 @@ datasources_on_btn_new_clicked (GtkButton *button, gtk_widget_show_all (w); } +static void +datasources_on_btn_new_table_clicked (GtkButton *button, + gpointer user_data) +{ + GtkWidget *w; + + GtkWidget *dialog; + GtkTreeIter iter; + + guint id_ds; + + Datasources *datasources = (Datasources *)user_data; + DatasourcesPrivate *priv = DATASOURCES_GET_PRIVATE (datasources); + + if (gtk_tree_selection_get_selected (priv->selection, NULL, &iter)) + { + gtk_tree_model_get (GTK_TREE_MODEL (priv->tstore_datasources), &iter, + COL_ID_DS, &id_ds, + -1); + + if (id_ds == 0) + { + GtkTreePath *path; + + path = gtk_tree_model_get_path (GTK_TREE_MODEL (priv->tstore_datasources), &iter); + if (path != NULL) + { + guint depth; + + depth = gtk_tree_path_get_depth (path); + + if (depth >= 2) gtk_tree_path_up (path); + if (depth >= 3) gtk_tree_path_up (path); + + if (gtk_tree_model_get_iter (GTK_TREE_MODEL (priv->tstore_datasources), &iter, path)) + { + gtk_tree_model_get (GTK_TREE_MODEL (priv->tstore_datasources), &iter, + COL_ID_DS, &id_ds, + -1); + } + } + } + + if (id_ds != 0) + { + Table *c = table_new (priv->commons, 0, id_ds); + + g_signal_connect (G_OBJECT (c), "updated", + G_CALLBACK (datasources_on_datasource_updated), (gpointer)datasources); + + w = table_get_widget (c); + gtk_window_set_transient_for (GTK_WINDOW (w), GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main"))); + gtk_widget_show (w); + } + else + { + dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main")), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Select a datasource or a table."); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } + } + else + { + dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main")), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Select a datasource or a table."); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + static void datasources_on_btn_edit_clicked (GtkButton *button, gpointer user_data) @@ -417,9 +518,36 @@ datasources_on_btn_delete_clicked (GtkButton *button, -1); error = NULL; - stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, + if (id != 0) + { + stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, g_strdup_printf ("UPDATE datasources SET status = 'D' WHERE id = %d", id), NULL, NULL); + } + else + { + gtk_tree_model_get (GTK_TREE_MODEL (priv->tstore_datasources), &iter, + COL_ID_TABLE, &id, + -1); + if (id != 0) + { + stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, + g_strdup_printf ("UPDATE tables SET status = 'D' WHERE id = %d", id), + NULL, NULL); + + } + } + + if (stmt != NULL) + { + dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main")), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "You must select a datasource or a table."); + return; + } + if (gda_connection_statement_execute_non_select (priv->commons->gdacon, stmt, NULL, NULL, &error) <= 0) { dialog = gtk_message_dialog_new (GTK_WINDOW (gtk_builder_get_object (priv->commons->gtkbuilder, "w_main")), @@ -440,7 +568,7 @@ datasources_on_btn_delete_clicked (GtkButton *button, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_WARNING, GTK_BUTTONS_OK, - "Select a datasource."); + "Select a datasource or a table."); gtk_dialog_run (GTK_DIALOG (dialog)); gtk_widget_destroy (dialog); } diff --git a/src/table.c b/src/table.c new file mode 100644 index 0000000..470cabf --- /dev/null +++ b/src/table.c @@ -0,0 +1,418 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#include + +#include "table.h" + +static void table_class_init (TableClass *klass); +static void table_init (Table *table); + +static void table_load_db_tables (Table *table); +static void table_load (Table *table); +static void table_save (Table *table); + +static void table_set_property (GObject *object, + guint property_id, + const GValue *value, + GParamSpec *pspec); +static void table_get_property (GObject *object, + guint property_id, + GValue *value, + GParamSpec *pspec); + +static void table_on_cb_tables_changed (GtkComboBox *widget, + gpointer user_data); + +static void table_on_btn_cancel_clicked (GtkButton *button, + gpointer user_data); +static void table_on_btn_save_clicked (GtkButton *button, + gpointer user_data); + +#define TABLE_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_TABLE, TablePrivate)) + +typedef struct _TablePrivate TablePrivate; +struct _TablePrivate + { + Commons *commons; + + GtkWidget *w; + + gint id; + }; + +G_DEFINE_TYPE (Table, table, G_TYPE_OBJECT) + +static void +table_class_init (TableClass *klass) +{ + GObjectClass *object_class = G_OBJECT_CLASS (klass); + + g_type_class_add_private (object_class, sizeof (TablePrivate)); + + object_class->set_property = table_set_property; + object_class->get_property = table_get_property; + + /** + * Table::updated: + * @table: + * + */ + klass->updated_signal_id = g_signal_new ("updated", + G_TYPE_FROM_CLASS (object_class), + G_SIGNAL_RUN_LAST, + 0, + NULL, + NULL, + g_cclosure_marshal_VOID__VOID, + G_TYPE_NONE, + 0); +} + +static void +table_init (Table *table) +{ + TablePrivate *priv = TABLE_GET_PRIVATE (table); +} + +/** + * table_new: + * @commons: + * @id: + * @id_ds: + * + * Returns: the newly created #Table object. + */ +Table +*table_new (Commons *commons, guint id, guint id_datasources) +{ + GError *error; + + Table *a = TABLE (g_object_new (table_get_type (), NULL)); + + TablePrivate *priv = TABLE_GET_PRIVATE (a); + + priv->commons = commons; + + error = NULL; + gtk_builder_add_objects_from_file (priv->commons->gtkbuilder, priv->commons->guifile, + g_strsplit ("lstore_tables|lstore_fields|w_table", "|", -1), + &error); + if (error != NULL) + { + g_warning ("Errore: %s.", error->message); + return NULL; + } + + priv->w = GTK_WIDGET (gtk_builder_get_object (priv->commons->gtkbuilder, "w_table")); + + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "combobox1"), + "changed", G_CALLBACK (table_on_cb_tables_changed), (gpointer *)a); + + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button5"), + "clicked", G_CALLBACK (table_on_btn_cancel_clicked), (gpointer *)a); + g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button6"), + "clicked", G_CALLBACK (table_on_btn_save_clicked), (gpointer *)a); + + table_load_db_tables (a); + + priv->id = id; + if (priv->id == 0) + { + gtk_label_set_text (GTK_LABEL (gtk_builder_get_object (priv->commons->gtkbuilder, "label7")), ""); + gtk_label_set_text (GTK_LABEL (gtk_builder_get_object (priv->commons->gtkbuilder, "label8")), g_strdup_printf ("%d", id_datasources)); + } + else + { + gtk_label_set_text (GTK_LABEL (gtk_builder_get_object (priv->commons->gtkbuilder, "label7")), g_strdup_printf ("%d", priv->id)); + + table_load (a); + } + + return a; +} + +/** + * table_get_widget: + * @table: + * + */ +GtkWidget +*table_get_widget (Table *table) +{ + TablePrivate *priv = TABLE_GET_PRIVATE (table); + + return priv->w; +} + +/* PRIVATE */ +static void +table_load_db_tables (Table *table) +{ + GError *error; + + GdaMetaContext mcontext = {"_tables", 0, NULL, NULL}; + + GdaDataModel *dm; + + GtkTreeModel *model; + GtkTreeIter iter; + + guint rows; + guint row; + + TablePrivate *priv = TABLE_GET_PRIVATE (table); + + error = NULL; + if (!gda_connection_update_meta_store (priv->commons->gdacon, &mcontext, &error)) + { + GtkWidget *dialog; + dialog = gtk_message_dialog_new (GTK_WINDOW (priv->w), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Unable to get tables list.\n\n", + (error != NULL && error->message != NULL ? error->message : "No details.")); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + return; + } + + model = gtk_combo_box_get_model (GTK_COMBO_BOX (gtk_builder_get_object (priv->commons->gtkbuilder, "combobox1"))); + + gtk_list_store_clear (GTK_LIST_STORE (model)); + + error = NULL; + dm = gda_connection_get_meta_store_data (priv->commons->gdacon, + GDA_CONNECTION_META_TABLES, + &error, + 0); + if (dm != NULL) + { + rows = gda_data_model_get_n_rows (dm); + for (row = 0; row < rows; row++) + { + gtk_list_store_append (GTK_LIST_STORE (model), &iter); + gtk_list_store_set (GTK_LIST_STORE (model), &iter, + 0, gda_value_stringify (gda_data_model_get_value_at (dm, 0, row, NULL)), + -1); + } + } +} + +static void +table_set_table (Table *table, const gchar *table_name) +{ + GtkTreeModel *model; + GtkTreeIter iter; + + gchar *name; + + TablePrivate *priv = TABLE_GET_PRIVATE (table); + + model = gtk_combo_box_get_model (GTK_COMBO_BOX (gtk_builder_get_object (priv->commons->gtkbuilder, "combobox1"))); + + if (gtk_tree_model_get_iter_first (model, &iter)) + { + do + { + gtk_tree_model_get (model, &iter, 0, &name, -1); + if (name != NULL && g_strcmp0 (name, table_name) == 0) + { + gtk_combo_box_set_active_iter (GTK_COMBO_BOX (gtk_builder_get_object (priv->commons->gtkbuilder, "combobox1")), + &iter); + break; + } + } while (gtk_tree_model_iter_next (model, &iter)); + } +} + +static void +table_load (Table *table) +{ + TablePrivate *priv = TABLE_GET_PRIVATE (table); + + GError *error; + gchar *sql; + GdaStatement *stmt; + GdaDataModel *dm; + + sql = g_strdup_printf ("SELECT name FROM tables WHERE id = %d", + priv->id); + stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, sql, NULL, NULL); + dm = gda_connection_statement_execute_select (priv->commons->gdacon, stmt, NULL, &error); + g_object_unref (stmt); + if (dm != NULL && gda_data_model_get_n_rows (dm) == 1) + { + table_set_table (table, gda_value_stringify (gda_data_model_get_value_at (dm, 0, 0, NULL))); + } + else + { + GtkWidget *dialog; + dialog = gtk_message_dialog_new (GTK_WINDOW (priv->w), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Record %d doesn't exist.", priv->id); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +table_save (Table *table) +{ + GError *error; + gchar *sql; + GdaStatement *stmt; + GdaDataModel *dm; + GtkWidget *dialog; + + gchar *cncstring; + + TableClass *klass = TABLE_GET_CLASS (table); + + TablePrivate *priv = TABLE_GET_PRIVATE (table); + + if (priv->id == 0) + { + /* find the new id */ + guint new_id; + + new_id = 0; + sql = g_strdup_printf ("SELECT COALESCE (MAX (id), 0) FROM tables"); + stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, sql, NULL, NULL); + dm = gda_connection_statement_execute_select (priv->commons->gdacon, stmt, NULL, &error); + g_object_unref (stmt); + if (dm != NULL && gda_data_model_get_n_rows (dm) == 1) + { + new_id = g_value_get_int (gda_data_model_get_value_at (dm, 0, 0, NULL)); + } + new_id++; + + sql = g_strdup_printf ("INSERT INTO tables (id, name)" + " VALUES (%d, '%s')", + new_id, + gtk_entry_get_text (GTK_ENTRY (gtk_builder_get_object (priv->commons->gtkbuilder, "entry1")))); + stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, sql, NULL, NULL); + } + else + { + sql = g_strdup_printf ("UPDATE tables" + " SET" + " name = '%s'" + " WHERE id = %d", + gtk_entry_get_text (GTK_ENTRY (gtk_builder_get_object (priv->commons->gtkbuilder, "entry1"))), + priv->id); + stmt = gda_sql_parser_parse_string (priv->commons->gdaparser, sql, NULL, NULL); + } + + error = NULL; + if (gda_connection_statement_execute_non_select (priv->commons->gdacon, stmt, NULL, NULL, &error) == 1) + { + g_object_unref (stmt); + + g_signal_emit (table, klass->updated_signal_id, 0); + + if (priv->id == 0) + { + priv->id = strtol (gtk_label_get_text (GTK_LABEL (gtk_builder_get_object (priv->commons->gtkbuilder, "label7"))), NULL, 10); + } + + dialog = gtk_message_dialog_new (GTK_WINDOW (priv->w), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_INFO, + GTK_BUTTONS_OK, + "Saved with success."); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } + else + { + if (priv->id == 0) + { + gtk_label_set_text (GTK_LABEL (gtk_builder_get_object (priv->commons->gtkbuilder, "label7")), ""); + } + + dialog = gtk_message_dialog_new (GTK_WINDOW (priv->w), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_WARNING, + GTK_BUTTONS_OK, + "Error on saving.\n\n%s", + (error != NULL && error->message != NULL ? error->message : "No details.")); + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); + } +} + +static void +table_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) +{ + Table *table = TABLE (object); + + TablePrivate *priv = TABLE_GET_PRIVATE (table); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +static void +table_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) +{ + Table *table = TABLE (object); + + TablePrivate *priv = TABLE_GET_PRIVATE (table); + + switch (property_id) + { + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); + break; + } +} + +/* CALLBACK */ +static void +table_on_cb_tables_changed (GtkComboBox *widget, + gpointer user_data) +{ + +} + +static void +table_on_btn_cancel_clicked (GtkButton *button, + gpointer user_data) +{ + Table *table = (Table *)user_data; + + TablePrivate *priv = TABLE_GET_PRIVATE (table); + + gtk_widget_destroy (priv->w); +} + +static void +table_on_btn_save_clicked (GtkButton *button, + gpointer user_data) +{ + table_save ((Table *)user_data); +} diff --git a/src/table.h b/src/table.h new file mode 100644 index 0000000..95130ff --- /dev/null +++ b/src/table.h @@ -0,0 +1,66 @@ +/* + * Copyright (C) 2010 Andrea Zagli + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifndef __TABLE_H__ +#define __TABLE_H__ + +#include +#include + +#include +#include + +#include "commons.h" + +G_BEGIN_DECLS + + +#define TYPE_TABLE (table_get_type ()) +#define TABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_TABLE, Table)) +#define TABLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_TABLE, TableClass)) +#define IS_TABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_TABLE)) +#define IS_TABLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_TABLE)) +#define TABLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_TABLE, TableClass)) + + +typedef struct _Table Table; +typedef struct _TableClass TableClass; + +struct _Table + { + GObject parent; + }; + +struct _TableClass + { + GObjectClass parent_class; + + guint updated_signal_id; + }; + +GType table_get_type (void) G_GNUC_CONST; + +Table *table_new (Commons *commons, guint id, guint id_datasources); + +GtkWidget *table_get_widget (Table *table); + + +G_END_DECLS + +#endif /* __TABLE_H__ */