summaryrefslogtreecommitdiff
path: root/gladeui/glade-displayable-values.h
blob: 1b32f3fc0481f52cdd217c4b7d0619a3ae4ae35e (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * glade-displayable-values.h
 *
 * Copyright (C) 2008 Tristan Van Berkom.
 *
 * Authors:
 *   Tristan Van Berkom <tvb@gnome.org>
 *
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

#ifndef __GLADE_DISAPLAYABLE_VALUES_H__
#define __GLADE_DISAPLAYABLE_VALUES_H__

#include <glib.h>
#include <glib-object.h>

G_BEGIN_DECLS

void        glade_register_displayable_value      (GType          type, 
                                                   const gchar   *value, 
                                                   const gchar   *domain,
                                                   const gchar   *string);

void        glade_register_translated_value       (GType          type, 
                                                   const gchar   *value, 
                                                   const gchar   *string);

gboolean    glade_type_has_displayable_values     (GType          type);

const 
gchar      *glade_get_displayable_value           (GType          type, 
                                                   const gchar   *value);

gboolean    glade_displayable_value_is_disabled   (GType          type, 
                                                   const gchar   *value);

void        glade_displayable_value_set_disabled  (GType type,
                                                   const gchar *value,
                                                   gboolean disabled);

const 
gchar      *glade_get_value_from_displayable      (GType          type, 
                                                   const gchar   *displayabe);

G_END_DECLS

#endif /* __GLADE_DISAPLAYABLE_VALUES_H__ */