X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-conf.h;h=8f944518e08e13bfeb3205e2373d1ca4ee5cf390;hb=c2d972816fce591524db963390a97ff32d55117c;hp=a7415b2451010b081b0774c9b014c8b205c34613;hpb=666b3bc20d87c833bab09901749ab72c82601d4a;p=pspp diff --git a/src/ui/gui/psppire-conf.h b/src/ui/gui/psppire-conf.h index a7415b2451..8f944518e0 100644 --- a/src/ui/gui/psppire-conf.h +++ b/src/ui/gui/psppire-conf.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 @@ -18,7 +18,7 @@ #include #include -#include +#include #ifndef __PSPPIRE_CONF_H__ #define __PSPPIRE_CONF_H__ @@ -62,6 +62,7 @@ struct _PsppireConf GKeyFile *keyfile; gchar *filename; + guint idle; }; @@ -78,6 +79,9 @@ PsppireConf * psppire_conf_new (void); gboolean psppire_conf_get_int (PsppireConf *, const gchar *, const gchar *, int *); +gboolean psppire_conf_get_string (PsppireConf *, + const gchar *, const gchar *, gchar **); + gboolean psppire_conf_get_boolean (PsppireConf *, const gchar *, const gchar *, gboolean *); @@ -89,6 +93,9 @@ void psppire_conf_set_boolean (PsppireConf *conf, const gchar *base, const gchar *name, gboolean value); +void psppire_conf_set_string (PsppireConf *conf, + const gchar *base, const gchar *name, + const gchar *value); void psppire_conf_set_window_geometry (PsppireConf *conf, const gchar *base, @@ -96,7 +103,7 @@ void psppire_conf_set_window_geometry (PsppireConf *conf, void psppire_conf_save_window_geometry (PsppireConf *, const gchar *, - GdkEvent *); + GtkWindow *); G_END_DECLS