Revision 18404,
557 bytes
checked in by ghudson, 22 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r18403,
which included commits to RCS files with non-trunk default branches.
|
Rev | Line | |
---|
[18403] | 1 | ;; -*- scheme -*- |
---|
| 2 | |
---|
| 3 | ;;; GLib defs |
---|
| 4 | |
---|
| 5 | (define-object GObject ()) |
---|
| 6 | |
---|
| 7 | ;; g-object-new, g-object-set, g-object-get, g-object-list etc are |
---|
| 8 | ;; hand implemented in rep-gtk.c |
---|
| 9 | |
---|
| 10 | (define-func g_signal_connect_closure |
---|
| 11 | int |
---|
| 12 | ((GObject object) |
---|
| 13 | (string name) |
---|
| 14 | (gclosure func) |
---|
| 15 | (bool after (= "0"))) |
---|
| 16 | (scm-name "g-signal-connect") |
---|
| 17 | (protection object)) |
---|
| 18 | |
---|
| 19 | (define-func g_signal_handler_disconnect |
---|
| 20 | none |
---|
| 21 | ((GObject object) |
---|
| 22 | (int id)) |
---|
| 23 | (scm-name "g-signal-disconnect")) |
---|
| 24 | |
---|
| 25 | ;; Options |
---|
| 26 | |
---|
| 27 | (options |
---|
| 28 | (includes "#include <glib.h>") |
---|
| 29 | (init-func "sgtk_init_gtk_glib_glue")) |
---|
| 30 | |
---|
| 31 | |
---|
Note: See
TracBrowser
for help on using the repository browser.