pub trait VideoTransitionExt:
IsA<VideoTransition>
+ Sealed
+ 'static {
// Provided methods
fn border(&self) -> i32 { ... }
fn transition_type(&self) -> VideoStandardTransitionType { ... }
fn is_inverted(&self) -> bool { ... }
fn set_border(&self, value: u32) { ... }
fn set_inverted(&self, inverted: bool) { ... }
fn set_transition_type(&self, type_: VideoStandardTransitionType) -> bool { ... }
fn inverts(&self) -> bool { ... }
fn set_invert(&self, invert: bool) { ... }
fn connect_border_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_invert_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_transition_type_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
sourcefn transition_type(&self) -> VideoStandardTransitionType
fn transition_type(&self) -> VideoStandardTransitionType
sourcefn is_inverted(&self) -> bool
👎Deprecated: Since 1.20
fn is_inverted(&self) -> bool
sourcefn set_border(&self, value: u32)
👎Deprecated: Since 1.20
fn set_border(&self, value: u32)
Set the border property of self
, this value represents
the border width of the transition. In case this value does
not make sense for the current transition type, it is cached
for later use.
§Deprecated since 1.20
Use ges_timeline_element_set_child_property instead.
§value
The value of the border to set on object
sourcefn set_inverted(&self, inverted: bool)
👎Deprecated: Since 1.20
fn set_inverted(&self, inverted: bool)
sourcefn set_transition_type(&self, type_: VideoStandardTransitionType) -> bool
fn set_transition_type(&self, type_: VideoStandardTransitionType) -> bool
sourcefn inverts(&self) -> bool
👎Deprecated: Since 1.20
fn inverts(&self) -> bool
This value represents the direction of the transition.
§Deprecated since 1.20
Use ges_timeline_element_[sg]et_child_property instead.
sourcefn set_invert(&self, invert: bool)
👎Deprecated: Since 1.20
fn set_invert(&self, invert: bool)
This value represents the direction of the transition.
§Deprecated since 1.20
Use ges_timeline_element_[sg]et_child_property instead.
fn connect_border_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_invert_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
👎Deprecated: Since 1.20
fn connect_transition_type_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.