Actually implement the new procedure code and adapt all of its clients
[pspp-builds.git] / src / ui / gui / psppire-data-store.c
1 /* psppire-data-store.c
2
3    PSPPIRE --- A Graphical User Interface for PSPP
4    Copyright (C) 2006  Free Software Foundation
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19    02110-1301, USA. */
20
21 #include <config.h>
22 #include <string.h>
23 #include <stdlib.h>
24 #include <gettext.h>
25 #define _(msgid) gettext (msgid)
26 #define N_(msgid) msgid
27
28 #include <data/casewriter.h>
29 #include <data/datasheet.h>
30 #include <data/data-out.h>
31 #include <data/variable.h>
32
33 #include <gtksheet/gtksheet.h>
34 #include <gtksheet/gsheetmodel.h>
35 #include <gtksheet/gsheet-column-iface.h>
36
37 #include <pango/pango-context.h>
38
39 #include "psppire-data-store.h"
40 #include "psppire-case-file.h"
41 #include "helper.h"
42
43 #include <data/dictionary.h>
44 #include <data/missing-values.h>
45 #include <data/value-labels.h>
46 #include <data/data-in.h>
47
48 #include <data/file-handle-def.h>
49 #include <data/sys-file-writer.h>
50
51
52
53 static void psppire_data_store_init            (PsppireDataStore      *data_store);
54 static void psppire_data_store_class_init      (PsppireDataStoreClass *class);
55 static void psppire_data_store_sheet_model_init (GSheetModelIface *iface);
56 static void psppire_data_store_sheet_column_init (GSheetColumnIface *iface);
57 static void psppire_data_store_sheet_row_init (GSheetRowIface *iface);
58
59 static void psppire_data_store_finalize        (GObject           *object);
60
61 static gchar *psppire_data_store_get_string (const GSheetModel *sheet_model, gint row, gint column);
62
63 static gboolean psppire_data_store_set_string (GSheetModel *model,
64                                           const gchar *text, gint row, gint column);
65
66 static gboolean psppire_data_store_clear_datum (GSheetModel *model,
67                                           gint row, gint column);
68
69
70 #define MIN_COLUMNS 10
71
72 #define TRAILING_ROWS 10
73
74 static GObjectClass *parent_class = NULL;
75
76
77 enum  {FONT_CHANGED,
78        n_SIGNALS};
79
80 static guint signals [n_SIGNALS];
81
82
83 inline GType
84 psppire_data_store_get_type (void)
85 {
86   static GType data_store_type = 0;
87
88   if (!data_store_type)
89     {
90       static const GTypeInfo data_store_info =
91       {
92         sizeof (PsppireDataStoreClass),
93         NULL,           /* base_init */
94         NULL,           /* base_finalize */
95         (GClassInitFunc) psppire_data_store_class_init,
96         NULL,           /* class_finalize */
97         NULL,           /* class_data */
98         sizeof (PsppireDataStore),
99         0,
100         (GInstanceInitFunc) psppire_data_store_init,
101       };
102
103       static const GInterfaceInfo sheet_model_info =
104       {
105         (GInterfaceInitFunc) psppire_data_store_sheet_model_init,
106         NULL,
107         NULL
108       };
109
110       static const GInterfaceInfo sheet_column_info =
111       {
112         (GInterfaceInitFunc) psppire_data_store_sheet_column_init,
113         NULL,
114         NULL
115       };
116
117       static const GInterfaceInfo sheet_row_info =
118       {
119         (GInterfaceInitFunc) psppire_data_store_sheet_row_init,
120         NULL,
121         NULL
122       };
123
124
125       data_store_type = g_type_register_static (G_TYPE_OBJECT, "PsppireDataStore",
126                                                 &data_store_info, 0);
127
128       g_type_add_interface_static (data_store_type,
129                                    G_TYPE_SHEET_MODEL,
130                                    &sheet_model_info);
131
132       g_type_add_interface_static (data_store_type,
133                                    G_TYPE_SHEET_COLUMN,
134                                    &sheet_column_info);
135
136       g_type_add_interface_static (data_store_type,
137                                    G_TYPE_SHEET_ROW,
138                                    &sheet_row_info);
139     }
140
141   return data_store_type;
142 }
143
144
145 static void
146 psppire_data_store_class_init (PsppireDataStoreClass *class)
147 {
148   GObjectClass *object_class;
149
150   parent_class = g_type_class_peek_parent (class);
151   object_class = (GObjectClass*) class;
152
153   object_class->finalize = psppire_data_store_finalize;
154
155   signals [FONT_CHANGED] =
156     g_signal_new ("font_changed",
157                   G_TYPE_FROM_CLASS (class),
158                   G_SIGNAL_RUN_FIRST,
159                   0,
160                   NULL, NULL,
161                   g_cclosure_marshal_VOID__VOID,
162                   G_TYPE_NONE,
163                   0);
164 }
165
166
167
168 static gint
169 psppire_data_store_get_var_count (const GSheetModel *model)
170 {
171   const PsppireDataStore *store = PSPPIRE_DATA_STORE (model);
172
173   return psppire_dict_get_var_cnt (store->dict);
174 }
175
176 static gint
177 psppire_data_store_get_case_count (const GSheetModel *model)
178 {
179   const PsppireDataStore *store = PSPPIRE_DATA_STORE (model);
180
181   return psppire_case_file_get_case_count (store->case_file);
182 }
183
184
185 static void
186 psppire_data_store_init (PsppireDataStore *data_store)
187 {
188   data_store->dict = 0;
189   data_store->case_file = 0;
190   data_store->width_of_m = 10;
191 }
192
193 const PangoFontDescription *
194 psppire_data_store_get_font_desc (const GSheetModel *model,
195                               gint row, gint column)
196 {
197   PsppireDataStore *store = PSPPIRE_DATA_STORE (model);
198
199   return store->font_desc;
200 }
201
202
203 static void
204 psppire_data_store_sheet_model_init (GSheetModelIface *iface)
205 {
206   iface->free_strings = TRUE;
207   iface->get_string = psppire_data_store_get_string;
208   iface->set_string = psppire_data_store_set_string;
209   iface->clear_datum = psppire_data_store_clear_datum;
210   iface->is_editable = NULL;
211   iface->is_visible = NULL;
212   iface->get_foreground = NULL;
213   iface->get_background = NULL;
214   iface->get_font_desc = psppire_data_store_get_font_desc;
215   iface->get_cell_border = NULL;
216   iface->get_column_count = psppire_data_store_get_var_count;
217   iface->get_row_count = psppire_data_store_get_case_count;
218 }
219
220 static
221 gboolean always_true ()
222 {
223   return TRUE;
224 }
225
226
227 static void
228 delete_cases_callback (GtkWidget *w, gint first, gint n_cases, gpointer data)
229 {
230   PsppireDataStore *store  ;
231
232   g_return_if_fail (data);
233
234   store  = PSPPIRE_DATA_STORE (data);
235
236   g_assert (first >= 0);
237
238   g_sheet_model_rows_deleted (G_SHEET_MODEL (store), first, n_cases);
239 }
240
241
242 static void
243 insert_case_callback (GtkWidget *w, gint casenum, gpointer data)
244 {
245   PsppireDataStore *store  ;
246
247   g_return_if_fail (data);
248
249   store  = PSPPIRE_DATA_STORE (data);
250
251   g_sheet_model_range_changed (G_SHEET_MODEL (store),
252                                casenum, -1,
253                                psppire_case_file_get_case_count (store->case_file),
254                                -1);
255
256   g_sheet_model_rows_inserted (G_SHEET_MODEL (store), casenum, 1);
257 }
258
259
260 static void
261 changed_case_callback (GtkWidget *w, gint casenum, gpointer data)
262 {
263   PsppireDataStore *store  ;
264   g_return_if_fail (data);
265
266   store  = PSPPIRE_DATA_STORE (data);
267
268   g_sheet_model_range_changed (G_SHEET_MODEL (store),
269                                  casenum, -1,
270                                  casenum, -1);
271 }
272
273
274 static void
275 delete_variables_callback (GObject *obj, gint var_num, gint n_vars, gpointer data)
276 {
277   PsppireDataStore *store ;
278
279   g_return_if_fail (data);
280
281   store  = PSPPIRE_DATA_STORE (data);
282
283   g_sheet_model_columns_deleted (G_SHEET_MODEL (store), var_num, n_vars);
284
285   g_sheet_column_columns_changed (G_SHEET_COLUMN (store),
286                                    var_num, -1);
287 }
288
289
290 static void
291 variable_changed_callback (GObject *obj, gint var_num, gpointer data)
292 {
293   PsppireDataStore *store;
294
295   g_return_if_fail (data);
296
297   store  = PSPPIRE_DATA_STORE (data);
298
299   g_sheet_column_columns_changed (G_SHEET_COLUMN (store),
300                                   var_num, 1);
301
302
303   g_sheet_model_range_changed (G_SHEET_MODEL (store),
304                                -1, var_num,
305                                -1, var_num);
306 }
307
308 static void
309 insert_variable_callback (GObject *obj, gint var_num, gpointer data)
310 {
311   PsppireDataStore *store;
312   gint posn;
313
314   g_return_if_fail (data);
315
316   store  = PSPPIRE_DATA_STORE (data);
317
318   if ( var_num > 0 )
319     {
320       struct variable *variable =
321         psppire_dict_get_variable (store->dict, var_num);
322
323       g_assert (variable != NULL);
324
325       posn = var_get_case_index (variable);
326     }
327   else
328     {
329       posn = 0;
330     }
331
332   psppire_case_file_insert_values (store->case_file, 1, posn);
333
334   g_sheet_column_columns_changed (G_SHEET_COLUMN (store),
335                                   var_num, 1);
336
337   g_sheet_model_columns_inserted (G_SHEET_MODEL (store), var_num, 1);
338 }
339
340
341 static void
342 dict_size_change_callback (GObject *obj,
343                           gint posn, gint adjustment, gpointer data)
344 {
345   PsppireDataStore *store ;
346
347   g_return_if_fail (data);
348
349   store  = PSPPIRE_DATA_STORE (data);
350
351   psppire_case_file_insert_values (store->case_file, adjustment, posn);
352 }
353
354
355
356 /**
357  * psppire_data_store_new:
358  * @dict: The dictionary for this data_store.
359  *
360  *
361  * Return value: a new #PsppireDataStore
362  **/
363 PsppireDataStore *
364 psppire_data_store_new (PsppireDict *dict)
365 {
366   PsppireDataStore *retval;
367
368   retval = g_object_new (GTK_TYPE_DATA_STORE, NULL);
369
370   psppire_data_store_set_dictionary (retval, dict);
371
372   return retval;
373 }
374
375
376
377 /**
378  * psppire_data_store_replace_set_dictionary:
379  * @data_store: The variable store
380  * @dict: The dictionary to set
381  *
382  * If a dictionary is already associated with the data-store, then it will be
383  * destroyed.
384  **/
385 void
386 psppire_data_store_set_dictionary (PsppireDataStore *data_store, PsppireDict *dict)
387 {
388   data_store->dict = dict;
389
390   if ( data_store->case_file)
391     {
392       g_object_unref (data_store->case_file);
393       data_store->case_file = 0;
394     }
395
396   data_store->case_file = psppire_case_file_new ();
397
398
399
400   g_signal_connect (data_store->case_file, "cases-deleted",
401                    G_CALLBACK (delete_cases_callback),
402                    data_store);
403
404   g_signal_connect (data_store->case_file, "case-inserted",
405                    G_CALLBACK (insert_case_callback),
406                    data_store);
407
408
409   g_signal_connect (data_store->case_file, "case-changed",
410                    G_CALLBACK (changed_case_callback),
411                    data_store);
412
413   g_signal_connect (dict, "variable-inserted",
414                    G_CALLBACK (insert_variable_callback),
415                    data_store);
416
417   g_signal_connect (dict, "variables-deleted",
418                    G_CALLBACK (delete_variables_callback),
419                    data_store);
420
421   g_signal_connect (dict, "variable-changed",
422                    G_CALLBACK (variable_changed_callback),
423                    data_store);
424
425
426   g_signal_connect (dict, "dict-size-changed",
427                     G_CALLBACK (dict_size_change_callback),
428                     data_store);
429
430   /* The entire model has changed */
431   g_sheet_model_range_changed (G_SHEET_MODEL (data_store), -1, -1, -1, -1);
432
433   g_sheet_column_columns_changed (G_SHEET_COLUMN (data_store), 0, -1);
434 }
435
436 static void
437 psppire_data_store_finalize (GObject *object)
438 {
439
440   /* must chain up */
441   (* parent_class->finalize) (object);
442 }
443
444
445
446 /* Insert a blank case before POSN */
447 gboolean
448 psppire_data_store_insert_new_case (PsppireDataStore *ds, gint posn)
449 {
450   gboolean result;
451   gint val_cnt, v;
452   struct ccase cc;
453   g_return_val_if_fail (ds, FALSE);
454
455
456   /* Opportunity for optimisation exists here when creating a blank case */
457   val_cnt = datasheet_get_column_cnt (ds->case_file->datasheet) ;
458
459   case_create (&cc, val_cnt);
460
461   memset ( case_data_rw_idx (&cc, 0), 0, val_cnt * MAX_SHORT_STRING);
462
463   for (v = 0 ; v < psppire_dict_get_var_cnt (ds->dict) ; ++v)
464     {
465       const struct variable *pv = psppire_dict_get_variable (ds->dict, v);
466       if ( var_is_alpha (pv))
467         continue;
468
469       case_data_rw (&cc, pv)->f = SYSMIS;
470     }
471
472   result = psppire_case_file_insert_case (ds->case_file, &cc, posn);
473
474   case_destroy (&cc);
475
476   return result;
477 }
478
479
480 static gchar *
481 psppire_data_store_get_string (const GSheetModel *model, gint row, gint column)
482 {
483   gint idx;
484   char *text;
485   const struct fmt_spec *fp ;
486   const struct variable *pv ;
487   union value *v ;
488   GString *s;
489   PsppireDataStore *store = PSPPIRE_DATA_STORE (model);
490
491   g_return_val_if_fail (store->dict, NULL);
492   g_return_val_if_fail (store->case_file, NULL);
493
494   if (column >= psppire_dict_get_var_cnt (store->dict))
495     return NULL;
496
497   if ( row >= psppire_case_file_get_case_count (store->case_file))
498     return NULL;
499
500   pv = psppire_dict_get_variable (store->dict, column);
501
502   g_assert (pv);
503
504   idx = var_get_case_index (pv);
505
506   g_assert (idx >= 0);
507
508   v = psppire_case_file_get_value (store->case_file, row, idx, NULL,
509                                    var_get_width (pv));
510   
511   g_return_val_if_fail (v, NULL);
512
513   if ( store->show_labels)
514     {
515       const gchar *label = var_lookup_value_label (pv, v);
516       if (label)
517         {
518           free (v);
519           return pspp_locale_to_utf8 (label, -1, 0);
520         }
521     }
522
523   fp = var_get_write_format (pv);
524
525   s = g_string_sized_new (fp->w + 1);
526   g_string_set_size (s, fp->w);
527
528   memset (s->str, 0, fp->w);
529
530   g_assert (fp->w == s->len);
531
532   /* Converts binary value V into printable form in the exactly
533      FP->W character in buffer S according to format specification
534      FP.  No null terminator is appended to the buffer.  */
535   data_out (v, fp, s->str);
536
537   text = pspp_locale_to_utf8 (s->str, fp->w, 0);
538   g_string_free (s, TRUE);
539
540   g_strchomp (text);
541
542   free (v);
543   return text;
544 }
545
546
547 static gboolean
548 psppire_data_store_clear_datum (GSheetModel *model,
549                                           gint row, gint col)
550
551 {
552   PsppireDataStore *store = PSPPIRE_DATA_STORE (model);
553
554   union value v;
555   const struct variable *pv = psppire_dict_get_variable (store->dict, col);
556
557   const gint index = var_get_case_index (pv) ;
558
559   if ( var_is_numeric (pv))
560     v.f = SYSMIS;
561   else
562     memcpy (v.s, "", MAX_SHORT_STRING);
563
564   psppire_case_file_set_value (store->case_file, row, index, &v,
565                               var_get_width (pv));
566
567   return TRUE;
568 }
569
570
571 /* Attempts to update that part of the variable store which corresponds
572    to ROW, COL with  the value TEXT.
573    Returns true if anything was updated, false otherwise.
574 */
575 static gboolean
576 psppire_data_store_set_string (GSheetModel *model,
577                           const gchar *text, gint row, gint col)
578 {
579   PsppireDataStore *store = PSPPIRE_DATA_STORE (model);
580
581   const struct variable *pv = psppire_dict_get_variable (store->dict, col);
582   g_return_val_if_fail (pv, FALSE);
583
584 #if 0
585   /* Allow the user to insert a lot of blank cases, simply by skipping rows */
586   for (r = psppire_case_file_get_case_count (store->case_file); r <= row ; ++r)
587     {
588
589       gint c;
590
591       psppire_case_array_insert_case (store->cases, r, 0, 0);
592
593
594       for (c = 0 ; c < psppire_dict_get_var_cnt (store->dict); ++c )
595         psppire_data_store_clear_datum (model, r, c);
596     }
597 #endif
598
599   psppire_case_file_data_in (store->case_file, row,
600                              var_get_case_index (pv), ss_cstr (text),
601                              var_get_write_format (pv));
602
603   return TRUE;
604 }
605
606
607 void
608 psppire_data_store_set_font (PsppireDataStore *store,
609                             const PangoFontDescription *fd)
610 {
611   g_return_if_fail (store);
612   g_return_if_fail (PSPPIRE_IS_DATA_STORE (store));
613
614   store->font_desc = fd;
615 #if 0
616   store->width_of_m = calc_m_width (fd);
617 #endif
618   g_signal_emit (store, signals [FONT_CHANGED], 0);
619
620
621   g_sheet_model_range_changed (G_SHEET_MODEL (store),
622                                  -1, -1, -1, -1);
623 }
624
625
626 void
627 psppire_data_store_show_labels (PsppireDataStore *store, gboolean show_labels)
628 {
629   g_return_if_fail (store);
630   g_return_if_fail (PSPPIRE_IS_DATA_STORE (store));
631
632   store->show_labels = show_labels;
633
634   g_sheet_model_range_changed (G_SHEET_MODEL (store),
635                                  -1, -1, -1, -1);
636 }
637
638
639
640 /* FIXME: There's no reason to actually have this function.
641    It should be done by a procedure */
642 void
643 psppire_data_store_create_system_file (PsppireDataStore *store,
644                               struct file_handle *handle)
645 {
646   gint i, var_cnt;
647   const struct sfm_write_options wo = {
648     true, /* writeable */
649     false, /* dont compress */
650     3 /* version */
651   };
652
653   struct casewriter *writer;
654
655   g_assert (handle);
656
657   writer = sfm_open_writer (handle, store->dict->dict, wo);
658
659   if ( ! writer)
660     return;
661
662
663   var_cnt = psppire_data_store_get_var_count (G_SHEET_MODEL (store));
664
665   for (i = 0 ; i < psppire_case_file_get_case_count (store->case_file); ++i )
666     {
667       struct ccase c;
668       psppire_case_file_get_case (store->case_file, i, &c);
669       casewriter_write (writer, &c);
670     }
671   casewriter_destroy (writer);
672 }
673
674
675
676 void
677 psppire_data_store_clear (PsppireDataStore *data_store)
678 {
679   psppire_case_file_clear (data_store->case_file);
680
681   psppire_dict_clear (data_store->dict);
682 }
683
684
685
686
687 /* Column related funcs */
688
689 static gint
690 geometry_get_column_count (const GSheetColumn *geom)
691 {
692   PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom);
693
694   return MAX (MIN_COLUMNS, psppire_dict_get_var_cnt (ds->dict));
695 }
696
697
698
699 static gint
700 geometry_get_width (const GSheetColumn *geom, gint unit)
701 {
702   const struct variable *pv ;
703   PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom);
704
705   if ( unit >= psppire_dict_get_var_cnt (ds->dict) )
706     return ds->width_of_m * 8 ;
707
708   pv = psppire_dict_get_variable (ds->dict, unit);
709
710   if ( pv == NULL )
711     return ds->width_of_m * 8 ;
712
713   return ds->width_of_m * var_get_display_width (pv);
714 }
715
716 static void
717 geometry_set_width (GSheetColumn *geom, gint unit, gint width)
718 {
719   PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom);
720
721   struct variable *pv = psppire_dict_get_variable (ds->dict, unit);
722
723   var_set_display_width (pv, width / ds->width_of_m );
724 }
725
726
727
728 static GtkJustification
729 geometry_get_justification (const GSheetColumn *geom, gint unit)
730 {
731   PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom);
732   const struct variable *pv ;
733
734
735   if ( unit >= psppire_dict_get_var_cnt (ds->dict) )
736     return GTK_JUSTIFY_LEFT;
737
738   pv = psppire_dict_get_variable (ds->dict, unit);
739
740   return (var_get_alignment (pv) == ALIGN_LEFT ? GTK_JUSTIFY_LEFT
741           : var_get_alignment (pv) == ALIGN_RIGHT ? GTK_JUSTIFY_RIGHT
742           : GTK_JUSTIFY_CENTER);
743 }
744
745
746 static const gchar null_var_name[]=N_("var");
747
748 static gchar *
749 geometry_get_column_button_label (const GSheetColumn *geom, gint unit)
750 {
751   gchar *text;
752   struct variable *pv ;
753   PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom);
754
755   if ( unit >= psppire_dict_get_var_cnt (ds->dict) )
756     return g_locale_to_utf8 (null_var_name, -1, 0, 0, 0);
757
758   pv = psppire_dict_get_variable (ds->dict, unit);
759
760   text =  pspp_locale_to_utf8 (var_get_name (pv), -1, 0);
761
762   return text;
763 }
764
765
766 static gboolean
767 geometry_get_sensitivity (const GSheetColumn *geom, gint unit)
768 {
769   PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom);
770
771   return (unit < psppire_dict_get_var_cnt (ds->dict));
772 }
773
774
775 static void
776 psppire_data_store_sheet_column_init (GSheetColumnIface *iface)
777 {
778   iface->get_column_count = geometry_get_column_count;
779   iface->get_width = geometry_get_width;
780   iface->set_width = geometry_set_width;
781   iface->get_visibility = always_true;
782   iface->get_sensitivity = geometry_get_sensitivity;
783   iface->get_justification = geometry_get_justification;
784   iface->get_button_label = geometry_get_column_button_label;
785 }
786
787
788 /* Row related funcs */
789
790 static gint
791 geometry_get_row_count (const GSheetRow *geom, gpointer data)
792 {
793   PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom);
794
795   return TRAILING_ROWS + psppire_case_file_get_case_count (ds->case_file);
796 }
797
798
799 static gint
800 geometry_get_height (const GSheetRow *geom, gint unit, gpointer data)
801 {
802   return 25;
803 }
804
805
806 static gboolean
807 geometry_get_row_sensitivity (const GSheetRow *geom, gint unit, gpointer data)
808 {
809   PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom);
810
811
812   return (unit < psppire_case_file_get_case_count (ds->case_file));
813 }
814
815
816 static gchar *
817 geometry_get_row_button_label (const GSheetRow *geom, gint unit, gpointer data)
818 {
819   gchar *text;
820   gchar *s;
821   PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom);
822
823   if ( unit >
824        TRAILING_ROWS + psppire_case_file_get_case_count (ds->case_file))
825     return 0;
826
827   s = g_strdup_printf (_("%d"), unit);
828
829   text =  pspp_locale_to_utf8 (s, -1, 0);
830
831   g_free (s);
832
833   return text;
834 }
835
836
837 static void
838 psppire_data_store_sheet_row_init (GSheetRowIface *iface)
839 {
840   iface->get_row_count = geometry_get_row_count;
841
842   iface->get_height = geometry_get_height;
843   iface->set_height = 0;
844   iface->get_visibility = always_true;
845   iface->get_sensitivity = geometry_get_row_sensitivity;
846
847   iface->get_button_label = geometry_get_row_button_label;
848 }
849