X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdictionary.h;h=4efb953c550fae754c62c96098bb8e8a51995b80;hb=72b60ca723de25361c9aeaad607bae6c77bb6f1a;hp=167487fbd10a34182ed5457c62a7770262c8e794;hpb=a9acce47d67e0ab35ce1690e4f1b1ac0121c2d78;p=pspp-builds.git diff --git a/src/data/dictionary.h b/src/data/dictionary.h index 167487fb..4efb953c 100644 --- a/src/data/dictionary.h +++ b/src/data/dictionary.h @@ -75,11 +75,14 @@ void dict_reorder_var (struct dictionary *, struct variable *, void dict_reorder_vars (struct dictionary *, struct variable *const *, size_t count); -/* Changing variable names. */ +/* Variable names. */ void dict_rename_var (struct dictionary *, struct variable *, const char *); bool dict_rename_vars (struct dictionary *, struct variable **, char **new_names, size_t count, char **err_name); +bool dict_make_unique_var_name (const struct dictionary *, const char *hint, + unsigned long int *num_start, + char name[]); /* Weight variable. */ double dict_get_case_weight (const struct dictionary *, @@ -139,6 +142,16 @@ const struct vector *dict_lookup_vector (const struct dictionary *, const char *name); void dict_clear_vectors (struct dictionary *); +/* Attributes. */ +struct attrset *dict_get_attributes (const struct dictionary *); +void dict_set_attributes (struct dictionary *, const struct attrset *); +bool dict_has_attributes (const struct dictionary *); + + +void dict_set_encoding (struct dictionary *d, const char *enc); +const char *dict_get_encoding (const struct dictionary *d); + + /* Functions to be called upon dictionary changes. */ struct dict_callbacks { @@ -149,12 +162,18 @@ struct dict_callbacks void (*weight_changed) (struct dictionary *, int, void *); void (*filter_changed) (struct dictionary *, int, void *); void (*split_changed) (struct dictionary *, void *); + void (*var_display_width_changed) (struct dictionary *, int, void *); }; void dict_set_callbacks (struct dictionary *, const struct dict_callbacks *, void *); void dict_copy_callbacks (struct dictionary *, const struct dictionary *); +void dict_set_change_callback (struct dictionary *d, + void (*changed) (struct dictionary *, void*), + void *data); + + /* Debug use only. */ void dict_dump (const struct dictionary *);