GSettings *settings2;
gchar *str;
gboolean writable;
+ GVariant *v;
+ const gchar *s;
settings = g_settings_new ("org.gtk.test");
settings2 = g_settings_new ("org.gtk.test");
g_free (str);
str = NULL;
+ v = g_settings_get_user_value (settings, "greeting");
+ s = g_variant_get_string (v, NULL);
+ g_assert_cmpstr (s, ==, "greetings from test_delay_apply");
+ g_variant_unref (v);
+
g_settings_get (settings2, "greeting", "s", &str);
g_assert_cmpstr (str, ==, "top o' the morning");
g_free (str);
}
static void
+test_delay_child (void)
+{
+ GSettings *base;
+ GSettings *settings;
+ GSettings *child;
+ guint8 byte;
+ gboolean delay;
+
+ base = g_settings_new ("org.gtk.test.basic-types");
+ g_settings_set (base, "test-byte", "y", 36);
+
+ settings = g_settings_new ("org.gtk.test");
+ g_settings_delay (settings);
+ g_object_get (settings, "delay-apply", &delay, NULL);
+ g_assert (delay);
+
+ child = g_settings_get_child (settings, "basic-types");
+ g_assert (child != NULL);
+
+ g_object_get (child, "delay-apply", &delay, NULL);
+ g_assert (!delay);
+
+ g_settings_get (child, "test-byte", "y", &byte);
+ g_assert_cmpuint (byte, ==, 36);
+
+ g_settings_set (child, "test-byte", "y", 42);
+
+ g_settings_get (base, "test-byte", "y", &byte);
+ g_assert_cmpuint (byte, ==, 42);
+
+ g_object_unref (child);
+ g_object_unref (settings);
+ g_object_unref (base);
+}
+
+static void
keys_changed_cb (GSettings *settings,
const GQuark *keys,
gint n_keys)
g_assert_cmpint (g_settings_get_int (direct, "val"), ==, 1);
g_assert_cmpint (g_settings_get_int (settings, "val"), ==, 33);
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
value = g_variant_new_int32 (1);
g_assert (!g_settings_range_check (settings, "val", value));
g_variant_unref (value);
value = g_variant_new_int32 (45);
g_assert (!g_settings_range_check (settings, "val", value));
g_variant_unref (value);
+G_GNUC_END_IGNORE_DEPRECATIONS
}
static gboolean
const gchar * const *schemas;
const gchar * const *relocs;
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
relocs = g_settings_list_relocatable_schemas ();
schemas = g_settings_list_schemas ();
+G_GNUC_END_IGNORE_DEPRECATIONS
g_assert (strv_set_equal ((gchar **)relocs,
"org.gtk.test.no-path",
GSettings *settings;
GVariant *range;
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
settings = g_settings_new ("org.gtk.test.range");
range = g_settings_get_range (settings, "val");
check_and_free (range, "('range', <(2, 44)>)");
range = g_settings_get_range (settings, "greeting");
check_and_free (range, "('type', <@as []>)");
g_object_unref (settings);
+G_GNUC_END_IGNORE_DEPRECATIONS
}
static void
g_settings_schema_unref (schema);
g_settings_schema_key_ref (key);
- g_assert_cmpstr (g_settings_schema_key_get_value_type (key), ==, G_VARIANT_TYPE_STRING);
+ g_assert (g_variant_type_equal (g_settings_schema_key_get_value_type (key), G_VARIANT_TYPE_STRING));
v = g_settings_schema_key_get_default_value (key);
str = g_variant_get_string (v, NULL);
g_test_add_func ("/gsettings/delay-apply", test_delay_apply);
g_test_add_func ("/gsettings/delay-revert", test_delay_revert);
+ g_test_add_func ("/gsettings/delay-child", test_delay_child);
g_test_add_func ("/gsettings/atomic", test_atomic);
g_test_add_func ("/gsettings/simple-binding", test_simple_binding);