~vcs-imports/gnome-mag/master

« back to all changes in this revision

Viewing changes to colorblind/keybinder/_keybinder.defs

  • Committer: Carlos Eduardo Rodrigues Diógenes
  • Date: 2007-06-03 23:52:07 UTC
  • Revision ID: git-v1:42a8898cb38357218626e4c81555423da8ab37cd
Tags: GNOME_MAG_0_14_5
commit the changes of the colorblind applet

svn path=/trunk/; revision=515

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;; -*- scheme -*-
 
2
; object definitions ...
 
3
;; Enumerations and flags ...
 
4
 
 
5
 
 
6
;; From tomboykeybinder.h
 
7
 
 
8
(define-function tomboy_keybinder_bind
 
9
  (c-name "tomboy_keybinder_bind")
 
10
  (return-type "none")
 
11
  (parameters
 
12
    '("const-char*" "keystring")
 
13
    '("TomboyBindkeyHandler" "handler")
 
14
    '("gpointer" "user_data")
 
15
  )
 
16
)
 
17
 
 
18
(define-function tomboy_keybinder_unbind
 
19
  (c-name "tomboy_keybinder_unbind")
 
20
  (return-type "none")
 
21
  (parameters
 
22
    '("const-char*" "keystring")
 
23
    '("TomboyBindkeyHandler" "handler")
 
24
  )
 
25
)
 
26
 
 
27
(define-function tomboy_keybinder_is_modifier
 
28
  (c-name "tomboy_keybinder_is_modifier")
 
29
  (return-type "gboolean")
 
30
  (parameters
 
31
    '("guint" "keycode")
 
32
  )
 
33
)
 
34
 
 
35
(define-function tomboy_keybinder_get_current_event_time
 
36
  (c-name "tomboy_keybinder_get_current_event_time")
 
37
  (return-type "guint32")
 
38
)
 
39
 
 
40