Add support for G_TYPE_INT64 and storing it in GValue (Patch from Mathieu
[platform/upstream/glib.git] / gobject / gvalue.h
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2  * Copyright (C) 1997-1999, 2000-2001 Tim Janik and Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General
15  * Public License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17  * Boston, MA 02111-1307, USA.
18  *
19  * gvalue.h: generic GValue functions
20  */
21 #ifndef __G_VALUE_H__
22 #define __G_VALUE_H__
23
24
25 #include        <gobject/gtype.h>
26
27 G_BEGIN_DECLS
28
29 /* --- type macros --- */
30 #define G_TYPE_IS_VALUE(type)           (g_type_value_table_peek (type) != NULL)
31 #define G_IS_VALUE(value)               (G_TYPE_CHECK_VALUE (value))
32 #define G_VALUE_TYPE(value)             (((GValue*) (value))->g_type)
33 #define G_VALUE_TYPE_NAME(value)        (g_type_name (G_VALUE_TYPE (value)))
34 #define G_VALUE_HOLDS(value,type)       (G_TYPE_CHECK_VALUE_TYPE ((value), (type)))
35
36
37 /* --- typedefs & structures --- */
38 typedef void (*GValueExchange)  (GValue       *value1,
39                                  GValue       *value2);
40 typedef void (*GValueTransform) (const GValue *src_value,
41                                  GValue       *dest_value);
42 struct _GValue
43 {
44   /*< private >*/
45   GType         g_type;
46
47   /* public for GTypeValueTable methods */
48   union {
49     gint        v_int;
50     guint       v_uint;
51     glong       v_long;
52     gulong      v_ulong;
53 #ifdef G_HAVE_GINT64
54     gint64      v_int64;
55     guint64     v_uint64;
56 #endif /* G_HAVE_GINT64 */
57     gfloat      v_float;
58     gdouble     v_double;
59     gpointer    v_pointer;
60   } data[4];
61 };
62
63
64 /* --- prototypes --- */
65 GValue*         g_value_init            (GValue       *value,
66                                          GType         g_type);
67 void            g_value_copy            (const GValue *src_value,
68                                          GValue       *dest_value);
69 GValue*         g_value_reset           (GValue       *value);
70 void            g_value_unset           (GValue       *value);
71 void            g_value_set_instance    (GValue       *value,
72                                          gpointer      instance);
73
74
75 /* --- private --- */
76 gboolean        g_value_fits_pointer    (const GValue *value);
77 gpointer        g_value_peek_pointer    (const GValue *value);
78
79
80 /* --- implementation details --- */
81 gboolean g_value_type_compatible        (GType           src_type,
82                                          GType           dest_type);
83 gboolean g_value_type_transformable     (GType           src_type,
84                                          GType           dest_type);
85 gboolean g_value_transform              (const GValue   *src_value,
86                                          GValue         *dest_value);
87 void    g_value_register_transform_func (GType           src_type,
88                                          GType           dest_type,
89                                          GValueTransform transform_func);
90 #define G_VALUE_NOCOPY_CONTENTS         (1 << 27)
91
92
93 G_END_DECLS
94
95 #endif /* __G_VALUE_H__ */