psppire-dict: Make auto_generate_var_name() public, and rename.
[pspp] / src / ui / gui / psppire-dict.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2004, 2006, 2007, 2009, 2010, 2011, 2012  Free Software Foundation
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include "ui/gui/psppire-dict.h"
20
21 #include <string.h>
22 #include <stdlib.h>
23 #include <gtk/gtk.h>
24
25 #include "data/dictionary.h"
26 #include "data/identifier.h"
27 #include "data/missing-values.h"
28 #include "data/value-labels.h"
29 #include "data/variable.h"
30 #include "libpspp/i18n.h"
31 #include "libpspp/message.h"
32 #include "ui/gui/helper.h"
33 #include "ui/gui/psppire-marshal.h"
34 #include "ui/gui/psppire-var-ptr.h"
35
36 #include <gettext.h>
37 #define _(msgid) gettext (msgid)
38 #define N_(msgid) msgid
39
40 enum  {
41   BACKEND_CHANGED,
42
43   VARIABLE_CHANGED,
44   VARIABLE_RESIZED,
45   VARIABLE_INSERTED,
46   VARIABLE_DELETED,
47   VARIABLE_DISPLAY_WIDTH_CHANGED,
48
49   WEIGHT_CHANGED,
50   FILTER_CHANGED,
51   SPLIT_CHANGED,
52   n_SIGNALS
53 };
54
55
56 /* --- prototypes --- */
57 static void psppire_dict_class_init     (PsppireDictClass       *class);
58 static void psppire_dict_init   (PsppireDict            *dict);
59 static void psppire_dict_finalize       (GObject                *object);
60
61 static void dictionary_tree_model_init (GtkTreeModelIface *iface);
62
63
64 /* --- variables --- */
65 static GObjectClass     *parent_class = NULL;
66
67 static guint signals [n_SIGNALS];
68
69 /* --- functions --- */
70 /**
71  * psppire_dict_get_type:
72  * @returns: the type ID for accelerator groups.
73  */
74 GType
75 psppire_dict_get_type (void)
76 {
77   static GType object_type = 0;
78
79   if (!object_type)
80     {
81       static const GTypeInfo object_info = {
82         sizeof (PsppireDictClass),
83         (GBaseInitFunc) NULL,
84         (GBaseFinalizeFunc) NULL,
85         (GClassInitFunc) psppire_dict_class_init,
86         NULL,   /* class_finalize */
87         NULL,   /* class_data */
88         sizeof (PsppireDict),
89         0,      /* n_preallocs */
90         (GInstanceInitFunc) psppire_dict_init,
91       };
92
93       static const GInterfaceInfo tree_model_info = {
94         (GInterfaceInitFunc) dictionary_tree_model_init,
95         NULL,
96         NULL
97       };
98
99       object_type = g_type_register_static (G_TYPE_OBJECT,
100                                             "PsppireDict",
101                                             &object_info, 0);
102
103       g_type_add_interface_static (object_type, GTK_TYPE_TREE_MODEL,
104                                    &tree_model_info);
105     }
106
107   return object_type;
108 }
109
110
111 static void
112 psppire_dict_class_init (PsppireDictClass *class)
113 {
114   GObjectClass *object_class = G_OBJECT_CLASS (class);
115
116   parent_class = g_type_class_peek_parent (class);
117
118   object_class->finalize = psppire_dict_finalize;
119
120   signals [BACKEND_CHANGED] =
121     g_signal_new ("backend-changed",
122                   G_TYPE_FROM_CLASS (class),
123                   G_SIGNAL_RUN_FIRST,
124                   0,
125                   NULL, NULL,
126                   g_cclosure_marshal_VOID__VOID,
127                   G_TYPE_NONE,
128                   0);
129
130
131   signals [VARIABLE_CHANGED] =
132     g_signal_new ("variable_changed",
133                   G_TYPE_FROM_CLASS (class),
134                   G_SIGNAL_RUN_FIRST,
135                   0,
136                   NULL, NULL,
137                   g_cclosure_marshal_VOID__INT,
138                   G_TYPE_NONE,
139                   1,
140                   G_TYPE_INT);
141
142
143
144   signals [VARIABLE_INSERTED] =
145     g_signal_new ("variable_inserted",
146                   G_TYPE_FROM_CLASS (class),
147                   G_SIGNAL_RUN_FIRST,
148                   0,
149                   NULL, NULL,
150                   g_cclosure_marshal_VOID__INT,
151                   G_TYPE_NONE,
152                   1,
153                   G_TYPE_INT);
154
155
156   signals [VARIABLE_DELETED] =
157     g_signal_new ("variable-deleted",
158                   G_TYPE_FROM_CLASS (class),
159                   G_SIGNAL_RUN_FIRST,
160                   0,
161                   NULL, NULL,
162                   psppire_marshal_VOID__POINTER_INT_INT,
163                   G_TYPE_NONE,
164                   3,
165                   G_TYPE_POINTER,
166                   G_TYPE_INT,
167                   G_TYPE_INT);
168
169
170   signals [VARIABLE_RESIZED] =
171     g_signal_new ("dict-size-changed",
172                   G_TYPE_FROM_CLASS (class),
173                   G_SIGNAL_RUN_FIRST,
174                   0,
175                   NULL, NULL,
176                   psppire_marshal_VOID__INT_INT,
177                   G_TYPE_NONE,
178                   2,
179                   G_TYPE_INT,
180                   G_TYPE_INT);
181
182   signals [VARIABLE_DISPLAY_WIDTH_CHANGED] =
183     g_signal_new ("variable-display-width-changed",
184                   G_TYPE_FROM_CLASS (class),
185                   G_SIGNAL_RUN_FIRST,
186                   0,
187                   NULL, NULL,
188                   g_cclosure_marshal_VOID__INT,
189                   G_TYPE_NONE,
190                   1,
191                   G_TYPE_INT);
192
193
194   signals [WEIGHT_CHANGED] =
195     g_signal_new ("weight-changed",
196                   G_TYPE_FROM_CLASS (class),
197                   G_SIGNAL_RUN_FIRST,
198                   0,
199                   NULL, NULL,
200                   g_cclosure_marshal_VOID__INT,
201                   G_TYPE_NONE,
202                   1,
203                   G_TYPE_INT);
204
205
206   signals [FILTER_CHANGED] =
207     g_signal_new ("filter-changed",
208                   G_TYPE_FROM_CLASS (class),
209                   G_SIGNAL_RUN_FIRST,
210                   0,
211                   NULL, NULL,
212                   g_cclosure_marshal_VOID__INT,
213                   G_TYPE_NONE,
214                   1,
215                   G_TYPE_INT);
216
217
218   signals [SPLIT_CHANGED] =
219     g_signal_new ("split-changed",
220                   G_TYPE_FROM_CLASS (class),
221                   G_SIGNAL_RUN_FIRST,
222                   0,
223                   NULL, NULL,
224                   g_cclosure_marshal_VOID__VOID,
225                   G_TYPE_NONE,
226                   0);
227 }
228
229 static void
230 psppire_dict_finalize (GObject *object)
231 {
232   PsppireDict *d = PSPPIRE_DICT (object);
233
234   dict_destroy (d->dict);
235
236   G_OBJECT_CLASS (parent_class)->finalize (object);
237 }
238
239 /* Pass on callbacks from src/data/dictionary, as
240    signals in the Gtk library */
241 static void
242 addcb (struct dictionary *d, int idx, void *pd)
243 {
244   PsppireDict *dict = PSPPIRE_DICT (pd);
245
246   if ( ! dict->disable_insert_signal)
247     g_signal_emit (dict, signals [VARIABLE_INSERTED], 0, idx);
248 }
249
250 static void
251 delcb (struct dictionary *d, const struct variable *var,
252        int dict_idx, int case_idx, void *pd)
253 {
254   g_signal_emit (pd, signals [VARIABLE_DELETED], 0,
255                  var, dict_idx, case_idx);
256 }
257
258 static void
259 mutcb (struct dictionary *d, int idx, void *pd)
260 {
261   g_signal_emit (pd, signals [VARIABLE_CHANGED], 0, idx);
262 }
263
264 static void
265 resize_cb (struct dictionary *d, int idx, int old_width, void *pd)
266 {
267   g_signal_emit (pd, signals [VARIABLE_RESIZED], 0, idx, old_width);
268 }
269
270 static void
271 weight_changed_callback (struct dictionary *d, int idx, void *pd)
272 {
273   g_signal_emit (pd, signals [WEIGHT_CHANGED], 0, idx);
274 }
275
276 static void
277 filter_changed_callback (struct dictionary *d, int idx, void *pd)
278 {
279   g_signal_emit (pd, signals [FILTER_CHANGED], 0, idx);
280 }
281
282 static void
283 split_changed_callback (struct dictionary *d, void *pd)
284 {
285   g_signal_emit (pd, signals [SPLIT_CHANGED], 0);
286 }
287
288 static void
289 variable_display_width_callback (struct dictionary *d, int idx, void *pd)
290 {
291   g_signal_emit (pd, signals [VARIABLE_DISPLAY_WIDTH_CHANGED], 0, idx);
292 }
293
294
295
296 static const struct dict_callbacks gui_callbacks =
297   {
298     addcb,
299     delcb,
300     mutcb,
301     resize_cb,
302     weight_changed_callback,
303     filter_changed_callback,
304     split_changed_callback,
305     variable_display_width_callback
306   };
307
308 static void
309 psppire_dict_init (PsppireDict *psppire_dict)
310 {
311   psppire_dict->stamp = g_random_int ();
312   psppire_dict->disable_insert_signal = FALSE;
313 }
314
315 /**
316  * psppire_dict_new_from_dict:
317  * @returns: a new #PsppireDict object
318  *
319  * Creates a new #PsppireDict.
320  */
321 PsppireDict*
322 psppire_dict_new_from_dict (struct dictionary *d)
323 {
324   PsppireDict *new_dict = g_object_new (PSPPIRE_TYPE_DICT, NULL);
325   new_dict->dict = d;
326
327   dict_set_callbacks (new_dict->dict, &gui_callbacks, new_dict);
328
329   return new_dict;
330 }
331
332
333 void
334 psppire_dict_replace_dictionary (PsppireDict *dict, struct dictionary *d)
335 {
336   struct variable *var =  dict_get_weight (d);
337
338   dict->dict = d;
339
340   weight_changed_callback (d, var ? var_get_dict_index (var) : -1, dict);
341
342   var = dict_get_filter (d);
343   filter_changed_callback (d, var ? var_get_dict_index (var) : -1, dict);
344
345   split_changed_callback (d, dict);
346
347   dict_set_callbacks (dict->dict, &gui_callbacks, dict);
348
349   g_signal_emit (dict, signals [BACKEND_CHANGED], 0);
350 }
351
352
353 /* Stores a valid name for a new variable in DICT into the SIZE bytes in NAME.
354    Returns true if successful, false if SIZE is insufficient. */
355 bool
356 psppire_dict_generate_name (const PsppireDict *dict, char *name, size_t size)
357 {
358   gint d;
359
360   for (d = 1; ; d++)
361     {
362       int len;
363
364       /* TRANSLATORS: This string must be a valid variable name.  That means:
365          - The string must be at most 64 bytes (not characters) long.
366          - The string may not contain whitespace.
367          - The first character may not be '$'
368          - The first character may not be a digit
369          - The final charactor may not be '.' or '_'
370       */
371       len = snprintf (name, size, _("Var%04d"), d);
372       if (len + 1 >= size)
373         return false;
374
375       if (psppire_dict_lookup_var (dict, name) == NULL)
376         return true;
377     }
378
379   return name;
380 }
381
382 /* Insert a new variable at posn IDX, with the name NAME.
383    If NAME is null, then a name will be automatically assigned.
384 */
385 void
386 psppire_dict_insert_variable (PsppireDict *d, gint idx, const gchar *name)
387 {
388   struct variable *var ;
389   char tmpname[64];
390
391   g_return_if_fail (idx >= 0);
392   g_return_if_fail (d);
393   g_return_if_fail (PSPPIRE_IS_DICT (d));
394
395   if ( ! name )
396     {
397       if (!psppire_dict_generate_name (d, tmpname, sizeof tmpname))
398         g_return_if_reached ();
399
400       name = tmpname;
401     }
402
403   d->disable_insert_signal = TRUE;
404
405   var = dict_create_var (d->dict, name, 0);
406
407   dict_reorder_var (d->dict, var, idx);
408
409   d->disable_insert_signal = FALSE;
410
411   g_signal_emit (d, signals[VARIABLE_INSERTED], 0, idx);
412 }
413
414 /* Delete N variables beginning at FIRST */
415 void
416 psppire_dict_delete_variables (PsppireDict *d, gint first, gint n)
417 {
418   gint idx;
419   g_return_if_fail (d);
420   g_return_if_fail (d->dict);
421   g_return_if_fail (PSPPIRE_IS_DICT (d));
422
423   for (idx = 0 ; idx < n ; ++idx )
424     {
425       struct variable *var;
426
427       /* Do nothing if it's out of bounds */
428       if ( first >= dict_get_var_cnt (d->dict))
429         break;
430
431       var = dict_get_var (d->dict, first);
432       dict_delete_var (d->dict, var);
433     }
434 }
435
436
437 gboolean
438 psppire_dict_set_name (PsppireDict* d, gint idx, const gchar *name)
439 {
440   struct variable *var;
441   g_assert (d);
442   g_assert (PSPPIRE_IS_DICT (d));
443
444   if ( ! dict_id_is_valid (d->dict, name, false))
445     return FALSE;
446
447   if ( idx < dict_get_var_cnt (d->dict))
448     {
449       /* This is an existing variable? */
450       var = dict_get_var (d->dict, idx);
451       dict_rename_var (d->dict, var, name);
452     }
453   else
454     {
455       /* new variable */
456       dict_create_var (d->dict, name, 0);
457     }
458
459   return TRUE;
460 }
461
462
463
464 /* Return the IDXth variable.
465    Will return NULL if IDX  exceeds the number of variables in the dictionary.
466  */
467 struct variable *
468 psppire_dict_get_variable (const PsppireDict *d, gint idx)
469 {
470   g_return_val_if_fail (d, NULL);
471   g_return_val_if_fail (d->dict, NULL);
472
473   if ( dict_get_var_cnt (d->dict) <= idx )
474     return NULL;
475
476   return dict_get_var (d->dict, idx);
477 }
478
479
480 /* Return the number of variables in the dictionary */
481 gint
482 psppire_dict_get_var_cnt (const PsppireDict *d)
483 {
484   g_return_val_if_fail (d, -1);
485   g_return_val_if_fail (d->dict, -1);
486
487   return dict_get_var_cnt (d->dict);
488 }
489
490
491 /* Return the number of `union value's in the dictionary */
492 size_t
493 psppire_dict_get_value_cnt (const PsppireDict *d)
494 {
495   g_return_val_if_fail (d, -1);
496   g_return_val_if_fail (d->dict, -1);
497
498   return dict_get_next_value_idx (d->dict);
499 }
500
501
502 /* Returns the prototype for the cases that match the dictionary */
503 const struct caseproto *
504 psppire_dict_get_proto (const PsppireDict *d)
505 {
506   g_return_val_if_fail (d, NULL);
507   g_return_val_if_fail (d->dict, NULL);
508
509   return dict_get_proto (d->dict);
510 }
511
512
513 /* Return a variable by name.
514    Return NULL if it doesn't exist
515 */
516 struct variable *
517 psppire_dict_lookup_var (const PsppireDict *d, const gchar *name)
518 {
519   g_return_val_if_fail (d, NULL);
520   g_return_val_if_fail (d->dict, NULL);
521
522   return dict_lookup_var (d->dict, name);
523 }
524
525 /* Clears the contents of D */
526 void
527 psppire_dict_clear (PsppireDict *d)
528 {
529   g_return_if_fail (d);
530   g_return_if_fail (d->dict);
531
532   {
533     dict_clear (d->dict);
534   }
535 }
536
537
538 /* Return true is NAME would be a valid name of a variable to add to the
539    dictionary.  False otherwise.
540    If REPORT is true, then invalid names will be reported as such as errors
541 */
542 gboolean
543 psppire_dict_check_name (const PsppireDict *dict,
544                          const gchar *name, gboolean report)
545 {
546   if ( ! dict_id_is_valid (dict->dict, name, report ) )
547     return FALSE;
548
549   if (psppire_dict_lookup_var (dict, name))
550     {
551       if ( report )
552         msg (ME, _("Duplicate variable name."));
553       return FALSE;
554     }
555
556   return TRUE;
557 }
558
559
560 gint
561 psppire_dict_get_next_value_idx (const PsppireDict *dict)
562 {
563   return dict_get_next_value_idx (dict->dict);
564 }
565
566
567 void
568 psppire_dict_resize_variable (PsppireDict *d, const struct variable *pv,
569                               gint old_size, gint new_size)
570 {
571   g_return_if_fail (d);
572   g_return_if_fail (d->dict);
573
574   if ( old_size == new_size )
575     return ;
576
577   g_signal_emit (d, signals [VARIABLE_RESIZED], 0,
578                  var_get_dict_index (pv),
579                  new_size - old_size );
580 }
581
582
583 /* Tree Model Stuff */
584
585 static GtkTreeModelFlags tree_model_get_flags (GtkTreeModel *model);
586
587 static gint tree_model_n_columns (GtkTreeModel *model);
588
589 static GType tree_model_column_type (GtkTreeModel *model, gint index);
590
591 static gboolean tree_model_get_iter (GtkTreeModel *model, GtkTreeIter *iter,
592                                      GtkTreePath *path);
593
594 static gboolean tree_model_iter_next (GtkTreeModel *model, GtkTreeIter *iter);
595
596 static GtkTreePath * tree_model_get_path (GtkTreeModel *model,
597                                           GtkTreeIter *iter);
598
599 static void tree_model_get_value (GtkTreeModel *model, GtkTreeIter *iter,
600                                   gint column, GValue *value);
601
602 static gboolean tree_model_nth_child (GtkTreeModel *model, GtkTreeIter *iter,
603                                       GtkTreeIter *parent, gint n);
604
605 static gint tree_model_n_children (GtkTreeModel *tree_model,
606                                    GtkTreeIter  *iter);
607
608 static gboolean tree_model_iter_children (GtkTreeModel *,
609                                           GtkTreeIter *,
610                                           GtkTreeIter *);
611
612 static gboolean tree_model_iter_parent (GtkTreeModel *tree_model,
613                                         GtkTreeIter *iter,
614                                         GtkTreeIter *child);
615
616 static gboolean tree_model_iter_has_child  (GtkTreeModel *tree_model,
617                                             GtkTreeIter  *iter);
618
619 static void
620 dictionary_tree_model_init (GtkTreeModelIface *iface)
621 {
622   iface->get_flags = tree_model_get_flags;
623   iface->get_n_columns = tree_model_n_columns;
624   iface->get_column_type = tree_model_column_type;
625   iface->get_iter = tree_model_get_iter;
626   iface->iter_next = tree_model_iter_next;
627   iface->get_path = tree_model_get_path;
628   iface->get_value = tree_model_get_value;
629
630   iface->iter_children = tree_model_iter_children ;
631   iface->iter_has_child = tree_model_iter_has_child ;
632   iface->iter_n_children = tree_model_n_children ;
633   iface->iter_nth_child = tree_model_nth_child ;
634   iface->iter_parent = tree_model_iter_parent ;
635 }
636
637 static gboolean
638 tree_model_iter_has_child  (GtkTreeModel *tree_model,
639                             GtkTreeIter  *iter)
640 {
641   return FALSE;
642 }
643
644 static gboolean
645 tree_model_iter_parent (GtkTreeModel *tree_model,
646                         GtkTreeIter *iter,
647                         GtkTreeIter *child)
648 {
649   return TRUE;
650 }
651
652 static GtkTreeModelFlags
653 tree_model_get_flags (GtkTreeModel *model)
654 {
655   g_return_val_if_fail (PSPPIRE_IS_DICT (model), (GtkTreeModelFlags) 0);
656
657   return GTK_TREE_MODEL_LIST_ONLY;
658 }
659
660
661 static gint
662 tree_model_n_columns (GtkTreeModel *model)
663 {
664   return n_DICT_COLS;
665 }
666
667 static GType
668 tree_model_column_type (GtkTreeModel *model, gint index)
669 {
670   g_return_val_if_fail (PSPPIRE_IS_DICT (model), (GType) 0);
671
672   switch (index)
673     {
674     case DICT_TVM_COL_NAME:
675       return G_TYPE_STRING;
676       break;
677     case DICT_TVM_COL_VAR:
678       return PSPPIRE_VAR_PTR_TYPE;
679       break;
680     default:
681       g_return_val_if_reached ((GType)0);
682       break;
683     }
684
685   g_assert_not_reached ();
686   return ((GType)0);
687 }
688
689 static gboolean
690 tree_model_get_iter (GtkTreeModel *model, GtkTreeIter *iter, GtkTreePath *path)
691 {
692   gint *indices, depth;
693   gint n;
694   struct variable *var;
695
696   PsppireDict *dict = PSPPIRE_DICT (model);
697
698   g_return_val_if_fail (path, FALSE);
699
700   indices = gtk_tree_path_get_indices (path);
701   depth = gtk_tree_path_get_depth (path);
702
703   g_return_val_if_fail (depth == 1, FALSE);
704
705   n = indices [0];
706
707   if ( n < 0 || n >= psppire_dict_get_var_cnt (dict))
708     {
709       iter->stamp = 0;
710       iter->user_data = NULL;
711       return FALSE;
712     }
713
714   var = psppire_dict_get_variable (dict, n);
715
716   g_assert (var_get_dict_index (var) == n);
717
718   iter->stamp = dict->stamp;
719   iter->user_data = var;
720
721   return TRUE;
722 }
723
724
725 static gboolean
726 tree_model_iter_next (GtkTreeModel *model, GtkTreeIter *iter)
727 {
728   PsppireDict *dict = PSPPIRE_DICT (model);
729   struct variable *var;
730   gint idx;
731
732   g_return_val_if_fail (iter->stamp == dict->stamp, FALSE);
733
734   if ( iter == NULL || iter->user_data == NULL)
735     return FALSE;
736
737   var = iter->user_data;
738
739   idx = var_get_dict_index (var);
740
741   if ( idx + 1 >= psppire_dict_get_var_cnt (dict))
742     {
743       iter->user_data = NULL;
744       iter->stamp = 0;
745       return FALSE;
746     }
747
748   var = psppire_dict_get_variable (dict, idx + 1);
749
750   g_assert (var_get_dict_index (var) == idx + 1);
751
752   iter->user_data = var;
753
754   return TRUE;
755 }
756
757 static GtkTreePath *
758 tree_model_get_path (GtkTreeModel *model, GtkTreeIter *iter)
759 {
760   GtkTreePath *path;
761   struct variable *var;
762   PsppireDict *dict = PSPPIRE_DICT (model);
763
764   g_return_val_if_fail (iter->stamp == dict->stamp, FALSE);
765
766   var = iter->user_data;
767
768   path = gtk_tree_path_new ();
769   gtk_tree_path_append_index (path, var_get_dict_index (var));
770
771   return path;
772 }
773
774
775 static void
776 tree_model_get_value (GtkTreeModel *model, GtkTreeIter *iter,
777                       gint column, GValue *value)
778 {
779   struct variable *var;
780   PsppireDict *dict = PSPPIRE_DICT (model);
781
782   g_return_if_fail (iter->stamp == dict->stamp);
783
784   var =  iter->user_data;
785
786   switch (column)
787     {
788     case DICT_TVM_COL_NAME:
789       {
790         g_value_init (value, G_TYPE_STRING);
791         g_value_set_string (value, var_get_name (var));
792       }
793       break;
794     case DICT_TVM_COL_VAR:
795       g_value_init (value, PSPPIRE_VAR_PTR_TYPE);
796       g_value_set_boxed (value, var);
797       break;
798     default:
799       g_return_if_reached ();
800       break;
801     }
802 }
803
804 static gboolean
805 tree_model_iter_children (GtkTreeModel *tree_model,
806                           GtkTreeIter *iter,
807                           GtkTreeIter *parent)
808 {
809   return FALSE;
810 }
811
812 static gint
813 tree_model_n_children (GtkTreeModel *model,
814                        GtkTreeIter  *iter)
815 {
816   PsppireDict *dict = PSPPIRE_DICT (model);
817
818   if ( iter == NULL )
819     return psppire_dict_get_var_cnt (dict);
820
821   return 0;
822 }
823
824 static gboolean
825 tree_model_nth_child (GtkTreeModel *model, GtkTreeIter *iter,
826                       GtkTreeIter *parent, gint n)
827 {
828   PsppireDict *dict;
829
830   g_return_val_if_fail (PSPPIRE_IS_DICT (model), FALSE);
831
832   dict = PSPPIRE_DICT (model);
833
834   if ( parent )
835     return FALSE;
836
837   if ( n >= psppire_dict_get_var_cnt (dict) )
838     return FALSE;
839
840   iter->stamp = dict->stamp;
841   iter->user_data = psppire_dict_get_variable (dict, n);
842
843   if ( !iter->user_data)
844     return FALSE;
845
846   return TRUE;
847 }
848
849
850 gboolean
851 psppire_dict_rename_var (PsppireDict *dict, struct variable *v,
852                          const gchar *name)
853 {
854   if ( ! dict_id_is_valid (dict->dict, name, false))
855     return FALSE;
856
857   /* Make sure no other variable has this name */
858   if ( NULL != psppire_dict_lookup_var (dict, name))
859     return FALSE;
860
861   dict_rename_var (dict->dict, v, name);
862
863   return TRUE;
864 }
865
866
867 struct variable *
868 psppire_dict_get_weight_variable (const PsppireDict *dict)
869 {
870   return dict_get_weight (dict->dict);
871 }
872
873
874
875 #if DEBUGGING
876 void
877 psppire_dict_dump (const PsppireDict *dict)
878 {
879   gint i;
880   const struct dictionary *d = dict->dict;
881
882   for (i = 0; i < dict_get_var_cnt (d); ++i)
883     {
884       const struct variable *v = psppire_dict_get_variable (dict, i);
885       int di = var_get_dict_index (v);
886       g_print ("`%s' idx=%d, fv=%d\n",
887                var_get_name(v),
888                di,
889                var_get_case_index(v));
890
891     }
892 }
893 #endif
894
895
896
897
898 const gchar *
899 psppire_dict_encoding (const PsppireDict *dict)
900 {
901   return dict_get_encoding (dict->dict);
902 }