gcompris r3700 - in trunk: . src/boards src/gcompris



Author: bcoudoin
Date: Fri Jan 30 21:15:28 2009
New Revision: 3700
URL: http://svn.gnome.org/viewvc/gcompris?rev=3700&view=rev

Log:
	Miguel DE IZARRA implemented the wordlist selector.
	We need some improvement to save data in the ~/My GCompris
	instead of the system datadir directory.



Modified:
   trunk/ChangeLog
   trunk/src/boards/advanced_colors.c
   trunk/src/boards/click_on_letter.c
   trunk/src/boards/colors.c
   trunk/src/boards/gletters.c
   trunk/src/boards/imageid.c
   trunk/src/boards/missingletter.c
   trunk/src/boards/py-mod-gcompris.c
   trunk/src/boards/reading.c
   trunk/src/boards/scale.c
   trunk/src/boards/shapegame.c
   trunk/src/boards/smallnumbers.c
   trunk/src/boards/wordsgame.c
   trunk/src/gcompris/Makefile.am
   trunk/src/gcompris/board_config.c
   trunk/src/gcompris/board_config.h
   trunk/src/gcompris/wordlist.c
   trunk/src/gcompris/wordlist.h

Modified: trunk/src/boards/advanced_colors.c
==============================================================================
--- trunk/src/boards/advanced_colors.c	(original)
+++ trunk/src/boards/advanced_colors.c	Fri Jan 30 21:15:28 2009
@@ -476,7 +476,13 @@
 	  sColor = g_strdup_printf("color%d", i+1);
 	  if (!strcmp((char *)xmlnode->name, sColor))
 	    {
-	      colors[i] = gettext((char *)xmlNodeListGetString(doc, xmlnode->xmlChildrenNode, 1));
+	      text = (char*)xmlNodeListGetString(doc, xmlnode->xmlChildrenNode, 1);
+	      if(text)
+	      {
+	      	colors[i] = gettext((char *)text);
+	        g_free(text);
+	      }
+	      text = NULL;
 	      g_free(sColor);
 	      break;
 	    }

Modified: trunk/src/boards/click_on_letter.c
==============================================================================
--- trunk/src/boards/click_on_letter.c	(original)
+++ trunk/src/boards/click_on_letter.c	Fri Jan 30 21:15:28 2009
@@ -622,8 +622,8 @@
   gchar *label = g_strdup_printf(_("<b>%s</b> configuration\n for profile <b>%s</b>"),
 				 agcomprisBoard->name,
 				 aProfile ? aProfile->name : "");
-
-  gc_board_config_window_display(label, conf_ok);
+  GcomprisBoardConf *bconf;
+  bconf = gc_board_config_window_display(label, conf_ok);
 
   g_free(label);
 
@@ -632,7 +632,7 @@
 
   gchar *saved_locale_sound = g_hash_table_lookup( config, "locale_sound");
 
-  gc_board_config_combo_locales_asset( "Select sound locale", saved_locale_sound,
+  gc_board_config_combo_locales_asset(bconf, "Select sound locale", saved_locale_sound,
 				"voices/$LOCALE/colors/purple.ogg");
 
   gboolean up_init = FALSE;
@@ -642,7 +642,7 @@
   if (up_init_str && (strcmp(up_init_str, "True")==0))
     up_init = TRUE;
 
-  gc_board_config_boolean_box(_("Uppercase only text"),
+  gc_board_config_boolean_box(bconf, _("Uppercase only text"),
 		       "uppercase_only",
 		       up_init);
 

Modified: trunk/src/boards/colors.c
==============================================================================
--- trunk/src/boards/colors.c	(original)
+++ trunk/src/boards/colors.c	Fri Jan 30 21:15:28 2009
@@ -164,7 +164,7 @@
   label = g_strdup_printf(_("<b>%s</b> configuration\n for profile <b>%s</b>"),
 			  agcomprisBoard->name, aProfile ? aProfile->name : "");
 
-  gc_board_config_window_display(label, conf_ok);
+  GcomprisBoardConf *bconf = gc_board_config_window_display(label, conf_ok);
 
   g_free(label);
 
@@ -173,7 +173,7 @@
 
   gchar *saved_locale_sound = g_hash_table_lookup( config, "locale_sound");
 
-  gc_board_config_combo_locales_asset( _("Select sound locale"), saved_locale_sound,
+  gc_board_config_combo_locales_asset(bconf, _("Select sound locale"), saved_locale_sound,
 				"voices/$LOCALE/colors/purple.ogg");
 
   g_hash_table_destroy(config);

Modified: trunk/src/boards/gletters.c
==============================================================================
--- trunk/src/boards/gletters.c	(original)
+++ trunk/src/boards/gletters.c	Fri Jan 30 21:15:28 2009
@@ -858,7 +858,7 @@
   label = g_strdup_printf(_("<b>%s</b> configuration\n for profile <b>%s</b>"),
 			  agcomprisBoard->name, aProfile ? aProfile->name : "");
 
-  gc_board_config_window_display(label, (GcomprisConfCallback )conf_ok);
+  GcomprisBoardConf *bconf = gc_board_config_window_display(label, (GcomprisConfCallback )conf_ok);
 
   g_free(label);
 
@@ -867,7 +867,7 @@
 
   gchar *locale = g_hash_table_lookup( config, "locale");
 
-  gc_board_config_combo_locales( locale);
+  gc_board_config_combo_locales( bconf, locale);
 
   gboolean up_init = FALSE;
 
@@ -876,7 +876,7 @@
   if (up_init_str && (strcmp(up_init_str, "True")==0))
     up_init = TRUE;
 
-  gc_board_conf_separator();
+  gc_board_conf_separator(bconf);
 
   gchar *control_sound = g_hash_table_lookup( config, "with_sound");
   if (control_sound && strcmp(g_hash_table_lookup( config, "with_sound"),"True")==0)
@@ -884,11 +884,11 @@
   else
     with_sound = FALSE;
 
-  gc_board_config_boolean_box(_("Enable sounds"), "with_sound", with_sound);
+  gc_board_config_boolean_box(bconf, _("Enable sounds"), "with_sound", with_sound);
 
-  gc_board_conf_separator();
+  gc_board_conf_separator(bconf);
 
-  gc_board_config_boolean_box(_("Uppercase only text"),
+  gc_board_config_boolean_box(bconf, _("Uppercase only text"),
 		       "uppercase_only",
 		       up_init);
 

Modified: trunk/src/boards/imageid.c
==============================================================================
--- trunk/src/boards/imageid.c	(original)
+++ trunk/src/boards/imageid.c	Fri Jan 30 21:15:28 2009
@@ -52,7 +52,6 @@
 } Board;
 
 /* XML */
-static gboolean		 read_xml_file(char *fname);
 static void		 init_xml(void);
 static void		 add_xml_data(xmlDocPtr doc,xmlNodePtr xmlnode, GNode * child);
 static void		 parse_doc(xmlDocPtr doc);
@@ -554,8 +553,8 @@
 {
   gchar *pixmapfile = NULL;
   gchar *text1 = NULL, *text2 = NULL, *text3 = NULL;
+  xmlChar* tmp;
   Board * board = g_new(Board,1);
-  gboolean found_text1 = FALSE, found_text2 = FALSE, found_text3 = FALSE;
 
   xmlnode = xmlnode->xmlChildrenNode;
 
@@ -566,30 +565,33 @@
     if (!strcmp((char *)xmlnode->name, "pixmapfile"))
       pixmapfile = (gchar *)xmlNodeListGetString(doc, xmlnode->xmlChildrenNode, 1);
 
-    if (!found_text1 && !strcmp((char *)xmlnode->name, "text1"))
+    if (!strcmp((char *)xmlnode->name, "text1"))
       {
 	if(text1==NULL)
 	  {
-	    text1 = \
-	      g_strdup(gettext((gchar *)xmlNodeListGetString(doc, xmlnode->xmlChildrenNode, 1)));
+	    tmp = xmlNodeListGetString(doc, xmlnode->xmlChildrenNode, 1);
+	    text1 = g_strdup(gettext((gchar*)tmp));
+	    g_free(tmp);
 	  }
       }
 
-    if (!found_text2 && !strcmp((char *)xmlnode->name, "text2"))
+    if (!strcmp((char *)xmlnode->name, "text2"))
       {
 	if(text2==NULL)
 	  {
-	    text2 = \
-	      g_strdup(gettext((gchar *)xmlNodeListGetString(doc, xmlnode->xmlChildrenNode, 1)));
+	    tmp = xmlNodeListGetString(doc, xmlnode->xmlChildrenNode, 1);
+	    text2 = g_strdup(gettext((gchar*)tmp));
+	    g_free(tmp);
 	  }
       }
 
-    if (!found_text3 && !strcmp((char *)xmlnode->name, "text3"))
+    if (!strcmp((char *)xmlnode->name, "text3"))
       {
 	if(text3==NULL)
 	  {
-	    text3 = \
-	      g_strdup(gettext((gchar *)xmlNodeListGetString(doc, xmlnode->xmlChildrenNode, 1)));
+	    tmp = xmlNodeListGetString(doc, xmlnode->xmlChildrenNode, 1);
+	    text3 = g_strdup(gettext((gchar *)tmp));
+	    g_free(tmp);
 	  }
       }
 
@@ -748,8 +750,8 @@
   gchar *label = g_strdup_printf(_("<b>%s</b> configuration\n for profile <b>%s</b>"),
 				 agcomprisBoard->name,
 				 aProfile ? aProfile->name : "");
-
-  gc_board_config_window_display( label,
+  GcomprisBoardConf *bconf;
+  bconf = gc_board_config_window_display( label,
 				 (GcomprisConfCallback )conf_ok);
 
   g_free(label);
@@ -759,7 +761,7 @@
 
   gchar *locale = g_hash_table_lookup( config, "locale");
 
-  gc_board_config_combo_locales( locale);
+  gc_board_config_combo_locales(bconf, locale);
 
 }
 

Modified: trunk/src/boards/missingletter.c
==============================================================================
--- trunk/src/boards/missingletter.c	(original)
+++ trunk/src/boards/missingletter.c	Fri Jan 30 21:15:28 2009
@@ -770,8 +770,8 @@
   gchar *label = g_strdup_printf(_("<b>%s</b> configuration\n for profile <b>%s</b>"),
 				 agcomprisBoard->name,
 				 aProfile ? aProfile->name : "");
-
-  gc_board_config_window_display( label,
+  GcomprisBoardConf *bconf;
+  bconf = gc_board_config_window_display( label,
 				 (GcomprisConfCallback )conf_ok);
 
   g_free(label);
@@ -781,7 +781,7 @@
 
   gchar *locale = g_hash_table_lookup( config, "locale");
 
-  gc_board_config_combo_locales( locale);
+  gc_board_config_combo_locales(bconf, locale);
 
 }
 

Modified: trunk/src/boards/py-mod-gcompris.c
==============================================================================
--- trunk/src/boards/py-mod-gcompris.c	(original)
+++ trunk/src/boards/py-mod-gcompris.c	Fri Jan 30 21:15:28 2009
@@ -1076,7 +1076,7 @@
 
   /* Call the corresponding C function */
   return (PyObject *)pygobject_new((GObject*) \
-				    gc_board_config_boolean_box((const gchar *)label, key, PyObject_IsTrue(py_bool)));
+				    gc_board_config_boolean_box(NULL,(const gchar *)label, key, PyObject_IsTrue(py_bool)));
 
 }
 
@@ -1111,7 +1111,7 @@
 
   /* Call the corresponding C function */
   return (PyObject *)pygobject_new((GObject*) \
-				    gc_board_config_combo_box((const gchar *)label,
+				    gc_board_config_combo_box(NULL, (const gchar *)label,
 						       list,
 						       key,
 						       init));
@@ -1196,7 +1196,7 @@
 			  g_strdup(PyString_AsString(pyvalue)));
   }
 
-  result = gc_board_config_radio_buttons(label,
+  result = gc_board_config_radio_buttons(NULL,label,
 				  key,
 				  buttons_label,
 				  init);
@@ -1218,7 +1218,7 @@
     return NULL;
 
   return (PyObject *)pygobject_new((GObject*) \
-				   gc_board_config_spin_int((const gchar *)label,
+				   gc_board_config_spin_int(NULL, (const gchar *)label,
 						     key,
 						     min,
 						     max,
@@ -1237,7 +1237,7 @@
     return NULL;
 
   /* Create and return the result */
-  return (PyObject *)pygobject_new((GObject*) gc_board_conf_separator());
+  return (PyObject *)pygobject_new((GObject*) gc_board_conf_separator(NULL));
 
 }
 
@@ -1252,7 +1252,7 @@
     return NULL;
 
   return (PyObject *)pygobject_new((GObject*) \
-				   gc_board_config_combo_locales( init));
+				   gc_board_config_combo_locales(NULL, init));
 }
 
 
@@ -1295,7 +1295,7 @@
     return NULL;
 
   return (PyObject *)pygobject_new((GObject*) \
-				   gc_board_config_combo_locales_asset( label, init, file ));
+				   gc_board_config_combo_locales_asset(NULL, label, init, file ));
 }
 
 
@@ -1446,7 +1446,7 @@
 
   return (PyObject *) \
              pygobject_new((GObject*) \
-			   gc_board_config_textview( label,
+			   gc_board_config_textview(NULL, label,
 					      key,
 					      desc,
 					      init_text,

Modified: trunk/src/boards/reading.c
==============================================================================
--- trunk/src/boards/reading.c	(original)
+++ trunk/src/boards/reading.c	Fri Jan 30 21:15:28 2009
@@ -821,6 +821,7 @@
 reading_config_start(GcomprisBoard *agcomprisBoard,
 		    GcomprisProfile *aProfile)
 {
+  GcomprisBoardConf *conf;
   board_conf = agcomprisBoard;
   profile_conf = aProfile;
 
@@ -831,7 +832,7 @@
 				 agcomprisBoard->name,
 				 aProfile? aProfile->name: "");
 
-  gc_board_config_window_display( label,
+  conf = gc_board_config_window_display( label,
 				 (GcomprisConfCallback )conf_ok);
 
   g_free(label);
@@ -841,8 +842,8 @@
 
   gchar *locale = g_hash_table_lookup( config, "locale");
 
-  gc_board_config_combo_locales( locale);
-
+  gc_board_config_combo_locales(conf, locale);
+  gc_board_config_wordlist(conf, "wordsgame/default-$LOCALE.xml");
 }
 
 

Modified: trunk/src/boards/scale.c
==============================================================================
--- trunk/src/boards/scale.c	(original)
+++ trunk/src/boards/scale.c	Fri Jan 30 21:15:28 2009
@@ -861,8 +861,8 @@
   gchar * label = g_strdup_printf(_("<b>%s</b> configuration\n for profile <b>%s</b>"),
 				  agcomprisBoard->name,
 				  aProfile? aProfile->name : "");
-
-  gc_board_config_window_display( label,
+  GcomprisBoardConf *bconf;
+  bconf = gc_board_config_window_display( label,
 				 (GcomprisConfCallback )conf_ok);
 
   g_free(label);
@@ -878,7 +878,7 @@
   else
     drag_previous = 0;
 
-  gc_board_config_combo_drag( drag_mode);
+  gc_board_config_combo_drag(bconf, drag_mode);
 
 }
 

Modified: trunk/src/boards/shapegame.c
==============================================================================
--- trunk/src/boards/shapegame.c	(original)
+++ trunk/src/boards/shapegame.c	Fri Jan 30 21:15:28 2009
@@ -1871,7 +1871,8 @@
 				  agcomprisBoard->name,
 				  aProfile? aProfile->name : "");
 
-  gc_board_config_window_display( label,
+  GcomprisBoardConf *bconf;
+  bconf = gc_board_config_window_display( label,
 				 (GcomprisConfCallback )conf_ok);
 
   g_free(label);
@@ -1882,7 +1883,7 @@
   if (strcmp(agcomprisBoard->name, "imagename")==0){
     gchar *locale = g_hash_table_lookup( config, "locale");
 
-    gc_board_config_combo_locales( locale);
+    gc_board_config_combo_locales( bconf, locale);
   }
 
   gchar *drag_mode_str = g_hash_table_lookup( config, "drag_mode");
@@ -1893,7 +1894,7 @@
   else
     drag_previous = 0;
 
-  gc_board_config_combo_drag( drag_mode);
+  gc_board_config_combo_drag(bconf, drag_mode);
 
 }
 

Modified: trunk/src/boards/smallnumbers.c
==============================================================================
--- trunk/src/boards/smallnumbers.c	(original)
+++ trunk/src/boards/smallnumbers.c	Fri Jan 30 21:15:28 2009
@@ -592,7 +592,8 @@
   label = g_strdup_printf(_("<b>%s</b> configuration\n for profile <b>%s</b>"),
 			  agcomprisBoard->name, aProfile ? aProfile->name : "");
 
-  gc_board_config_window_display(label, (GcomprisConfCallback )conf_ok);
+  GcomprisBoardConf *bconf;
+  bconf = gc_board_config_window_display(label, (GcomprisConfCallback )conf_ok);
 
   g_free(label);
 
@@ -607,9 +608,9 @@
   else
     with_sound = FALSE;
 
-  GtkCheckButton  *sound_control = gc_board_config_boolean_box(_("Enable sounds"), "with_sound", with_sound);
+  GtkCheckButton  *sound_control = gc_board_config_boolean_box(bconf, _("Enable sounds"), "with_sound", with_sound);
 
-  GtkComboBox *sound_box = gc_board_config_combo_locales_asset( _("Select sound locale"),
+  GtkComboBox *sound_box = gc_board_config_combo_locales_asset(bconf, _("Select sound locale"),
 							 saved_locale_sound,
 							 "voices/$LOCALE/colors/purple.ogg");
 

Modified: trunk/src/boards/wordsgame.c
==============================================================================
--- trunk/src/boards/wordsgame.c	(original)
+++ trunk/src/boards/wordsgame.c	Fri Jan 30 21:15:28 2009
@@ -79,6 +79,10 @@
 static void		 wordsgame_destroy_all_items(void);
 static void		 wordsgame_next_level(void);
 static void		 wordsgame_add_new_item(void);
+static void		 wordsgame_config_start(GcomprisBoard *agcomprisBoard,
+					     GcomprisProfile *aProfile);
+static void		 wordsgame_config_stop(void);
+
 
 static void		 player_win(LettersItem *item);
 static void		 player_loose(void);
@@ -121,8 +125,8 @@
     set_level,
     NULL,
     NULL,
-    NULL,
-    NULL
+    wordsgame_config_start,
+    wordsgame_config_stop
   };
 
 /*
@@ -186,7 +190,7 @@
       gcomprisBoard->level = 1;
       gcomprisBoard->maxlevel = 6;
       gcomprisBoard->sublevel = 0;
-      gc_bar_set(GC_BAR_LEVEL);
+      gc_bar_set(GC_BAR_LEVEL|GC_BAR_CONFIG);
 
       /* Default speed */
       speed=DEFAULT_SPEED;
@@ -754,3 +758,30 @@
 {
   gc_sound_play_ogg ("sounds/crash.wav", NULL);
 }
+
+static void conf_ok(gpointer data)
+{
+	pause_board(FALSE);
+}
+
+static void wordsgame_config_start(GcomprisBoard *agcomprisBoard, GcomprisProfile *aProfile)
+{
+	if (gcomprisBoard)
+		pause_board(TRUE);
+
+	gchar *label = g_strdup_printf(_("<b>%s</b> configuration\n for profile <b>%s</b>"),
+			agcomprisBoard->name,
+			aProfile? aProfile->name: "");
+	GcomprisBoardConf *bconf;
+	bconf = gc_board_config_window_display( label,
+			(GcomprisConfCallback )conf_ok);
+
+	g_free(label);
+
+	gc_board_config_wordlist(bconf, "wordsgame/default-$LOCALE.xml");
+}
+
+static void wordsgame_config_stop(void)
+{
+}
+

Modified: trunk/src/gcompris/Makefile.am
==============================================================================
--- trunk/src/gcompris/Makefile.am	(original)
+++ trunk/src/gcompris/Makefile.am	Fri Jan 30 21:15:28 2009
@@ -70,7 +70,9 @@
 	binreloc.c \
 	binreloc.h \
 	board.h board.c \
-	board_config.h \
+	board_config_common.c board_config_common.h \
+	board_config_combo.c board_config_radio.c\
+	board_config_textview.c board_config_wordlist.c \
 	board_config.h board_config.c \
 	bonus.c \
 	bonus.h \

Modified: trunk/src/gcompris/board_config.c
==============================================================================
--- trunk/src/gcompris/board_config.c	(original)
+++ trunk/src/gcompris/board_config.c	Fri Jan 30 21:15:28 2009
@@ -19,10 +19,8 @@
  */
 
 #include <string.h>
-
 #include "gcompris.h"
-
-#define COMBOBOX_COL_MAX 15
+#include "board_config_common.h"
 
 static GcomprisBoard *config_board;
 
@@ -60,37 +58,23 @@
   return;
 }
 
-static GtkWindow *conf_window = NULL;
-static GtkVBox *main_conf_box = NULL;
-static GHashTable *hash_conf = NULL;
-static GcomprisConfCallback Confcallback = NULL;
-static gchar *label_markup = NULL;
-
-
-static void
-check_key(gchar *key)
-{
-  if ((strcmp(key, "locale") == 0) ||
-      (strcmp(key, "locale_sound") == 0) ||
-      (strcmp(key, "wordlist") == 0))
-    g_error(" Key %s forbiden ! Change !", key);
-}
-
 void
 gc_board_conf_close (GtkDialog *dialog,
 		     gpointer   user_data)
 {
+  GcomprisBoardConf *u= (GcomprisBoardConf*)user_data;
+
   gtk_object_destroy(GTK_OBJECT(dialog));
-  g_hash_table_destroy (hash_conf);
-  hash_conf = NULL;
+  g_hash_table_destroy (u->hash_conf);
+  u->hash_conf = NULL;
 
   /* in case we close without response */
-  if (Confcallback){
-    Confcallback(NULL);
-    Confcallback = NULL;
+  if (u->Confcallback){
+    u->Confcallback(NULL);
+    u->Confcallback = NULL;
   }
+  g_free(u);
 
-  g_free(label_markup);
 }
 
 void
@@ -98,28 +82,29 @@
 		      gint arg1,
 		      gpointer user_data)
 {
+  GcomprisBoardConf *u= (GcomprisBoardConf*)user_data;
 
-  if (Confcallback){
+  if (u->Confcallback){
 
     switch (arg1){
     case GTK_RESPONSE_APPLY:
-      Confcallback(hash_conf);
+      u->Confcallback(u->hash_conf);
       break;
     case GTK_RESPONSE_CANCEL:
-      Confcallback(NULL);
+      u->Confcallback(NULL);
       break;
     case GTK_RESPONSE_NONE:
-      Confcallback(NULL);
+      u->Confcallback(NULL);
       break;
     default:
-      Confcallback(NULL);
+      u->Confcallback(NULL);
       break;
     }
 
-    Confcallback = NULL;
+    u->Confcallback = NULL;
   }
 
-  gc_board_conf_close (GTK_DIALOG(conf_window), NULL);
+  gc_board_conf_close (GTK_DIALOG(u->conf_window), u);
 
 }
 
@@ -130,6 +115,7 @@
 _conf_window_configured(GtkWindow *window,
 			GdkEventConfigure *event, gpointer param)
 {
+  GcomprisBoardConf *u= (GcomprisBoardConf*)param;
   gint new_x, new_y;
   double screen_width, screen_height;
   /* Because we call gtk_window_move, we cause a configure event. Filter out
@@ -143,7 +129,7 @@
     new_x = ((gint)screen_width - event->width) / 2;
     new_y = ((gint)screen_height - event->height) / 2;
     /* printf("screen %dx%d, window %dx%d, place %dx%d\n", (int)screen_width, (int)screen_height, event->width, event->height, new_x, new_y); */
-    gtk_window_move (conf_window, new_x, new_y);
+    gtk_window_move (u->conf_window, new_x, new_y);
     memcpy(&last_configure_event, event, sizeof(GdkEventConfigure));
   }
 
@@ -152,14 +138,17 @@
 }
 #endif
 
-GtkVBox *
+GcomprisBoardConf *
 gc_board_config_window_display(gchar *label, GcomprisConfCallback callback)
 {
   GtkWidget *header;
+  GcomprisBoardConf *config;
+
+  config = g_malloc0(sizeof(GcomprisBoardConf));
 
   /* init static values or callbacks */
-  Confcallback = callback;
-  hash_conf = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
+  config->Confcallback = callback;
+  config->hash_conf = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
 
   /* Creating a config window will cause our main window to loose focus,
      this tells the main window to ignore the next focus out event (and thus
@@ -167,7 +156,7 @@
   gc_ignore_next_focus_out();
 
   /* main configuration window */
-  conf_window = \
+  config->conf_window = \
     GTK_WINDOW(gtk_dialog_new_with_buttons ("GCompris",
 					    GTK_WINDOW(gtk_widget_get_toplevel (GTK_WIDGET(gc_board_get_current()->canvas))),
 					    GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
@@ -184,16 +173,16 @@
       !gc_prop_get()->noxf86vm)
     {
       memset(&last_configure_event, 0, sizeof(GdkEventConfigure));
-      gtk_widget_add_events(GTK_WIDGET(conf_window), GDK_STRUCTURE_MASK);
-      gtk_signal_connect (GTK_OBJECT (conf_window), "configure_event",
+      gtk_widget_add_events(GTK_WIDGET(config->conf_window), GDK_STRUCTURE_MASK);
+      gtk_signal_connect (GTK_OBJECT (config->conf_window), "configure_event",
         GTK_SIGNAL_FUNC (_conf_window_configured), 0);
     }
   else
 #endif
-      gtk_window_set_position (conf_window,
+      gtk_window_set_position (config->conf_window,
 				   GTK_WIN_POS_CENTER_ALWAYS);
 
-  gtk_widget_show(GTK_WIDGET(conf_window));
+  gtk_widget_show(GTK_WIDGET(config->conf_window));
 
   GcomprisProperties *properties = gc_prop_get();
   if (properties->fullscreen && !properties->noxf86vm)
@@ -203,24 +192,24 @@
       g_warning("Pointer grab failed");
 
   /* main vbox in window */
-  main_conf_box = GTK_VBOX(GTK_DIALOG(conf_window)->vbox);
+  config->main_conf_box = GTK_VBOX(GTK_DIALOG(config->conf_window)->vbox);
 
-  g_signal_connect(G_OBJECT(conf_window),
+  g_signal_connect(G_OBJECT(config->conf_window),
 		   "response",
 		   G_CALLBACK(_response_board_conf),
-		   NULL);
+		   config);
 
-  g_signal_connect (G_OBJECT(conf_window),
+  g_signal_connect (G_OBJECT(config->conf_window),
 		    "close",
 		    G_CALLBACK(gc_board_conf_close),
-		    NULL);
+		    config);
 
 
 
   /* Label header */
   header = gtk_label_new ((gchar *)NULL);
   gtk_widget_show(header);
-  gtk_box_pack_start (GTK_BOX(main_conf_box),
+  gtk_box_pack_start (GTK_BOX(config->main_conf_box),
 		      header,
 		      FALSE,
 		      FALSE,
@@ -229,20 +218,23 @@
   gtk_label_set_justify (GTK_LABEL(header),
 			 GTK_JUSTIFY_CENTER);
 
+  gchar *label_markup = NULL;
   label_markup = g_strdup_printf("<span size='large'>%s</span>",label);
   gtk_label_set_markup (GTK_LABEL(header),
                         (const gchar *)label_markup);
+  g_free(label_markup);
 
-  gc_board_conf_separator();
+  gc_board_conf_separator(config);
 
-  return main_conf_box;
+  return config;
 }
 
 void
 gc_board_conf_boolean_box_toggled (GtkToggleButton *togglebutton,
 			      gpointer key)
 {
-  gchar *the_key = g_strdup((gchar *)key);
+  _gc_boardconf_key *u = (_gc_boardconf_key*)key;
+  gchar *the_key = g_strdup(u->key);
   gchar *value;
 
   if (gtk_toggle_button_get_active (togglebutton))
@@ -250,19 +242,22 @@
   else
     value = g_strdup("False");
 
-  g_hash_table_replace(hash_conf, (gpointer) the_key, (gpointer) value);
+  g_hash_table_replace(u->config->hash_conf, (gpointer) the_key, (gpointer) value);
 }
 
 GtkCheckButton *
-gc_board_config_boolean_box(const gchar *label, gchar *key, gboolean initial_value)
+gc_board_config_boolean_box(GcomprisBoardConf *config, const gchar *label, gchar *key, gboolean initial_value)
 {
+  _gc_boardconf_key *user_data;
+
+  g_return_val_if_fail(config, NULL);
   check_key( key);
 
   GtkWidget *CheckBox = gtk_check_button_new_with_label (label);
 
   gtk_widget_show(CheckBox);
 
-  gtk_box_pack_start (GTK_BOX(main_conf_box),
+  gtk_box_pack_start (GTK_BOX(config->main_conf_box),
 		      CheckBox,
 		      FALSE,
 		      FALSE,
@@ -271,242 +266,37 @@
   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(CheckBox),
 				initial_value);
 
+  user_data = g_malloc0(sizeof(_gc_boardconf_key));
+  user_data -> key =g_strdup(key);
+  user_data -> config = config;
+
   g_signal_connect   (G_OBJECT(CheckBox),
 		      "toggled",
 		      G_CALLBACK(gc_board_conf_boolean_box_toggled),
-		      key);
-
+		      user_data);
+  g_signal_connect  (G_OBJECT(CheckBox),
+  			"destroy",
+			G_CALLBACK(_gc_destroy_boardconf_key),
+			user_data);
   return GTK_CHECK_BUTTON(CheckBox);
 }
 
-/* code get from gtk */
-/* included here to not depend on gtk 2.6 */
-
-static gchar *
-_get_active_text (GtkComboBox *combo_box)
-{
-  GtkTreeIter iter;
-  gchar *text = NULL;
-
-  g_return_val_if_fail (GTK_IS_LIST_STORE (gtk_combo_box_get_model (combo_box)), NULL);
-
-  if (gtk_combo_box_get_active_iter (combo_box, &iter))
-    gtk_tree_model_get (gtk_combo_box_get_model (combo_box), &iter,
-			0, &text, -1);
-
-  return text;
-}
-
-static void
-_combo_box_changed(GtkComboBox *combobox,
-		   gpointer key)
-{
-  gchar *the_key = g_strdup((gchar *)key);
-
-  gchar *value = g_strdup_printf("%s", _get_active_text (combobox));
-
-  g_hash_table_replace(hash_conf, (gpointer) the_key, (gpointer) value);
-}
-
-static inline int my_strcmp(gchar *a, gchar *b) { return strcmp( a, b); }
-
-
-GtkComboBox *gc_board_config_combo_box(const gchar *label, GList *strings, gchar *key, gchar *init)
-{
-  check_key( key);
-
-  GtkWidget *combobox;
-  GtkWidget *hbox = gtk_hbox_new (FALSE, 8);
-  GList *list;
-  GtkWidget *label_combo;
-  gint init_index = 0;
-
-  if (init)
-    init_index =  g_list_position ( strings, g_list_find_custom ( strings,(gconstpointer)  init, (GCompareFunc) my_strcmp));
-
-  if (init_index < 0)
-    init_index=0;
-
-  gtk_widget_show(hbox);
-
-  gtk_box_pack_start (GTK_BOX(main_conf_box),
-		      hbox,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  /* Label */
-  label_combo = gtk_label_new ((gchar *)NULL);
-  gtk_widget_show(label_combo);
-  gtk_box_pack_start (GTK_BOX(hbox),
-		      label_combo,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  gtk_label_set_justify (GTK_LABEL(label_combo),
-			 GTK_JUSTIFY_RIGHT);
-
-  gtk_label_set_markup (GTK_LABEL(label_combo),
-                        (const gchar *)label);
-
-
-  combobox = gtk_combo_box_new_text();
-
-  gtk_widget_show(combobox);
-
-  gtk_box_pack_start (GTK_BOX(hbox),
-		      combobox,
-		      FALSE,
-		      FALSE,
-		      0);
-
-
-  for (list = strings; list != NULL; list = list->next)
-    gtk_combo_box_append_text       (GTK_COMBO_BOX(combobox),
-				     list->data);
-
-  if (g_list_length(strings) > COMBOBOX_COL_MAX)
-    gtk_combo_box_set_wrap_width    (GTK_COMBO_BOX(combobox),
-  	     g_list_length(strings) / COMBOBOX_COL_MAX +1 );
-
-  gtk_combo_box_set_active (GTK_COMBO_BOX(combobox),
-			    init_index);
-
-  g_signal_connect(G_OBJECT(combobox),
-		   "changed",
-		   G_CALLBACK(_combo_box_changed),
-		   key);
-
-  return GTK_COMBO_BOX(combobox);
-}
-
-static GSList *radio_group = NULL;
-static GtkWidget *radio_box;
-static gchar *radio_key = NULL;
-static gchar *radio_text = NULL;
-static gchar *radio_init = NULL;
-
-static void radio_changed(GtkToggleButton *togglebutton,
-			  gpointer key)
-{
-  gboolean state = gtk_toggle_button_get_active (togglebutton);
-  gchar *h_key;
-  gchar *h_value;
-
-  if (state){
-    h_key = g_strdup (radio_key);
-    h_value = g_strdup((gchar *) key);
-    g_hash_table_replace (hash_conf, h_key, h_value);
-  }
-}
-
-static void
-create_radio_buttons(gpointer key,
-		     gpointer value,
-		     gpointer hash_radio)
-{
-  GtkWidget *radio_button;
-  gchar *key_copy;
-
-  radio_button = gtk_radio_button_new_with_label (radio_group,
-						  (const gchar *) g_strdup(value));
-
-  gtk_box_pack_start (GTK_BOX (radio_box), radio_button, TRUE, TRUE, 2);
-
-  gtk_widget_show (GTK_WIDGET (radio_button));
-
-  radio_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (radio_button));
-
-  key_copy = g_strdup ((gchar *)key);
-
-  if (strcmp( key_copy, radio_init)==0)
-    gtk_toggle_button_set_active    (GTK_TOGGLE_BUTTON(radio_button),TRUE);
-
-  g_signal_connect(G_OBJECT(radio_button),
-		   "toggled",
-		   G_CALLBACK(radio_changed),
-		   (gpointer) key_copy);
-
-  g_hash_table_replace ( hash_radio, (gpointer) key_copy, (gpointer) radio_button);
-}
-
-static void
-destroy_hash (GtkObject *object,
-	      gpointer hash_table)
-{
-  g_hash_table_destroy((GHashTable *)hash_table);
-  radio_group = NULL;
-  g_free(radio_text);
-  g_free(radio_key);
-  g_free(radio_init);
-}
-
-GHashTable *
-gc_board_config_radio_buttons(const gchar *label,
-		       gchar *key,
-		       GHashTable *buttons_label,
-		       gchar *init)
-{
-  check_key( key);
-
-  GtkWidget *radio_label;
-
-  GHashTable *buttons = g_hash_table_new_full (g_str_hash,
-					       g_str_equal,
-					       g_free,
-					       NULL);
-
-  radio_box = gtk_vbox_new (TRUE, 2);
-  gtk_widget_show (GTK_WIDGET (radio_box));
-
-  gtk_box_pack_start (GTK_BOX(main_conf_box),
-		      radio_box,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  radio_label = gtk_label_new ((gchar *)NULL);
-  gtk_widget_show(radio_label);
-
-  gtk_box_pack_start (GTK_BOX(radio_box),
-		      radio_label,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  gtk_label_set_justify (GTK_LABEL(radio_label),
-			 GTK_JUSTIFY_CENTER);
-
-  radio_text = g_strdup(label);
-  gtk_label_set_markup (GTK_LABEL(radio_label),
-                        (const gchar *)radio_text);
-
-  radio_key = g_strdup(key);
-  radio_init = g_strdup(init);
-
-  g_hash_table_foreach( buttons_label,
-			(GHFunc) create_radio_buttons,
-			(gpointer) buttons);
-
-  g_signal_connect (G_OBJECT(radio_box), "destroy", G_CALLBACK(destroy_hash), (gpointer) buttons);
-
-  return buttons;
-}
-
 static void
 spin_changed (GtkSpinButton *spinbutton,
-	      gpointer key)
+	      gpointer data)
 {
-  gchar *h_key = g_strdup((gchar *) key);
+  _gc_boardconf_key *u = (_gc_boardconf_key*)data;
+
+  gchar *h_key = g_strdup(u->key);
   gchar *h_value = g_strdup_printf("%d",gtk_spin_button_get_value_as_int (spinbutton));
 
-  g_hash_table_replace (hash_conf, h_key, h_value);
+  g_hash_table_replace (u->config->hash_conf, h_key, h_value);
 }
 
 GtkSpinButton *
-gc_board_config_spin_int(const gchar *label, gchar *key, gint min, gint max, gint step, gint init)
+gc_board_config_spin_int(GcomprisBoardConf *config, const gchar *label, gchar *key, gint min, gint max, gint step, gint init)
 {
+  g_return_val_if_fail(config, NULL);
   check_key( key);
 
   GtkWidget *spin;
@@ -515,7 +305,7 @@
 
   gtk_widget_show(hbox);
 
-  gtk_box_pack_start (GTK_BOX(main_conf_box),
+  gtk_box_pack_start (GTK_BOX(config->main_conf_box),
 		      hbox,
 		      FALSE,
 		      FALSE,
@@ -551,24 +341,33 @@
   gtk_spin_button_set_digits ( GTK_SPIN_BUTTON(spin), 0);
 
   gtk_spin_button_set_value ( GTK_SPIN_BUTTON(spin), (gdouble) init);
+  
+  _gc_boardconf_key *u = g_malloc0(sizeof(_gc_boardconf_key));
+  u->key = g_strdup(key);
+  u->config = config;
 
   g_signal_connect (G_OBJECT(spin),
 		    "value-changed",
 		    G_CALLBACK(spin_changed),
-		    key);
+		    u);
+  g_signal_connect( G_OBJECT(spin),
+	  	"destroy", 
+		G_CALLBACK(_gc_destroy_boardconf_key),
+		u);
 
   return GTK_SPIN_BUTTON(spin);
 
 }
 
 GtkHSeparator *
-gc_board_conf_separator()
+gc_board_conf_separator(GcomprisBoardConf *config)
 {
+  g_return_val_if_fail(config, NULL);
   GtkWidget *separator = gtk_hseparator_new ();
 
   gtk_widget_show(separator);
 
-  gtk_box_pack_start (GTK_BOX(main_conf_box),
+  gtk_box_pack_start (GTK_BOX(config->main_conf_box),
 		      separator,
 		      FALSE,
 		      FALSE,
@@ -578,669 +377,3 @@
 
 }
 
-/***********************************************/
-/* L10n                                        */
-/***********************************************/
-
-/** \brief return the list of locales in which GCompris has been translated
- *         even partialy.
- *
- * \note The list is calculated at the first call and must not be freed.
- *       Uppon next call, the same list is returned.
- *
- * \return a list containing the locales we suport
- */
-GList*
-gc_locale_gets_list(){
-
-  static GList *gcompris_locales_list = NULL;
-
-  GcomprisProperties *properties = gc_prop_get();
-  GDir   *textdomain_dir;
-  GError **error = NULL;
-  GList  *locales = NULL;
-
-  if(gcompris_locales_list)
-    return(gcompris_locales_list);
-
-  /* There is no english locale but it exists anyway */
-  locales = g_list_append(locales, g_strdup("en"));
-
-  textdomain_dir = g_dir_open (properties->package_locale_dir, 0, error);
-  const gchar *fname;
-  gchar *fname_abs;
-  gchar *catalog;
-
-  while ((fname = g_dir_read_name(textdomain_dir))) {
-    fname_abs = g_strdup_printf("%s/%s", properties->package_locale_dir, fname);
-    if (!g_file_test(fname_abs, G_FILE_TEST_IS_DIR))
-      continue;
-
-    catalog = g_strdup_printf("%s/LC_MESSAGES/gcompris.mo", fname_abs);
-
-    if (g_file_test(catalog, G_FILE_TEST_EXISTS)){
-      locales = g_list_append(locales, g_strdup(fname));
-    }
-    g_free (fname_abs);
-    g_free(catalog);
-  }
-
-  g_dir_close (textdomain_dir);
-
-  /* Save it for next call */
-  gcompris_locales_list = locales;
-
-  return locales;
-}
-
-
-void
-gc_board_config_combo_locales_changed(GtkComboBox *combobox,
-			       gpointer key)
-{
-  gchar *the_key = g_strdup((gchar *)key);
-  gchar *value;
-  gint index = gtk_combo_box_get_active (combobox);
-
-  if (index == 0)
-    /* Default value of gcompris selected */
-    value = g_strdup ("NULL");
-  else
-    value = _get_active_text (combobox);
-
-  g_hash_table_replace(hash_conf, (gpointer) the_key, (gpointer) value);
-}
-
-/* key = "locale" */
-GtkComboBox*
-gc_board_config_combo_locales(gchar *init)
-{
-
-  GtkWidget *combobox;
-  GtkWidget *hbox = gtk_hbox_new (FALSE, 8);
-  GList *list, *strings;
-  GtkWidget *label_combo;
-  gint init_index = 0;
-
-  strings = gc_locale_gets_list();
-
-  strings = g_list_prepend( strings, _("Default"));
-
-  if (init)
-    init_index = g_list_position(strings,
-				 g_list_find_custom(strings,
-						    (gconstpointer) init,
-						    (GCompareFunc) my_strcmp));
-
-  if (init_index < 0)
-    init_index=0;
-
-  gtk_widget_show(hbox);
-
-  gtk_box_pack_start (GTK_BOX(main_conf_box),
-		      hbox,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  /* Label */
-  label_combo = gtk_label_new ((gchar *)NULL);
-  gtk_widget_show(label_combo);
-  gtk_box_pack_start (GTK_BOX(hbox),
-		      label_combo,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  gtk_label_set_justify (GTK_LABEL(label_combo),
-			 GTK_JUSTIFY_RIGHT);
-
-  gtk_label_set_markup (GTK_LABEL(label_combo),
-                        _("Select the language\n to use in the board"));
-
-  combobox = gtk_combo_box_new_text();
-
-  gtk_widget_show(combobox);
-
-  gtk_box_pack_start (GTK_BOX(hbox),
-		      combobox,
-		      FALSE,
-		      FALSE,
-		      0);
-
-
-  for (list = strings; list != NULL; list = list->next)
-    gtk_combo_box_append_text       (GTK_COMBO_BOX(combobox),
-				     list->data);
-
-  if (g_list_length(strings) > COMBOBOX_COL_MAX)
-    gtk_combo_box_set_wrap_width    (GTK_COMBO_BOX(combobox),
-  	     g_list_length(strings) / COMBOBOX_COL_MAX +1 );
-
-  gtk_combo_box_set_active (GTK_COMBO_BOX(combobox),
-			    init_index);
-
-  g_signal_connect(G_OBJECT(combobox),
-		   "changed",
-		   G_CALLBACK(gc_board_config_combo_locales_changed),
-		   "locale");
-
-  return GTK_COMBO_BOX(combobox);
-
-}
-
-void
-gc_board_config_combo_drag_changed(GtkComboBox *combobox,
-			       gpointer key)
-{
-  gchar *the_key = g_strdup((gchar *)key);
-  gchar *value;
-  gint index = gtk_combo_box_get_active (combobox);
-
-  if (index == 0)
-    /* Default value of gcompris selected */
-    value = g_strdup ("NULL");
-  else
-    value = g_strdup_printf("%d", index);
-
-  g_hash_table_replace(hash_conf, (gpointer) the_key, (gpointer) value);
-}
-
-/* key = "locale" */
-GtkComboBox*
-gc_board_config_combo_drag(gint init)
-{
-
-  GtkWidget *combobox;
-  GtkWidget *hbox = gtk_hbox_new (FALSE, 8);
-  GList *list, *strings;
-  GtkWidget *label_combo;
-  gint init_index;
-
-  strings = NULL;
-
-  strings = g_list_prepend( strings, _("Global GCompris mode"));
-  strings = g_list_append( strings, _("Normal"));
-  strings = g_list_append( strings, _("2 clicks"));
-  strings = g_list_append( strings, _("both modes"));
-
-  if (init < 0)
-    init_index =0;
-  else
-    init_index = init;
-
-  gtk_widget_show(hbox);
-
-  gtk_box_pack_start (GTK_BOX(main_conf_box),
-		      hbox,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  /* Label */
-  label_combo = gtk_label_new ((gchar *)NULL);
-  gtk_widget_show(label_combo);
-  gtk_box_pack_start (GTK_BOX(hbox),
-		      label_combo,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  gtk_label_set_justify (GTK_LABEL(label_combo),
-			 GTK_JUSTIFY_RIGHT);
-
-  gtk_label_set_markup (GTK_LABEL(label_combo),
-                        _("Select the drag and drop mode\n to use in the board"));
-
-  combobox = gtk_combo_box_new_text();
-
-  gtk_widget_show(combobox);
-
-  gtk_box_pack_start (GTK_BOX(hbox),
-		      combobox,
-		      FALSE,
-		      FALSE,
-		      0);
-
-
-  for (list = strings; list != NULL; list = list->next)
-    gtk_combo_box_append_text       (GTK_COMBO_BOX(combobox),
-				     list->data);
-
-  if (g_list_length(strings) > COMBOBOX_COL_MAX)
-    gtk_combo_box_set_wrap_width    (GTK_COMBO_BOX(combobox),
-  	     g_list_length(strings) / COMBOBOX_COL_MAX +1 );
-
-  gtk_combo_box_set_active (GTK_COMBO_BOX(combobox),
-			    init_index);
-
-  g_signal_connect(G_OBJECT(combobox),
-		   "changed",
-		   G_CALLBACK(gc_board_config_combo_drag_changed),
-		   "drag_mode");
-
-  return GTK_COMBO_BOX(combobox);
-
-}
-
-static gchar *current_locale = NULL;
-void
-gc_locale_change(gchar *locale)
-{
-  if (!locale)
-    return;
-
-  if (strcmp(locale, "NULL") == 0){
-    gc_locale_reset();
-    return;
-  }
-
-  current_locale = g_strdup(gc_locale_get());
-
-  gc_locale_set(locale);
-}
-
-void
-gc_locale_reset()
-{
-  if (current_locale == NULL)
-    return;
-
-  gc_locale_change(current_locale);
-
-  g_free(current_locale);
-  current_locale = NULL;
-}
-
-
-/** \brief Search the given file for each locale and returns the locale list
- *
- * \param file: the file to search. In order to work, you need to provide a
- *              filename that includes a $LOCALE in it like:
- *              voices/$LOCALE/colors/blue.ogg
- *
- * \return a list of locale
- */
-GList*
-gc_locale_gets_asset_list(const gchar *filename)
-{
-  GList *locales, *list, *locales_asset = NULL;
-  gchar *abs_filename;
-
-  locales = gc_locale_gets_list();
-
-  for (list = locales; list != NULL; list = list->next)
-    {
-      gchar **tmp;
-
-      /* Check there is a $LOCALE to replace */
-      if((tmp = g_strsplit(filename, "$LOCALE", -1)))
-	{
-	  gchar locale[6];
-	  gchar *filename2;
-
-	  /* try with the locale */
-	  g_strlcpy(locale, list->data, sizeof(locale));
-	  filename2 = g_strjoinv(locale, tmp);
-	  g_warning("trying locale file '%s'\n", filename2);
-	  abs_filename = gc_file_find_absolute(filename2);
-	  g_free(filename2);
-
-	  g_strfreev(tmp);
-	}
-      else
-	{
-	  abs_filename = gc_file_find_absolute(filename);
-	}
-
-      if(abs_filename)
-	/* It would be cleaner to provide the real locale name but then we need a way
-	 * to get back the locale code from it's name and from the boards
-	 *
-	 * locales_asset = g_list_append(locales_asset, gc_locale_get_name(list->data));
-	 *
-	 */
-	locales_asset = g_list_append(locales_asset, list->data);
-
-    }
-
-
-  return locales_asset;
-}
-
-/* key = "locale_sound" */
-GtkComboBox *gc_board_config_combo_locales_asset(const gchar *label,
-					  gchar *init,
-					  const gchar *file)
-{
-
-  GtkWidget *combobox;
-  GtkWidget *hbox = gtk_hbox_new (FALSE, 8);
-  GList *list, *strings;
-  GtkWidget *label_combo;
-  gint init_index = 0;
-
-  strings = gc_locale_gets_asset_list(file);
-
-  strings = g_list_prepend( strings, _("Default"));
-
-  if (init)
-    {
-      init_index =  g_list_position(strings,
-				    g_list_find_custom(strings,
-						       (gconstpointer)init,
-						       (GCompareFunc) my_strcmp));
-    }
-
-  if (init_index < 0)
-    init_index=0;
-
-  gtk_widget_show(hbox);
-
-  gtk_box_pack_start (GTK_BOX(main_conf_box),
-		      hbox,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  /* Label */
-  label_combo = gtk_label_new ((gchar *)NULL);
-  gtk_widget_show(label_combo);
-  gtk_box_pack_start (GTK_BOX(hbox),
-		      label_combo,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  gtk_label_set_justify (GTK_LABEL(label_combo),
-			 GTK_JUSTIFY_RIGHT);
-
-  gtk_label_set_markup (GTK_LABEL(label_combo),
-                        label);
-
-  combobox = gtk_combo_box_new_text();
-
-  gtk_widget_show(combobox);
-
-  gtk_box_pack_start (GTK_BOX(hbox),
-		      combobox,
-		      FALSE,
-		      FALSE,
-		      0);
-
-
-  for (list = strings; list != NULL; list = list->next)
-    gtk_combo_box_append_text(GTK_COMBO_BOX(combobox),
-			      list->data);
-
-  if (g_list_length(strings) > COMBOBOX_COL_MAX)
-    gtk_combo_box_set_wrap_width(GTK_COMBO_BOX(combobox),
-				 g_list_length(strings) / COMBOBOX_COL_MAX +1 );
-
-  gtk_combo_box_set_active (GTK_COMBO_BOX(combobox),
-			    init_index);
-
-  g_signal_connect(G_OBJECT(combobox),
-		   "changed",
-		   G_CALLBACK(gc_board_config_combo_locales_changed),
-		   "locale_sound");
-
-  return GTK_COMBO_BOX(combobox);
-
-}
-
-/****************************************/
-/* TextView                             */
-
-typedef struct {
-  gchar *key;
-  GcomprisTextCallback callback;
-  GtkLabel *feedback;
-  GtkTextBuffer *TextBuffer;
-} user_param_type;
-
-static void *
-_textview_destroy (GtkButton *button,
-		   gpointer user_data)
-{
-  g_free(((user_param_type *)user_data)->key);
-  g_free(user_data);
-
-  return NULL;
-}
-
-
-static void *
-_textbuffer_changed (GtkTextBuffer *buffer,
-		     gpointer user_data)
-{
-  gtk_widget_set_sensitive        (GTK_WIDGET(user_data),
-				   TRUE);
-
-  return NULL;
-}
-
-static void *
-_textview_yes (GtkButton *button,
-	       gpointer user_data)
-{
-
-  user_param_type *params= (user_param_type *) user_data;
-
-  gchar *key = params->key;
-  GcomprisTextCallback validate = params->callback;
-  GtkLabel *label = params->feedback;
-  GtkTextBuffer *text_buffer = params->TextBuffer;
-
-  GtkTextIter start_iter;
-  GtkTextIter end_iter;
-
-  gtk_text_buffer_get_start_iter  (text_buffer,
-                                   &start_iter);
-
-  gtk_text_buffer_get_end_iter  (text_buffer,
-				 &end_iter);
-
-  /* has this to be freed ? */
-  gchar *text = gtk_text_buffer_get_slice (text_buffer,
-					   &start_iter,
-					   &end_iter,
-					   TRUE);
-
-
-
-  gchar *in_memoriam_text = g_strdup (text);
-  gchar *in_memoriam_key = g_strdup (key);
-
-  if (validate( key, text, label)){
-    g_hash_table_replace ( hash_conf, (gpointer) in_memoriam_key, (gpointer) in_memoriam_text);
-    gtk_widget_set_sensitive        (GTK_WIDGET(button),
-				     FALSE);
-  }
-  else {
-    g_free (in_memoriam_text);
-    g_free (in_memoriam_key);
-  }
-  g_free(text);
-
-  return NULL;
-}
-
-GtkTextView *
-gc_board_config_textview(const gchar *label,
-		  gchar *key,
-		  const gchar*description,
-		  gchar *init_text,
-		  GcomprisTextCallback validate)
-{
-  GtkWidget*frame =  gtk_frame_new ("GCompris text tool");
-  gtk_widget_show(frame);
-
-  gtk_box_pack_start (GTK_BOX(main_conf_box),
-		      frame,
-		      FALSE,
-		      FALSE,
-		      8);
-
-
-
-  /* Main vbox for all our widegt */
-  GtkWidget *textVbox = gtk_vbox_new ( FALSE, 8);
-  gtk_widget_show(textVbox);
-
-  gtk_container_add(GTK_CONTAINER(frame),
-		    textVbox);
-  /* Title */
-  GtkWidget *title = gtk_label_new ((gchar *)NULL);
-  gtk_widget_show(title);
-
-  gtk_box_pack_start (GTK_BOX(textVbox),
-		      title,
-		      FALSE,
-		      FALSE,
-		      8);
-
-  gtk_label_set_justify (GTK_LABEL(title),
-			 GTK_JUSTIFY_CENTER);
-
-  gchar *title_text = g_strdup(label);
-  gtk_label_set_markup (GTK_LABEL(title),
-                        (const gchar *)title_text);
-
-  GtkWidget *separator = gtk_hseparator_new ();
-
-  gtk_widget_show(separator);
-
-  gtk_box_pack_start (GTK_BOX(textVbox),
-		      separator,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  /* Description */
-  GtkWidget *desc = gtk_label_new ((gchar *)NULL);
-  gtk_widget_show(desc);
-
-  gtk_box_pack_start (GTK_BOX(textVbox),
-		      desc,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  //gtk_label_set_justify (GTK_LABEL(title),
-  //		 GTK_JUSTIFY_CENTER);
-
-  gtk_label_set_line_wrap(GTK_LABEL(desc), TRUE);
-
-  gchar *desc_text = g_strdup(description);
-  gtk_label_set_markup (GTK_LABEL(desc),
-                        (const gchar *)desc_text);
-
-  GtkWidget *scroll = gtk_scrolled_window_new ( NULL, NULL);
-
-
-  gtk_scrolled_window_set_policy  (GTK_SCROLLED_WINDOW(scroll),
-				   GTK_POLICY_AUTOMATIC,
-				   GTK_POLICY_AUTOMATIC);
-
-  gtk_widget_set_size_request     (scroll,
-				   -1,
-				   100);
-
-  gtk_widget_show( scroll);
-
-  gtk_box_pack_start (GTK_BOX(textVbox),
-		      scroll,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  /* TextView */
-  GtkWidget *textView = gtk_text_view_new ();
-  gtk_widget_show(textView);
-
-  gtk_container_add (GTK_CONTAINER(scroll),
-		     textView);
-
-  gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (textView), GTK_WRAP_WORD_CHAR);
-
-
-  GtkTextBuffer *buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (textView));
-
-  gtk_text_buffer_set_text (buffer, g_strdup(init_text), -1);
-
-
-  /* hbox for feedback and validation button */
-  GtkWidget *validationHbox = gtk_vbox_new ( FALSE, 8);
-  gtk_widget_show(validationHbox);
-
-  gtk_box_pack_start (GTK_BOX(textVbox),
-		      validationHbox,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  /* Feedback */
-  GtkWidget *feedback = gtk_label_new ((gchar *)NULL);
-  gtk_widget_show(feedback);
-
-  gtk_box_pack_start (GTK_BOX(validationHbox),
-		      feedback,
-		      FALSE,
-		      FALSE,
-		      0);
-
-  gtk_label_set_justify (GTK_LABEL(title),
-			 GTK_JUSTIFY_FILL);
-
-  gtk_label_set_line_wrap(GTK_LABEL(feedback), TRUE);
-
-  user_param_type *user_param = g_malloc0(sizeof(user_param_type));
-
-  user_param->key = g_strdup(key);
-  user_param->callback = validate;
-  user_param->feedback = GTK_LABEL(feedback);
-  user_param->TextBuffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW(textView));
-
-
-  /* vbox for feedback and validation button */
-  GtkWidget *validationVbox = gtk_hbox_new ( FALSE, 8);
-  gtk_widget_show(validationVbox);
-
-  gtk_box_pack_end (GTK_BOX(validationHbox),
-		    validationVbox,
-		    FALSE,
-		    FALSE,
-		    0);
-
-
-  /* Validate button */
-  GtkWidget *button =  gtk_button_new_from_stock (GTK_STOCK_YES);
-  gtk_widget_show(button);
-  gtk_box_pack_end (GTK_BOX(validationVbox),
-		    button,
-		    FALSE,
-		    FALSE,
-		    0);
-
-  g_signal_connect(G_OBJECT(button),
-		   "clicked",
-		   G_CALLBACK(_textview_yes),
-		   (gpointer) user_param);
-
-
-  g_signal_connect(G_OBJECT(button),
-		   "destroy",
-		   G_CALLBACK(_textview_destroy),
-		   (gpointer) user_param);
-
-  g_signal_connect(G_OBJECT(user_param->TextBuffer),
-		   "changed",
-		   G_CALLBACK(_textbuffer_changed),
-		   (gpointer) button);
-
-  gtk_widget_set_sensitive (button,
-			    FALSE);
-
-  return GTK_TEXT_VIEW(textView);
-}

Modified: trunk/src/gcompris/board_config.h
==============================================================================
--- trunk/src/gcompris/board_config.h	(original)
+++ trunk/src/gcompris/board_config.h	Fri Jan 30 21:15:28 2009
@@ -20,6 +20,18 @@
 
 #ifndef BOARD_CONFIG_H
 #define BOARD_CONFIG_H
+#include "gcompris.h"
+
+/* the callback type */
+typedef void (*GcomprisConfCallback) (GHashTable *table);
+
+typedef struct 
+{
+	GtkWindow *conf_window;
+	GtkVBox *main_conf_box;
+	GHashTable *hash_conf;
+	GcomprisConfCallback Confcallback;
+} GcomprisBoardConf;
 
 void	 gc_board_config_start(GcomprisBoard *aBoard,
 			       GcomprisProfile *aProfile);
@@ -31,14 +43,11 @@
 /* You can add your own widget if you need */
 /* the callback is called wish the hash key, value when the apply button is clicked */
 
-/* the callback type */
-typedef void (*GcomprisConfCallback) (GHashTable *table);
-
-GtkVBox *gc_board_config_window_display(gchar *label, GcomprisConfCallback callback);
+GcomprisBoardConf *gc_board_config_window_display(gchar *label, GcomprisConfCallback callback);
 
-GtkCheckButton *gc_board_config_boolean_box(const gchar *label, gchar *key, gboolean initial_value);
+GtkCheckButton *gc_board_config_boolean_box(GcomprisBoardConf *config, const gchar *label, gchar *key, gboolean initial_value);
 
-GtkComboBox *gc_board_config_combo_box(const gchar *label, GList *strings, gchar *key, gchar *init);
+GtkComboBox *gc_board_config_combo_box(GcomprisBoardConf *config, const gchar *label, GList *strings, gchar *key, gchar *init);
 
 /* Params: */
 /*   - Label */
@@ -47,25 +56,25 @@
 /* Returns */
 /*   - g_hash_table (gchar *values, GtkWidget *pointer) */
 
-GHashTable *gc_board_config_radio_buttons(const gchar *label,
+GHashTable *gc_board_config_radio_buttons(GcomprisBoardConf *config, const gchar *label,
 				   gchar *key,
 				   GHashTable *buttons_label,
 				   gchar *init);
 
-GtkSpinButton *gc_board_config_spin_int(const gchar *label,
+GtkSpinButton *gc_board_config_spin_int(GcomprisBoardConf *config, const gchar *label,
 				 gchar *key,
 				 gint min,
 				 gint max,
 				 gint step,
 				 gint init);
 
-GtkHSeparator *gc_board_conf_separator();
+GtkHSeparator *gc_board_conf_separator(GcomprisBoardConf *config);
 
 GList *gc_locale_gets_list();
 
-GtkComboBox *gc_board_config_combo_locales( gchar *init);
+GtkComboBox *gc_board_config_combo_locales(GcomprisBoardConf *config, gchar *init);
 
-GtkComboBox *gc_board_config_combo_drag( gint init);
+GtkComboBox *gc_board_config_combo_drag( GcomprisBoardConf *config, gint init);
 
 void gc_locale_change(gchar *locale);
 
@@ -73,10 +82,8 @@
 
 GList *gc_locale_gets_asset_list(const gchar *file);
 
-GtkComboBox *gc_board_config_combo_locales_asset(const gchar *label, gchar *init,
-					  const gchar *file);
-#endif
-
+GtkComboBox *gc_board_config_combo_locales_asset(GcomprisBoardConf *config,
+	const gchar *label, gchar *init, const gchar *file);
 /***********************************/
 /* TextView  facility              */
 /* Callback is text vaidating function */
@@ -85,8 +92,13 @@
 
 typedef gboolean (*GcomprisTextCallback) (gchar *key, gchar *text, GtkLabel *label);
 
-GtkTextView *gc_board_config_textview(const gchar *label,
+GtkTextView *gc_board_config_textview(GcomprisBoardConf *config, const gchar *label,
 			       gchar *key,
 			       const gchar*description,
 			       gchar *init_text,
 			       GcomprisTextCallback validate);
+
+GtkWidget *gc_board_config_wordlist(GcomprisBoardConf *config, const gchar *files);
+
+#endif
+

Modified: trunk/src/gcompris/wordlist.c
==============================================================================
--- trunk/src/gcompris/wordlist.c	(original)
+++ trunk/src/gcompris/wordlist.c	Fri Jan 30 21:15:28 2009
@@ -22,6 +22,8 @@
 
 #include "gcompris.h"
 
+void gc_wordlist_dump(GcomprisWordlist *wl);
+
 /** Load a wordlist formatted xml file. It contains a list of words.
  *
  * The xml file format must be like this:
@@ -62,13 +64,11 @@
   xmlNodePtr wlNode;
   xmlNodePtr node;
   xmlNodePtr wordsNode;
-  int i;
-  guint number_of_level = 0;
+  guint level;
 
   GcomprisWordlist     *wordlist;
   xmlChar              *text;
 
-  gchar               **wordsArray;
   GSList                *words = NULL;
 
   if (!format)
@@ -84,19 +84,21 @@
   if(!xmlfilename)
     {
       g_warning("Couldn't find file %s !", filename);
-      g_free(xmlfilename);
+      g_free(filename);
       return NULL;
     }
 
   g_warning("Wordlist found %s\n", xmlfilename);
 
   xmldoc = xmlParseFile(xmlfilename);
-  g_free(xmlfilename);
 
   if(!xmldoc){
     g_warning("Couldn't parse file %s !", xmlfilename);
+    g_free(filename);
+    g_free(xmlfilename);
     return NULL;
   }
+  g_free(xmlfilename);
 
   if(/* if there is no root element */
      !xmldoc->children ||
@@ -106,6 +108,7 @@
      g_strcasecmp((gchar *)xmldoc->children->name,(gchar *)"GCompris")!=0) {
     g_warning("No Gcompris node");
     xmlFreeDoc(xmldoc);
+    g_free(filename);
     return NULL;
   }
 
@@ -118,6 +121,7 @@
      g_strcasecmp((gchar *)wlNode->name,"Wordlist")!=0) {
     g_warning("No wordlist node %s", (wlNode == NULL) ? (gchar *)wlNode->name : "NULL node");
     xmlFreeDoc(xmldoc);
+    g_free(filename);
     return NULL;
   }
 
@@ -174,48 +178,60 @@
       break;
     }
 
-    text = xmlNodeGetContent ( wordsNode);
-
-    wordsArray = g_strsplit_set ((const gchar *) text,
-				 (const gchar *) " \n\t",
-				 0);
-
-    g_warning("Wordlist read : %s", text);
-
-    xmlFree (text);
-
-    i=0;
-    while (wordsArray[i] != NULL) {
-      if (wordsArray[i][0]!='\0')
-	words = g_slist_append( words, g_strdup( wordsArray[i]));
-      i++;
+    level=-1;
+    text = xmlGetProp ( node,
+		    (const xmlChar *) "value");
+    if (text) {
+	    level = atoi((gchar *) text);
+	    xmlFree (text);
     }
+    text = xmlNodeGetContent ( wordsNode);
+    gc_wordlist_set_wordlist(wordlist, level, (const gchar*)text);
+    xmlFree(text);
 
-    g_strfreev ( wordsArray);
-
-
-    /* initialise LevelWordlist struct */
-    LevelWordlist *level_words = g_malloc0(sizeof(LevelWordlist));
+    node = node->next;
+  }
+  xmlFreeDoc(xmldoc);
+  return wordlist;
+}
 
-    number_of_level++;
+void gc_wordlist_dump(GcomprisWordlist *wl)
+{
+	GSList *level, *words;
 
-    text = xmlGetProp ( node,
-			(const xmlChar *) "value");
-    if (text) {
-      level_words->level = atoi((gchar *) text);
-      xmlFree (text);
-    }
+	printf("Wordlist dump\n");
+	printf("filename:%s\n",wl->filename);
+	printf("number of level:%d\n",wl->number_of_level);
 
-    level_words->words = words;
+	for(level = wl->levels_words; level; level = level->next)
+	{
+		printf("Level %d\n", ((LevelWordlist*)level->data)->level);
+		printf("Words :");
+		for(words=((LevelWordlist*)level->data)->words; words; words=words->next)
+		{
+			printf(" %s", (char*)words->data);
+		}
+		puts("");
+	}
+}
 
-    wordlist->levels_words = g_slist_append( wordlist->levels_words, level_words);
+LevelWordlist*gc_wordlist_get_levelwordlist(GcomprisWordlist *wordlist, guint level)
+{
+	GSList *lev_list, *list;
+	LevelWordlist *lw;
 
-    node = node->next;
-  }
+	if(!wordlist)
+		return NULL;
 
-  wordlist->number_of_level = number_of_level;
+	lev_list = wordlist->levels_words;
 
-  return wordlist;
+	for (list = lev_list; list != NULL; list = list->next)
+	{
+		lw = list->data;
+		if(lw->level == level)
+			return lw;
+	}
+	return NULL;
 }
 
 /** get a random word from the wordlist in the given level
@@ -228,36 +244,37 @@
 gchar *
 gc_wordlist_random_word_get(GcomprisWordlist *wordlist, guint level)
 {
-  GSList *lev_list, *list;
+	LevelWordlist *lw;
+	gchar *word;
 
-  if(!wordlist)
-    return NULL;
-
-  lev_list = wordlist->levels_words;
-
-  /* cap to the number_of_level */
-  if(level > wordlist->number_of_level)
-    level = wordlist->number_of_level;
+	if(level>wordlist->number_of_level)
+		level = wordlist->number_of_level;
 
-  for (list = lev_list; list != NULL; list = list->next)
-    {
-      LevelWordlist *lw = list->data;
+	lw = gc_wordlist_get_levelwordlist(wordlist, level);
+	if(!lw)
+		return NULL;
+
+	g_warning("Level : %d", lw->level);
+
+	/* We got the proper level, find a random word */
+	word = (gchar *)g_slist_nth_data(lw->words,
+			RAND(0, g_slist_length(lw->words))
+			);
+	g_warning("returning random word '%s'", word);
+	return(g_strdup(word));
+}
 
-      if(lw->level == level)
-	{
-	  gchar *word;
-	  g_warning("Level : %d", lw->level);
+static void gc_wordlist_free_level(LevelWordlist *lw)
+{
+	GSList *words;
 
-	  /* We got the proper level, find a random word */
-	  word = (gchar *)g_slist_nth_data(lw->words,
-					  RAND(0, g_slist_length(lw->words)-1)
-					  );
-	  g_warning("returning random word '%s'", word);
-	  return(g_strdup(word));
-	}
-    }
+	if(!lw)
+		return;
 
-  return NULL;
+	for (words = lw->words; words !=NULL; words = words->next)
+		g_free(words->data);
+	g_slist_free(lw->words);
+	g_free(lw);
 }
 
 /** call it to free a GcomprisWordlist as returned by gc_wordlist_get_from_file
@@ -268,7 +285,7 @@
 void
 gc_wordlist_free(GcomprisWordlist *wordlist)
 {
-  GSList *list, *words;
+  GSList *list;
 
   if(!wordlist)
     return;
@@ -280,11 +297,103 @@
 
   for ( list = wordlist->levels_words; list !=NULL; list=list->next){
     LevelWordlist *lw = (LevelWordlist *)list->data;
-    for ( words = lw->words; words !=NULL; words = words->next)
-      g_free(words->data);
-    g_slist_free(lw->words);
-    g_free(lw);
+    gc_wordlist_free_level(lw);
   }
   g_slist_free ( wordlist->levels_words);
   g_free (wordlist);
 }
+
+void gc_wordlist_set_wordlist(GcomprisWordlist *wordlist, guint level, const gchar*text)
+{
+	LevelWordlist *lw;
+	GSList *words=NULL;
+	gchar **wordsArray;
+	int i;
+	
+	g_warning("wordlist : add level=%d text=%s\n", level, text);
+	/* remove level */
+	if((lw = gc_wordlist_get_levelwordlist(wordlist, level)))
+	{
+		g_warning("remove level %d", lw->level);
+		wordlist->levels_words = g_slist_remove(wordlist->levels_words, lw);
+		gc_wordlist_free_level(lw);
+		wordlist->number_of_level--;
+	}
+
+	/* add new level */
+	wordsArray = g_strsplit_set (text, " \n\t", 0);
+
+	i=0;
+	for(i=0;wordsArray[i] != NULL; i++)
+		if (wordsArray[i][0]!='\0' &&
+			!g_slist_find_custom(words, wordsArray[i], (GCompareFunc)strcmp))
+				words = g_slist_append( words, g_strdup(wordsArray[i]));
+
+	g_strfreev ( wordsArray);
+
+	if(words==NULL)
+		return;
+
+	/* initialise LevelWordlist struct */
+	LevelWordlist *level_words = g_malloc0(sizeof(LevelWordlist));
+
+	level_words->words = words;
+	level_words->level = level;
+
+	wordlist->number_of_level++;
+	wordlist->levels_words = g_slist_append( wordlist->levels_words, level_words);
+}
+
+void gc_wordlist_save(GcomprisWordlist *wordlist)
+{
+	GSList *listlevel,*listword;
+	LevelWordlist *level;
+	gchar *filename, *tmp;
+	xmlNodePtr wlnode, levelnode, node;
+	xmlDocPtr doc;
+
+	if(!wordlist)
+		return;
+	doc = xmlNewDoc(BAD_CAST XML_DEFAULT_VERSION);
+	if(!doc)
+		return;
+
+	node = xmlNewNode(NULL, BAD_CAST "GCompris");
+	xmlDocSetRootElement(doc,node);
+	wlnode = xmlNewChild(node, NULL, BAD_CAST "Wordlist", NULL);
+
+	if(wordlist->name)
+		xmlSetProp(wlnode, BAD_CAST "name", BAD_CAST wordlist->name);
+	if(wordlist->description)
+		xmlSetProp(wlnode, BAD_CAST "description", BAD_CAST wordlist->description);
+	if(wordlist->locale)
+		xmlSetProp(wlnode, BAD_CAST "locale", BAD_CAST wordlist->locale);
+	for(listlevel = wordlist->levels_words; listlevel; listlevel = listlevel->next)
+	{
+		level = (LevelWordlist*)listlevel->data;
+		levelnode = xmlNewChild(wlnode, NULL, BAD_CAST "level", NULL);
+		if((tmp = g_strdup_printf("%d", level->level)))
+		{
+			xmlSetProp(levelnode, BAD_CAST "value", BAD_CAST tmp);
+			g_free(tmp);
+		}
+		for(listword = level->words; listword; listword=listword->next)
+		{
+			xmlNodeAddContent(levelnode, BAD_CAST listword->data);
+			xmlNodeAddContent(levelnode, BAD_CAST " ");
+		}
+	}
+
+	filename = gc_file_find_absolute(wordlist->filename);
+	if(filename)
+	{
+		if(xmlSaveFormatFileEnc(filename, doc, NULL, 1)<0)
+		{
+			g_warning("Fail to write %s", filename);
+			g_free(filename);
+		}
+		g_free(filename);
+	}
+	xmlFreeDoc(doc);
+}
+

Modified: trunk/src/gcompris/wordlist.h
==============================================================================
--- trunk/src/gcompris/wordlist.h	(original)
+++ trunk/src/gcompris/wordlist.h	Fri Jan 30 21:15:28 2009
@@ -35,7 +35,9 @@
 } GcomprisWordlist;
 
 GcomprisWordlist *gc_wordlist_get_from_file(const gchar *fileformat, ...);
+LevelWordlist	 *gc_wordlist_get_levelwordlist(GcomprisWordlist *wordlist, guint level);
 void              gc_wordlist_free(GcomprisWordlist *wordlist);
 gchar		 *gc_wordlist_random_word_get(GcomprisWordlist *wordlist, guint level);
-
+void		  gc_wordlist_set_wordlist(GcomprisWordlist *wordlist, guint level, const gchar*words);
+void 		  gc_wordlist_save(GcomprisWordlist *wordlist);
 #endif



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]