2 #include "var-display.h"
4 #include <data/variable.h>
5 #include <data/format.h>
7 #include "psppire-dict.h"
10 #define _(msgid) gettext (msgid)
11 #define N_(msgid) msgid
14 #include <libpspp/i18n.h>
16 static const gchar none[] = N_("None");
20 measure_to_string (const struct variable *var, GError **err)
22 const gint measure = var_get_measure (var);
24 g_assert (measure < n_MEASURES);
25 return gettext (measures[measure]);
30 missing_values_to_string (const PsppireDict *dict, const struct variable *pv, GError **err)
32 const struct fmt_spec *fmt = var_get_print_format (pv);
34 const struct missing_values *miss = var_get_missing_values (pv);
35 if ( mv_is_empty (miss))
36 return xstrdup (gettext (none));
39 if ( ! mv_has_range (miss))
41 GString *gstr = g_string_sized_new (10);
42 const int n = mv_n_values (miss);
43 gchar *mv[4] = {0,0,0,0};
45 for (i = 0 ; i < n; ++i )
47 mv[i] = value_to_text (*mv_get_value (miss, i), dict, *fmt);
49 g_string_append (gstr, ", ");
50 g_string_append (gstr, mv[i]);
54 g_string_free (gstr, FALSE);
58 GString *gstr = g_string_sized_new (10);
60 union value low, high;
61 mv_get_range (miss, &low.f, &high.f);
63 l = value_to_text (low, dict, *fmt);
64 h = value_to_text (high, dict,*fmt);
66 g_string_printf (gstr, "%s - %s", l, h);
70 if ( mv_has_value (miss))
74 ss = value_to_text (*mv_get_value (miss, 0), dict, *fmt);
76 g_string_append (gstr, ", ");
77 g_string_append (gstr, ss);
81 g_string_free (gstr, FALSE);