chiark
/
gitweb
/
~mdw
/
clg
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
96b68e8
)
Made timeout and idle functional
author
espen
<espen>
Sun, 5 Dec 2004 13:54:10 +0000
(13:54 +0000)
committer
espen
<espen>
Sun, 5 Dec 2004 13:54:10 +0000
(13:54 +0000)
glib/gcallback.lisp
patch
|
blob
|
blame
|
history
diff --git
a/glib/gcallback.lisp
b/glib/gcallback.lisp
index 462f5aaa863fc89f4f0d5dc0a27c506eacfd2b87..ca406e96bab19b1dde486573324d44ea76f96691 100644
(file)
--- a/
glib/gcallback.lisp
+++ b/
glib/gcallback.lisp
@@
-15,7
+15,7
@@
;; License along with this library; if not, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
;; License along with this library; if not, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-;; $Id: gcallback.lisp,v 1.1
5 2004-12-04 00:29:57
espen Exp $
+;; $Id: gcallback.lisp,v 1.1
6 2004-12-05 13:54:10
espen Exp $
(in-package "GLIB")
(in-package "GLIB")
@@
-78,24
+78,38
@@
(defun invoke-callback (callback-id return-type &rest args)
;;;; Timeouts and idle functions
;;;; Timeouts and idle functions
+(defconstant +priority-high+ -100)
+(defconstant +priority-default+ 0)
+(defconstant +priority-high-idle+ 100)
+(defconstant +priority-default-idle+ 200)
+(defconstant +priority-low+ 300)
+
+(defbinding source-remove () boolean
+ (tag unsigned-int))
+
(defcallback source-callback-marshal (nil (callback-id unsigned-int))
(callback-trampoline callback-id 0 nil (make-pointer 0)))
(defbinding (timeout-add "g_timeout_add_full")
(defcallback source-callback-marshal (nil (callback-id unsigned-int))
(callback-trampoline callback-id 0 nil (make-pointer 0)))
(defbinding (timeout-add "g_timeout_add_full")
- (
function interval &optional (priority 0
)) unsigned-int
+ (
interval function &optional (priority +priority-default+
)) unsigned-int
(priority int)
(interval unsigned-int)
(priority int)
(interval unsigned-int)
- (
*source-callback-marshal*
pointer)
+ (
(callback source-callback-marshal)
pointer)
((register-callback-function function) unsigned-long)
((callback %destroy-user-data) pointer))
((register-callback-function function) unsigned-long)
((callback %destroy-user-data) pointer))
+(defun timeout-remove (timeout)
+ (source-remove timeout))
+
(defbinding (idle-add "g_idle_add_full")
(defbinding (idle-add "g_idle_add_full")
- (function &optional (priority
0
)) unsigned-int
+ (function &optional (priority
+priority-default-idle+
)) unsigned-int
(priority int)
(priority int)
- (
*source-callback-marshal*
pointer)
+ (
(callback source-callback-marshal)
pointer)
((register-callback-function function) unsigned-long)
((callback %destroy-user-data) pointer))
((register-callback-function function) unsigned-long)
((callback %destroy-user-data) pointer))
+(defun idle-remove (idle)
+ (source-remove idle))
;;;; Signals
;;;; Signals
@@
-159,7
+173,7
@@
(defmethod signal-connect ((gobject gobject) signal function &key after object)
is T, the object connected to is passed as the first argument to the callback
function, or if :OBJECT is any other non NIL value, it is passed as the first
argument instead. If :AFTER is non NIL, the handler will be called after the
is T, the object connected to is passed as the first argument to the callback
function, or if :OBJECT is any other non NIL value, it is passed as the first
argument instead. If :AFTER is non NIL, the handler will be called after the
- default handler
of
the signal."
+ default handler
for
the signal."
(when function
(let ((callback-id
(make-callback-closure
(when function
(let ((callback-id
(make-callback-closure