metacity r3738 - in branches/test-system: src/core test
- From: tthurman svn gnome org
- To: svn-commits-list gnome org
- Subject: metacity r3738 - in branches/test-system: src/core test
- Date: Tue, 27 May 2008 21:20:13 +0000 (UTC)
Author: tthurman
Date: Tue May 27 21:20:12 2008
New Revision: 3738
URL: http://svn.gnome.org/viewvc/metacity?rev=3738&view=rev
Log:
Demonstration that the WM poll system works
Modified:
branches/test-system/src/core/prefs.c
branches/test-system/test/basic-test.py
Modified: branches/test-system/src/core/prefs.c
==============================================================================
--- branches/test-system/src/core/prefs.c (original)
+++ branches/test-system/src/core/prefs.c Tue May 27 21:20:12 2008
@@ -947,45 +947,47 @@
prefs_testing_handler (char type, char *details)
{
#ifdef HAVE_GCONF
- GConfValue value;
+ GConfValue *value;
+ GConfValueType value_type;
char *space_position = NULL;
+ char *value_as_string = NULL;
char *key = NULL;
- if (type!='C' || strlen(details)<3 || details[1]!=' ')
+ if (type!='C')
return NULL;
- space_position = strchr (details+2, ' ');
+ space_position = strchr (details, ' ');
if (space_position==NULL || *(space_position+1)==0)
return NULL;
- key = g_strndup (details+2, (space_position-details)-2);
+ key = g_strndup (details, space_position-details);
- meta_warning ("Key is [%s], value is [%s]\n", key, space_position+1);
+ value_as_string = space_position+1;
- /* FIXME: Does gconf_value_set_* set the type too? */
- switch (details[0])
+ if (value_as_string[0]=='T' || value_as_string[0]=='F' ||
+ value_as_string[0]=='t' || value_as_string[0]=='f')
+ value_type = GCONF_VALUE_BOOL;
+ else if ((value_as_string[0]>='0' && value_as_string[0]<='9') ||
+ value_as_string[0]=='-')
+ value_type = GCONF_VALUE_INT;
+ else if (value_as_string[0]=='"')
{
- case 'I':
- value.type = GCONF_VALUE_INT;
- /* gconf_value_set_int (value, xxx atoi or something FIXME */
- break;
-
- case 'S':
- value.type = GCONF_VALUE_STRING;
- break;
-
- case 'B':
- value.type = GCONF_VALUE_BOOL;
- gconf_valu
- break;
-
- default:
- meta_verbose ("Strange configuration type: %s\n", details);
+ value_as_string++;
+ value_type = GCONF_VALUE_STRING;
+ }
+ else
+ {
+ meta_warning ("Type couldn't be guessed from %s.\n", value_as_string);
return NULL;
}
- handle_configuration_update (key, &value);
+ /* We should probably get a GError back here */
+ value = gconf_value_new_from_string (value_type, value_as_string, NULL);
+
+ handle_configuration_update (key, value);
+
+ gconf_value_free (value);
return g_strdup("Y"); /* success */
Modified: branches/test-system/test/basic-test.py
==============================================================================
--- branches/test-system/test/basic-test.py (original)
+++ branches/test-system/test/basic-test.py Tue May 27 21:20:12 2008
@@ -51,7 +51,7 @@
return result[2:]
-query = 'B /apps/metacity/general/disable_workarounds 1'
+query = '/apps/metacity/general/disable_workarounds TRUE'
print 'Querying window manager with the query: ',query
print 'Received result: ',query_window_manager ('C', query)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]