summaryrefslogtreecommitdiff
path: root/gladeui/glade-displayable-values.h
blob: 726c6558a42bb992691ffda5eb7cdac93d0b8fa6 (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
#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);

G_CONST_RETURN 
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);

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

G_END_DECLS

#endif /* __GLADE_DISAPLAYABLE_VALUES_H__ */