chiark / gitweb /
Added :param slot allocation to gobject-class
[clg] / glib / callback.c
CommitLineData
c8c48a4c 1/* Common Lisp bindings for GTK+ v2.0
2 * Copyright (C) 1999-2000 Espen S. Johnsen <espejohn@online.no>
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 Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19/* $Id: callback.c,v 1.1 2000-11-09 20:29:19 espen Exp $ */
20
21#include <gobject/gobject.h>
22
23#ifdef CMUCL
24#include "lisp.h"
25#include "alloc.h"
26#include "arch.h"
27
28lispobj callback_trampoline;
29lispobj destroy_user_data;
30#endif
31
32void destroy_notify (gpointer data);
33
34
35void lisp_callback_marshal (GClosure *closure,
36 GValue *return_value,
37 guint n_params,
38 const GValue *param_values,
39 gpointer invocation_hint,
40 gpointer marshal_data)
41{
42#ifdef CMUCL
43 funcall3 (callback_trampoline, alloc_number ((unsigned int)closure->data),
44 alloc_cons (alloc_number (n_params), alloc_sap (param_values)),
45 alloc_sap (return_value));
46#elif defined(CLISP)
47 callback_trampoline ((unsigned long)closure->data,
48 n_params, (unsigned int)param_values,
49 (unsigned int)return_value);
50#endif
51}
52
53void closure_destroy_notify (gpointer callback_id, GClosure *closure)
54{
55 destroy_notify (callback_id);
56}
57
58void destroy_notify (gpointer data)
59{
60#ifdef CMUCL
61 funcall1 (destroy_user_data, alloc_number ((unsigned long)data));
62#elif defined(CLISP)
63 destroy_user_data ((unsigned long)data);
64#endif
65}
66
67GClosure*
68g_lisp_callback_closure (guint callback_id)
69{
70 GClosure *closure;
71
72 closure = g_closure_new_simple (sizeof (GClosure), (gpointer)callback_id);
73 g_closure_set_marshal (closure, lisp_callback_marshal);
74 g_closure_add_fnotify (closure, (gpointer)callback_id, closure_destroy_notify);
75
76 return closure;
77}
78
79#ifndef CMUCL
80void*
81destroy_notify_address ()
82{
83 return (void*)destroy_notify;
84}
85#endif