X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=src%2Fui%2Fgui%2Fpsppire-var-store.h;h=de199fa0ccc1047f2d28242d1788dd222f4763c1;hb=0fe886a656b0ee57b4d542b7c16b3c56288b6fc6;hp=e4c2ecd827c47fd9bc6747fddcb1d710357e157b;hpb=f00c8490080474d40395906cb42d32b3b0c69db8;p=pspp diff --git a/src/ui/gui/psppire-var-store.h b/src/ui/gui/psppire-var-store.h index e4c2ecd827..de199fa0cc 100644 --- a/src/ui/gui/psppire-var-store.h +++ b/src/ui/gui/psppire-var-store.h @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2006 Free Software Foundation + Copyright (C) 2006, 2011, 2012 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 @@ -22,21 +22,6 @@ G_BEGIN_DECLS -/* PSPPIRE variable store format type, to determine whether a - PSPPIRE variable store contains variable input formats or - variable output formats. */ -GType psppire_var_store_format_type_get_type (void); - -typedef enum - { - PSPPIRE_VAR_STORE_INPUT_FORMATS, - PSPPIRE_VAR_STORE_OUTPUT_FORMATS - } -PsppireVarStoreFormatType; - -#define PSPPIRE_TYPE_VAR_STORE_FORMAT_TYPE \ - (psppire_var_store_format_type_get_type ()) - /* PSPPIRE variable store. */ #define GTK_TYPE_VAR_STORE (psppire_var_store_get_type ()) @@ -64,8 +49,6 @@ struct _PsppireVarStore /*< private >*/ PsppireDict *dictionary; - GdkColor disabled; - PsppireVarStoreFormatType format_type; }; struct _PsppireVarStoreClass @@ -87,24 +70,6 @@ struct variable * psppire_var_store_get_var (PsppireVarStore *store, glong row); /* Return the number of variables */ gint psppire_var_store_get_var_cnt (PsppireVarStore *var_store); -void psppire_var_store_set_font (PsppireVarStore *store, const PangoFontDescription *fd); - - G_END_DECLS - -enum { - PSPPIRE_VAR_STORE_COL_NAME, - PSPPIRE_VAR_STORE_COL_TYPE, - PSPPIRE_VAR_STORE_COL_WIDTH, - PSPPIRE_VAR_STORE_COL_DECIMALS, - PSPPIRE_VAR_STORE_COL_LABEL, - PSPPIRE_VAR_STORE_COL_VALUES, - PSPPIRE_VAR_STORE_COL_MISSING, - PSPPIRE_VAR_STORE_COL_COLUMNS, - PSPPIRE_VAR_STORE_COL_ALIGN, - PSPPIRE_VAR_STORE_COL_MEASURE, - PSPPIRE_VAR_STORE_n_COLS -}; - #endif /* __PSPPIRE_VAR_STORE_H__ */