X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dictview.h;h=bb6016dd9437411a1f8015dbdd1a6a3b17d693a5;hb=e784ed9c161b6b7aec1402de566e6c09cb2031e0;hp=1a8ddbb9235d1708ee4de4dbefb09f738bcbbfff;hpb=2b998cd1a6d72214726d05cc050b816d131399e6;p=pspp diff --git a/src/ui/gui/psppire-dictview.h b/src/ui/gui/psppire-dictview.h index 1a8ddbb923..bb6016dd94 100644 --- a/src/ui/gui/psppire-dictview.h +++ b/src/ui/gui/psppire-dictview.h @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2009, 2010 Free Software Foundation + Copyright (C) 2009, 2010, 2013 Free Software Foundation This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,6 +23,7 @@ #include #include +#include "data/format.h" #include "psppire-dict.h" #include "dict-display.h" @@ -50,7 +51,11 @@ struct _PsppireDictView PsppireDict *dict; var_predicate_func *predicate; GtkWidget *menu; - gboolean prefer_labels; + gboolean prefer_labels_override; + GtkWidget *override_button; + GtkTreeModel *sorted_model; + const struct variable *var_under_cursor; + GtkWidget *var_info_check; }; struct _PsppireDictViewClass @@ -60,8 +65,12 @@ struct _PsppireDictViewClass }; GType psppire_dict_view_get_type (void); +void psppire_dict_view_get_selected_variables (PsppireDictView *, + struct variable ***vars, + size_t *n_varsp); struct variable * psppire_dict_view_get_selected_variable (PsppireDictView *); +const char *get_var_measurement_stock_id (enum fmt_type, enum measure); G_END_DECLS