]> gitweb.factorcode.org Git - factor.git/blob - basis/gobject/ffi/ffi.factor
c9d9c21af80a0174759e54b36169ca2bdd34bae8
[factor.git] / basis / gobject / ffi / ffi.factor
1 ! Copyright (C) 2010 Anton Gorenko.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: alien alien.destructors alien.libraries alien.syntax kernel
4 combinators gobject-introspection literals math system vocabs.loader ;
5 IN: gobject.ffi
6
7 ! these two are needed for the definition of GError and others.
8 ! otherwise we generate GError and some others in this vocab as well.
9 <<
10 "glib.ffi" require
11 >>
12 USE: glib.ffi
13
14 LIBRARY: gobject
15
16 <<
17 "gobject" {
18     { [ os winnt? ] [ "libobject-2.0-0.dll" cdecl add-library ] }
19     { [ os unix? ] [ drop ] }
20 } cond
21 >>
22
23 IMPLEMENT-STRUCTS: GValue GParamSpecVariant ;
24
25 GIR: vocab:gobject/GObject-2.0.gir
26
27 IN: gobject.ffi
28
29 FORGET: GIOCondition
30 FORGET: G_IO_IN
31 FORGET: G_IO_OUT
32 FORGET: G_IO_PRI
33 FORGET: G_IO_ERR
34 FORGET: G_IO_HUP
35 FORGET: G_IO_NVAL
36
37 DESTRUCTOR: g_object_unref
38
39 CONSTANT: G_TYPE_INVALID $[ 0 2 shift ]
40 CONSTANT: G_TYPE_NONE $[ 1 2 shift ]
41 CONSTANT: G_TYPE_INTERFACE $[ 2 2 shift ]
42 CONSTANT: G_TYPE_CHAR $[ 3 2 shift ]
43 CONSTANT: G_TYPE_UCHAR $[ 4 2 shift ]
44 CONSTANT: G_TYPE_BOOLEAN $[ 5 2 shift ]
45 CONSTANT: G_TYPE_INT $[ 6 2 shift ]
46 CONSTANT: G_TYPE_UINT $[ 7 2 shift ]
47 CONSTANT: G_TYPE_LONG $[ 8 2 shift ]
48 CONSTANT: G_TYPE_ULONG $[ 9 2 shift ]
49 CONSTANT: G_TYPE_INT64 $[ 10 2 shift ]
50 CONSTANT: G_TYPE_UINT64 $[ 11 2 shift ]
51 CONSTANT: G_TYPE_ENUM $[ 12 2 shift ]
52 CONSTANT: G_TYPE_FLAGS $[ 13 2 shift ]
53 CONSTANT: G_TYPE_FLOAT $[ 14 2 shift ]
54 CONSTANT: G_TYPE_DOUBLE $[ 15 2 shift ]
55 CONSTANT: G_TYPE_STRING $[ 16 2 shift ]
56 CONSTANT: G_TYPE_POINTER $[ 17 2 shift ]
57 CONSTANT: G_TYPE_BOXED $[ 18 2 shift ]
58 CONSTANT: G_TYPE_PARAM $[ 19 2 shift ]
59 CONSTANT: G_TYPE_OBJECT $[ 20 2 shift ]
60
61 ! Macros
62
63 : g_signal_connect ( instance detailed_signal c_handler data -- result )
64     f 0 g_signal_connect_data ;
65
66 : g_signal_connect_after ( instance detailed_signal c_handler data -- result )
67     f G_CONNECT_AFTER g_signal_connect_data ;
68
69 : g_signal_connect_swapped ( instance detailed_signal c_handler data -- result )
70     f G_CONNECT_SWAPPED g_signal_connect_data ;