Skip to content

Commit

Permalink
python : binds the getter and setter for the "inverted" property
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Duponchelle committed May 3, 2012
1 parent 6b3f147 commit c201781
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion bindings/python/ges.defs
Expand Up @@ -2319,10 +2319,31 @@
(c-name "ges_track_video_transition_set_border")
(return-type "none")
(parameters
'("gint" "value")
'("guint" "value")
)
)

(define-method get_border
(of-object "GESTrackVideoTransition")
(c-name "ges_track_video_transition_get_border")
(return-type "gint")
)

(define-method set_inverted
(of-object "GESTrackVideoTransition")
(c-name "ges_track_video_transition_set_inverted")
(return-type "none")
(parameters
'("gboolean" "inverted")
)
)

(define-method is_inverted
(of-object "GESTrackVideoTransition")
(c-name "ges_track_video_transition_is_inverted")
(return-type "gboolean")
)

(define-method get_transition_type
(of-object "GESTrackVideoTransition")
(c-name "ges_track_video_transition_get_transition_type")
Expand Down

0 comments on commit c201781

Please sign in to comment.