Patch #5209
[pspp-builds.git] / src / ui / gui / psppire-dict.c
index 357ec031b5504aae5de48c72355b4dbf146642df..435be90cb2a86d17cf0fe9f804f3c8d5c44f7da8 100644 (file)
@@ -22,7 +22,8 @@
 #include <string.h>
 #include <stdlib.h>
 
-#include <gtksheet/gtkextra-marshal.c>
+#include <gtk/gtk.h>
+#include <gtksheet/gtkextra-marshal.h>
 
 #include "psppire-object.h"
 #include "psppire-dict.h"
@@ -40,13 +41,15 @@ static void psppire_dict_class_init (PsppireDictClass       *class);
 static void psppire_dict_init  (PsppireDict            *dict);
 static void psppire_dict_finalize      (GObject                *object);
 
+static void dictionary_tree_model_init(GtkTreeModelIface *iface);
+
 
 /* --- variables --- */
 static GObjectClass     *parent_class = NULL;
 
 enum  {VARIABLE_CHANGED, 
+       VARIABLE_RESIZED,
        VARIABLE_INSERTED,
-       VARIABLE_DELETED, 
        VARIABLES_DELETED, 
        n_SIGNALS};
 
@@ -78,8 +81,20 @@ psppire_dict_get_type (void)
        (GInstanceInitFunc) psppire_dict_init,
       };
 
-      object_type = g_type_register_static (G_TYPE_PSPPIRE_OBJECT, "PsppireDict",
+      static const GInterfaceInfo tree_model_info = {
+       (GInterfaceInitFunc) dictionary_tree_model_init, 
+       NULL, 
+       NULL
+      };
+
+      object_type = g_type_register_static (G_TYPE_PSPPIRE_OBJECT, 
+                                           "PsppireDict",
                                            &object_info, 0);
+
+      g_type_add_interface_static(object_type, GTK_TYPE_TREE_MODEL, 
+                                 &tree_model_info);
+
+
     }
 
   return object_type;
@@ -119,20 +134,22 @@ psppire_dict_class_init (PsppireDictClass *class)
                  1,
                  G_TYPE_INT);
 
-  signal[VARIABLE_DELETED] =
-    g_signal_new ("variable_deleted",
+
+  signal[VARIABLES_DELETED] =
+    g_signal_new ("variables_deleted",
                  G_TYPE_FROM_CLASS(class),
                  G_SIGNAL_RUN_FIRST,
                  0,
                  NULL, NULL,
-                 g_cclosure_marshal_VOID__INT,
+                 gtkextra_VOID__INT_INT,
                  G_TYPE_NONE, 
-                 1,
+                 2,
+                 G_TYPE_INT,
                  G_TYPE_INT);
 
 
-  signal[VARIABLES_DELETED] =
-    g_signal_new ("variables_deleted",
+  signal[VARIABLE_RESIZED] =
+    g_signal_new ("dict-size-changed",
                  G_TYPE_FROM_CLASS(class),
                  G_SIGNAL_RUN_FIRST,
                  0,
@@ -151,8 +168,6 @@ psppire_dict_finalize (GObject *object)
   gint v;
   PsppireDict *d = PSPPIRE_DICT (object);
   
-
-
   for (v = 0 ; v < psppire_dict_get_var_cnt(d) ; ++v ) 
     g_free(d->variables[v]);
 
@@ -171,6 +186,8 @@ psppire_dict_init (PsppireDict *psppire_dict)
 
   psppire_dict->variables = 0; 
   psppire_dict->cache_size = 0;
+
+  psppire_dict->stamp = g_random_int();
 }
 
 /**
@@ -212,10 +229,10 @@ static gchar *
 auto_generate_var_name(PsppireDict *dict)
 {
   gint d = 0;
-  static gchar name[255];
+  static gchar name[10];
 
 
-  while (g_snprintf(name, 255, "VAR%05d",d++),
+  while (g_snprintf(name, 10, "VAR%05d",d++),
         psppire_dict_lookup_var(dict, name))
     ;
 
@@ -228,6 +245,7 @@ auto_generate_var_name(PsppireDict *dict)
 void
 psppire_dict_insert_variable(PsppireDict *d, gint idx, const gchar *name)
 {
+  struct variable *var ;
   gint i;
   g_return_if_fail(d);
   g_return_if_fail(G_IS_PSPPIRE_DICT(d));
@@ -257,12 +275,10 @@ psppire_dict_insert_variable(PsppireDict *d, gint idx, const gchar *name)
   if ( ! name ) 
     name = auto_generate_var_name(d);
   
-  struct variable *var = 
-    dict_create_var(d->dict, name, 0);
+  var = dict_create_var(d->dict, name, 0);
 
   dict_reorder_var(d->dict, var, idx);
 
-
   d->variables[idx] = g_malloc(sizeof (struct PsppireVariable));
   d->variables[idx]->v = var;
   d->variables[idx]->dict = d;
@@ -297,6 +313,7 @@ psppire_dict_delete_variables(PsppireDict *d, gint first, gint n)
       var = dict_get_var(d->dict, first);
       dict_delete_var (d->dict, var);
     }
+  dict_compact_values(d->dict);
 
   g_signal_emit(d, signal[VARIABLES_DELETED], 0, first, idx );  
 }
@@ -321,7 +338,6 @@ psppire_dict_set_name(PsppireDict* d, gint idx, const gchar *name)
     {
       /* new variable */
       dict_create_var(d->dict, name, 0);
-      g_print("Emitting variable-inserted signal\n");
       g_signal_emit(d, signal[VARIABLE_INSERTED], 0, idx);
     }
 }
@@ -332,14 +348,17 @@ psppire_dict_set_name(PsppireDict* d, gint idx, const gchar *name)
 struct PsppireVariable *
 psppire_dict_get_variable(PsppireDict *d, gint idx)
 {
+  struct PsppireVariable *var ;
   g_return_val_if_fail(d, NULL);
   g_return_val_if_fail(d->dict, NULL);
-  g_return_val_if_fail(d->variables, NULL);
+
+  if ( ! d->variables) 
+    return NULL;
   
   if (idx < 0 || idx >= psppire_dict_get_var_cnt(d))
     return NULL;
 
-  struct PsppireVariable *var = d->variables[idx] ; 
+  var = d->variables[idx] ; 
 
   if (! var ) 
     {
@@ -394,19 +413,21 @@ psppire_dict_clear(PsppireDict *d)
   g_return_if_fail(d);
   g_return_if_fail(d->dict);
 
-  const gint n_vars = dict_get_var_cnt(d->dict);
-  gint i;
+  {
+    const gint n_vars = dict_get_var_cnt(d->dict);
+    gint i;
   
-  dict_clear(d->dict);
+    dict_clear(d->dict);
 
-  /* Invalidate the entire cache */
-  for ( i = 0 ; i < d->cache_size ; ++i ) 
-    {
-      g_free(d->variables[i]);
-      d->variables[i] = 0;
-    }
+    /* Invalidate the entire cache */
+    for ( i = 0 ; i < d->cache_size ; ++i ) 
+      {
+       g_free(d->variables[i]);
+       d->variables[i] = 0;
+      }
 
-  g_signal_emit(d, signal[VARIABLES_DELETED], 0, 0, n_vars );  
+    g_signal_emit(d, signal[VARIABLES_DELETED], 0, 0, n_vars );  
+  }
 }
 
 
@@ -431,3 +452,246 @@ psppire_dict_check_name(const PsppireDict *dict,
 
   return TRUE;
 }
+
+
+inline gint 
+psppire_dict_get_next_value_idx (const PsppireDict *dict)
+{
+  return dict_get_next_value_idx(dict->dict);
+}
+
+
+void 
+psppire_dict_resize_variable(PsppireDict *d, const struct PsppireVariable *pv,
+                            gint old_size, gint new_size)
+{
+  gint fv;
+  g_return_if_fail (d);
+  g_return_if_fail (d->dict);
+  
+  if ( old_size == new_size ) 
+    return ;
+
+  pv->v->nv = new_size;
+
+  dict_compact_values(d->dict);
+
+  fv = psppire_variable_get_fv(pv);
+
+  g_signal_emit(d, signal[VARIABLE_RESIZED], 0, 
+               fv + old_size, 
+               new_size - old_size );  
+}
+
+
+
+
+
+/* Tree Model Stuff */
+
+static GtkTreeModelFlags tree_model_get_flags(GtkTreeModel *model);
+
+static gint tree_model_n_columns(GtkTreeModel *model);
+
+static GType tree_model_column_type(GtkTreeModel *model, gint index);
+
+static gboolean tree_model_get_iter(GtkTreeModel *model, GtkTreeIter *iter, 
+                                   GtkTreePath *path);
+
+static gboolean tree_model_iter_next(GtkTreeModel *model, GtkTreeIter *iter);
+
+static GtkTreePath * tree_model_get_path(GtkTreeModel *model, 
+                                        GtkTreeIter *iter);
+
+static void tree_model_get_value(GtkTreeModel *model, GtkTreeIter *iter,
+                                gint column, GValue *value);
+
+static gboolean tree_model_nth_child(GtkTreeModel *model, GtkTreeIter *iter, 
+                                    GtkTreeIter *parent, gint n);
+
+
+static void
+dictionary_tree_model_init(GtkTreeModelIface *iface)
+{
+  iface->get_flags = tree_model_get_flags;
+  iface->get_n_columns = tree_model_n_columns;
+  iface->get_column_type = tree_model_column_type;
+  iface->get_iter = tree_model_get_iter;
+  iface->iter_next = tree_model_iter_next;
+  iface->get_path = tree_model_get_path;
+  iface->get_value = tree_model_get_value;
+
+  iface->iter_children = 0;
+  iface->iter_has_child =0;
+  iface->iter_n_children =0;
+  iface->iter_nth_child = tree_model_nth_child ;
+  iface->iter_parent =0;
+}
+
+static GtkTreeModelFlags
+tree_model_get_flags(GtkTreeModel *model)
+{
+  g_return_val_if_fail(G_IS_PSPPIRE_DICT(model), (GtkTreeModelFlags) 0);
+
+  return GTK_TREE_MODEL_LIST_ONLY;
+}
+
+
+static gint
+tree_model_n_columns(GtkTreeModel *model)
+{
+  return n_DICT_COLS;
+}
+
+static GType
+tree_model_column_type(GtkTreeModel *model, gint index)
+{
+ g_return_val_if_fail(G_IS_PSPPIRE_DICT(model), (GType) 0);
+
+ switch(index) 
+   {
+   case DICT_TVM_COL_NAME:
+     return G_TYPE_STRING;
+     break;
+   case DICT_TVM_COL_VAR:
+     return G_TYPE_POINTER;
+     break;
+   default:
+     g_return_val_if_reached((GType)0);
+     break;
+   }
+
+ g_assert_not_reached();
+ return ((GType)0);
+}
+
+static gboolean
+tree_model_get_iter(GtkTreeModel *model, GtkTreeIter *iter, GtkTreePath *path)
+{
+  gint *indices, depth;
+  gint n;
+  struct PsppireVariable *variable;
+
+  PsppireDict *dict = PSPPIRE_DICT (model);
+
+  g_return_val_if_fail(path, FALSE);
+
+  indices = gtk_tree_path_get_indices(path);
+  depth = gtk_tree_path_get_depth(path);
+
+  g_return_val_if_fail(depth == 1, FALSE);
+
+  n = indices[0];
+
+  if ( n < 0 || n >= psppire_dict_get_var_cnt(dict)) 
+    return FALSE;
+
+  variable = psppire_dict_get_variable(dict, n);
+
+  g_assert(psppire_variable_get_index(variable) == n);
+
+  iter->stamp = dict->stamp;
+  iter->user_data = variable; 
+
+  return TRUE;
+}
+
+
+static gboolean
+tree_model_iter_next(GtkTreeModel *model, GtkTreeIter *iter)
+{
+  PsppireDict *dict = PSPPIRE_DICT (model);
+  struct PsppireVariable *variable;
+  gint idx;
+
+  g_return_val_if_fail(iter->stamp == dict->stamp, FALSE);
+
+  if ( iter == NULL || iter->user_data == NULL)
+    return FALSE;
+
+  variable = (struct PsppireVariable *) iter->user_data;
+
+  idx = psppire_variable_get_index(variable);
+  
+  if ( idx + 1 >= psppire_dict_get_var_cnt(dict))
+    return FALSE;
+
+  variable = psppire_dict_get_variable(dict, idx + 1);
+
+  g_assert(psppire_variable_get_index(variable) == idx + 1);
+  
+  iter->user_data = variable;
+
+  return TRUE;
+}
+
+static GtkTreePath *
+tree_model_get_path(GtkTreeModel *model, GtkTreeIter *iter)
+{
+  GtkTreePath *path;
+  struct PsppireVariable *variable;
+  PsppireDict *dict = PSPPIRE_DICT (model);
+
+  g_return_val_if_fail(iter->stamp == dict->stamp, FALSE);
+
+  variable = (struct PsppireVariable *) iter->user_data;
+
+  path = gtk_tree_path_new();
+  gtk_tree_path_append_index(path, psppire_variable_get_index(variable));
+
+  return path;
+}
+
+
+static void
+tree_model_get_value(GtkTreeModel *model, GtkTreeIter *iter,
+                    gint column, GValue *value)
+{
+  struct PsppireVariable *variable;
+  PsppireDict *dict = PSPPIRE_DICT (model);
+
+  g_return_if_fail(iter->stamp == dict->stamp);
+
+  variable = (struct PsppireVariable *) iter->user_data;
+
+  switch(column)
+    {
+    case DICT_TVM_COL_NAME:
+      g_value_init(value, G_TYPE_STRING);
+      g_value_set_string(value, psppire_variable_get_name(variable));
+      break;
+    case DICT_TVM_COL_VAR:
+      g_value_init(value, G_TYPE_POINTER);
+      g_value_set_pointer(value, variable);
+      break;
+    default:
+      g_return_if_reached();
+      break;
+    }
+}
+
+
+static gboolean
+tree_model_nth_child(GtkTreeModel *model, GtkTreeIter *iter, 
+                    GtkTreeIter *parent, gint n)
+{
+  PsppireDict *dict;
+  g_return_val_if_fail(G_IS_PSPPIRE_DICT(model), FALSE);
+
+  dict = PSPPIRE_DICT(model);
+
+  if ( parent ) 
+    return FALSE;
+
+  if ( n >= psppire_dict_get_var_cnt(dict) ) 
+    return FALSE;
+
+  iter->stamp = dict->stamp;
+  iter->user_data = psppire_dict_get_variable(dict, n);
+
+  if ( !iter->user_data) 
+    return FALSE;
+  
+  
+  return TRUE;
+}