Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/gcompris/wordlist.h
blob: a35bb65c89dac1cf107e41ad0d4bd3415dad1d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* gcompris - wordlist.h
 *
 * Copyright (C) 2003 GCompris Developpement Team
 *
 *   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
 *   the Free Software Foundation; either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, see <http://www.gnu.org/licenses/>.
 */

#ifndef WORDLIST_H
#define WORDLIST_H

typedef struct {
  gint level;
  GSList *words;
} LevelWordlist;

typedef struct {
  gchar         *filename;
  gchar         *name;
  gchar         *description;
  gchar         *locale;
  guint		 number_of_level;
  /* LevelWordlist list */
  GSList         *levels_words;
} 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