X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-conf.c;h=09f6d68a124b5cabaa2c6e5d07fb0aefc1be4c14;hb=6ee48467ac46bb8553f6fb3782623559affb1b9c;hp=02cc2751212a2a0de931fe7a2b9e722b342255e2;hpb=b350a68a008217d92eb4cbcd571e322118d4e27a;p=pspp diff --git a/src/ui/gui/psppire-conf.c b/src/ui/gui/psppire-conf.c index 02cc275121..09f6d68a12 100644 --- a/src/ui/gui/psppire-conf.c +++ b/src/ui/gui/psppire-conf.c @@ -24,6 +24,8 @@ #include #include +#include + #include "psppire-conf.h" static void psppire_conf_init (PsppireConf *conf); @@ -73,8 +75,8 @@ conf_read (PsppireConf *conf) NULL); } -static void -conf_write (PsppireConf *conf) +static gboolean +flush_conf (PsppireConf *conf) { gsize length = 0; @@ -86,8 +88,19 @@ conf_write (PsppireConf *conf) } g_free (kf); + conf->idle = 0; + return FALSE; +} + +static void +conf_write (PsppireConf *conf) +{ + if ( conf->idle == 0) + conf->idle = g_idle_add_full (G_PRIORITY_LOW, + (GSourceFunc) flush_conf, conf, NULL); } + static void psppire_conf_dispose (GObject *object) { @@ -157,6 +170,7 @@ psppire_conf_init (PsppireConf *conf) conf->keyfile = g_key_file_new (); conf->dispose_has_run = FALSE; + conf->idle = 0; } @@ -209,6 +223,31 @@ psppire_conf_get_boolean (PsppireConf *conf, const gchar *base, } + +gboolean +psppire_conf_get_string (PsppireConf *conf, const gchar *base, + const gchar *name, gchar **value) +{ + gboolean ok; + gchar *b; + GError *err = NULL; + conf_read (conf); + b = g_key_file_get_string (conf->keyfile, + base, + name, &err); + + ok = (err == NULL); + if ( err != NULL ) + g_error_free (err); + + if (ok) + *value = b; + + return ok; +} + + + void psppire_conf_set_int (PsppireConf *conf, const gchar *base, const gchar *name, @@ -227,6 +266,18 @@ psppire_conf_set_boolean (PsppireConf *conf, conf_write (conf); } + +void +psppire_conf_set_string (PsppireConf *conf, + const gchar *base, const gchar *name, + const gchar *value) +{ + g_key_file_set_string (conf->keyfile, base, name, value); + conf_write (conf); +} + + + /* A convenience function to set the geometry of a window from from a saved config @@ -286,10 +337,11 @@ psppire_conf_save_window_geometry (PsppireConf *conf, if (!maximized) { - gint width, height; gint x, y; - gdk_drawable_get_size (w, &width, &height); + gint width = gdk_window_get_width (w); + gint height= gdk_window_get_height (w); + gdk_window_get_position (w, &x, &y); psppire_conf_set_int (conf, base, "height", height);