2006-06-06 Matthew Allum <mallum@openedhand.com>

* python/clutter-base.defs:
        Add support for set/get_depth. Fix timeline declaration.
This commit is contained in:
Matthew Allum 2006-06-06 20:36:19 +00:00
parent 615d519d7a
commit 17fedd5997
2 changed files with 19 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-06-06 Matthew Allum <mallum@openedhand.com>
* python/clutter-base.defs:
Add support for set/get_depth. Fix timeline declaration.
2006-06-05 Emmanuele Bassi <ebassi@openedhand.com>
* python/clutter-base-types.defs:

View File

@ -18,7 +18,7 @@
(is-constructor-of "ClutterTimeline")
(return-type "ClutterTimeline*")
(properties
'("frames" (argname "frames"))
'("num-frames" (argname "frames"))
'("fps" (argsname "fps"))
)
)
@ -530,7 +530,20 @@
(return-type "none")
)
(define-method set_depth
(of-object "ClutterElement")
(c-name "clutter_element_set_depth")
(return-type "none")
(parameters
'("gint" "depth")
)
)
(define-method get_depth
(of-object "ClutterElement")
(c-name "clutter_element_get_depth")
(return-type "gint")
)
;; From ../../clutter/clutter-rectangle.h