~ubuntu-branches/ubuntu/trusty/hud/trusty-updates

« back to all changes in this revision

Viewing changes to src/string-list.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-01-20 19:43:59 UTC
  • mfrom: (1.1.26)
  • Revision ID: package-import@ubuntu.com-20140120194359-jxxxqtd4ql9elvpf
Tags: 13.10.1+14.04.20140120-0ubuntu1
* New rebuild forced
* Automatic snapshot from revision 362

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright © 2012 Canonical Ltd.
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify it
5
 
 * under the terms of the GNU General Public License version 3, as
6
 
 * published by the Free Software Foundation.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful, but
9
 
 * WITHOUT ANY WARRANTY; without even the implied warranties of
10
 
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
11
 
 * PURPOSE.  See the GNU General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU General Public License along
14
 
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 *
16
 
 * Author: Ryan Lortie <desrt@desrt.ca>
17
 
 */
18
 
 
19
 
#ifndef __HUD_STRING_LIST_H__
20
 
#define __HUD_STRING_LIST_H__
21
 
 
22
 
#include <glib.h>
23
 
 
24
 
typedef struct _HudStringList                               HudStringList;
25
 
typedef struct _HudItemPronunciationData                    HudItemPronunciationData;
26
 
 
27
 
void                    hud_string_list_unref                           (HudStringList *list);
28
 
HudStringList *         hud_string_list_ref                             (HudStringList *list);
29
 
 
30
 
HudStringList *         hud_string_list_cons                            (const gchar   *head,
31
 
                                                                         HudStringList *tail);
32
 
 
33
 
const gchar *           hud_string_list_get_head                        (HudStringList *list);
34
 
HudStringList *         hud_string_list_get_tail                        (HudStringList *list);
35
 
 
36
 
HudStringList *         hud_string_list_cons_label                      (const gchar   *label,
37
 
                                                                         HudStringList *tail);
38
 
HudStringList *         hud_string_list_add_item                        (const gchar *item,
39
 
                                                                         HudStringList *tail);
40
 
 
41
 
gchar *                 hud_string_list_pretty_print                    (HudStringList *list,
42
 
                                                                         const gchar * spacer);
43
 
void                    hud_string_list_insert_pronounciation           (HudStringList * list,
44
 
                                                                         HudItemPronunciationData * user_data);
45
 
 
46
 
#endif /* __HUD_STRING_LIST_H__ */