pub struct WaveformPaintable {
waveform: RefCell<Cow<'static, [f32]>>,
previous_waveform: RefCell<Option<Cow<'static, [f32]>>>,
transition_progress: Cell<f64>,
}Fields§
§waveform: RefCell<Cow<'static, [f32]>>The waveform to display.
The values must be normalized between 0 and 1.
previous_waveform: RefCell<Option<Cow<'static, [f32]>>>The previous waveform that was displayed, if any.
Use for the transition between waveforms.
transition_progress: Cell<f64>The progress of the transition between waveforms.
Implementations§
Source§impl WaveformPaintable
impl WaveformPaintable
Sourcefn register_type()
fn register_type()
Registers the type only once.
Source§impl WaveformPaintable
impl WaveformPaintable
Sourcepub(super) fn set_waveform(&self, waveform: Vec<f32>) -> bool
pub(super) fn set_waveform(&self, waveform: Vec<f32>) -> bool
Set the values of the bars to display.
The values must be normalized between 0 and 1.
Returns whether the waveform changed.
Sourcefn set_transition_progress(&self, progress: f64)
fn set_transition_progress(&self, progress: f64)
Set the progress of the transition between waveforms.
Trait Implementations§
Source§impl Debug for WaveformPaintable
impl Debug for WaveformPaintable
Source§impl Default for WaveformPaintable
impl Default for WaveformPaintable
Source§impl DerivedObjectProperties for WaveformPaintable
impl DerivedObjectProperties for WaveformPaintable
Source§fn derived_properties() -> &'static [ParamSpec]
fn derived_properties() -> &'static [ParamSpec]
Properties installed for this type.
Source§fn derived_property(&self, id: usize, pspec: &ParamSpec) -> Value
fn derived_property(&self, id: usize, pspec: &ParamSpec) -> Value
Similar to
ObjectImpl but auto-generated by the Properties macro
to allow handling more complex use-cases.Source§fn derived_set_property(&self, id: usize, value: &Value, pspec: &ParamSpec)
fn derived_set_property(&self, id: usize, value: &Value, pspec: &ParamSpec)
Similar to
ObjectImpl but auto-generated by the Properties macro
to allow handling more complex use-cases.Source§impl ObjectImpl for WaveformPaintable
impl ObjectImpl for WaveformPaintable
Source§fn properties() -> &'static [ParamSpec]
fn properties() -> &'static [ParamSpec]
Properties installed for this type.
Source§fn set_property(&self, id: usize, value: &Value, pspec: &ParamSpec)
fn set_property(&self, id: usize, value: &Value, pspec: &ParamSpec)
Property setter. Read more
Source§fn constructed(&self)
fn constructed(&self)
Constructed. Read more
Source§fn notify(&self, pspec: &ParamSpec)
fn notify(&self, pspec: &ParamSpec)
Function to be called when property change is notified for with
self.notify("property").fn dispatch_properties_changed(&self, pspecs: &[ParamSpec])
Source§impl ObjectSubclass for WaveformPaintable
impl ObjectSubclass for WaveformPaintable
Source§type ParentType = Object
type ParentType = Object
Parent Rust type to inherit from.
Source§type Class = ClassStruct<WaveformPaintable>
type Class = ClassStruct<WaveformPaintable>
The C class struct. Read more
Source§type Instance = InstanceStruct<WaveformPaintable>
type Instance = InstanceStruct<WaveformPaintable>
The C instance struct. Read more
Source§type Type = WaveformPaintable
type Type = WaveformPaintable
Wrapper around this subclass defined with
wrapper!Source§type Interfaces = (Paintable,)
type Interfaces = (Paintable,)
List of interfaces implemented by this type.
Source§const ALLOW_NAME_CONFLICT: bool = false
const ALLOW_NAME_CONFLICT: bool = false
Allow name conflicts for this class. Read more
Source§fn type_init(_type_: &mut InitializingType<Self>)
fn type_init(_type_: &mut InitializingType<Self>)
Additional type initialization. Read more
Source§fn class_init(_klass: &mut Self::Class)
fn class_init(_klass: &mut Self::Class)
Class initialization. Read more
Source§fn with_class(_klass: &Self::Class) -> Self
fn with_class(_klass: &Self::Class) -> Self
Constructor. Read more
Source§fn instance_init(_obj: &InitializingObject<Self>)
fn instance_init(_obj: &InitializingObject<Self>)
Performs additional instance initialization. Read more
Source§impl PaintableImpl for WaveformPaintable
impl PaintableImpl for WaveformPaintable
Auto Trait Implementations§
impl !Freeze for WaveformPaintable
impl !RefUnwindSafe for WaveformPaintable
impl Send for WaveformPaintable
impl !Sync for WaveformPaintable
impl Unpin for WaveformPaintable
impl UnsafeUnpin for WaveformPaintable
impl UnwindSafe for WaveformPaintable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> ObjectImplExt for Twhere
T: ObjectImpl,
impl<T> ObjectImplExt for Twhere
T: ObjectImpl,
Source§fn parent_constructed(&self)
fn parent_constructed(&self)
Chain up to the parent class’ implementation of
glib::Object::constructed().Source§fn parent_notify(&self, pspec: &ParamSpec)
fn parent_notify(&self, pspec: &ParamSpec)
Chain up to the parent class’ implementation of
glib::Object::notify().Source§fn parent_dispatch_properties_changed(&self, pspecs: &[ParamSpec])
fn parent_dispatch_properties_changed(&self, pspecs: &[ParamSpec])
Chain up to the parent class’ implementation of
glib::Object::dispatch_properties_changed().Source§fn signal_chain_from_overridden(
&self,
token: &SignalClassHandlerToken,
values: &[Value],
) -> Option<Value>
fn signal_chain_from_overridden( &self, token: &SignalClassHandlerToken, values: &[Value], ) -> Option<Value>
Chain up to parent class signal handler.
Source§impl<T> ObjectSubclassExt for Twhere
T: ObjectSubclass,
impl<T> ObjectSubclassExt for Twhere
T: ObjectSubclass,
Source§fn obj(&self) -> BorrowedObject<'_, <T as ObjectSubclass>::Type>
fn obj(&self) -> BorrowedObject<'_, <T as ObjectSubclass>::Type>
Returns the corresponding object instance. Read more
Source§fn from_obj(obj: &<T as ObjectSubclass>::Type) -> &T
fn from_obj(obj: &<T as ObjectSubclass>::Type) -> &T
Returns the implementation from an instance. Read more
Source§fn ref_counted(&self) -> ObjectImplRef<T>
fn ref_counted(&self) -> ObjectImplRef<T>
Returns a new reference-counted wrapper around
self.