1;; -*- scheme -*-
2; object definitions ...
3
4(define-interface Activatable
5  (in-module "Gtk")
6  (c-name "GtkActivatable")
7  (gtype-id "GTK_TYPE_ACTIVATABLE")
8)
9
10(define-interface Orientable
11  (in-module "Gtk")
12  (c-name "GtkOrientable")
13  (gtype-id "GTK_TYPE_ORIENTABLE")
14)
15
16
17
18;; Enumerations and flags ...
19
20(define-enum EntryIconPosition
21  (in-module "Gtk")
22  (c-name "GtkEntryIconPosition")
23  (gtype-id "GTK_TYPE_ENTRY_ICON_POSITION")
24  (values
25    '("primary" "GTK_ENTRY_ICON_PRIMARY")
26    '("secondary" "GTK_ENTRY_ICON_SECONDARY")
27  )
28)
29