X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-var-view.h;h=45832eba0e8804a46b7381e48f5079cff9fc1b2c;hb=99732245d610cf363429f1b67a8b2b2e15a9a734;hp=9563cce4ac0c1d358038c864076a741f38c50b6a;hpb=fd0c595927a23ea0373551a1eed4570388ea0fc5;p=pspp diff --git a/src/ui/gui/psppire-var-view.h b/src/ui/gui/psppire-var-view.h index 9563cce4ac..45832eba0e 100644 --- a/src/ui/gui/psppire-var-view.h +++ b/src/ui/gui/psppire-var-view.h @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2009 Free Software Foundation + Copyright (C) 2009, 2010 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 @@ -21,7 +21,7 @@ #include #include -#include +#include G_BEGIN_DECLS @@ -38,7 +38,7 @@ G_BEGIN_DECLS typedef struct _PsppireVarView PsppireVarView; typedef struct _PsppireVarViewClass PsppireVarViewClass; - +struct variable; struct _PsppireVarView { @@ -47,7 +47,6 @@ struct _PsppireVarView GtkListStore *list; gint *nums; - }; struct _PsppireVarViewClass @@ -60,6 +59,13 @@ GType psppire_var_view_get_type (void); gint psppire_var_view_append_names (PsppireVarView *vv, gint column, GString *string); +gboolean psppire_var_view_get_iter_first (PsppireVarView *vv, GtkTreeIter *iter); + +gboolean psppire_var_view_get_iter_next (PsppireVarView *vv, GtkTreeIter *iter); + +const struct variable * psppire_var_view_get_variable (PsppireVarView *vv, gint column, GtkTreeIter *iter); + + G_END_DECLS