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