gtk4

Struct CellRendererToggle

source
pub struct CellRendererToggle { /* private fields */ }
๐Ÿ‘ŽDeprecated: Since 4.10
Expand description

GLib type: GObject with reference counted clone semantics.

Implementationsยง

sourceยง

impl CellRendererToggle

source

pub fn new() -> CellRendererToggle

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn builder() -> CellRendererToggleBuilder

๐Ÿ‘ŽDeprecated: Since 4.10

Creates a new builder-pattern struct instance to construct CellRendererToggle objects.

This method returns an instance of CellRendererToggleBuilder which can be used to create CellRendererToggle objects.

source

pub fn is_activatable(&self) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn is_active(&self) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn is_radio(&self) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn set_activatable(&self, setting: bool)

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn set_active(&self, setting: bool)

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn set_radio(&self, radio: bool)

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn is_inconsistent(&self) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn set_inconsistent(&self, inconsistent: bool)

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn connect_toggled<F: Fn(&Self, TreePath) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn connect_activatable_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn connect_active_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn connect_inconsistent_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
source

pub fn connect_radio_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10

Trait Implementationsยง

sourceยง

impl Clone for CellRendererToggle

sourceยง

fn clone(&self) -> Self

Makes a clone of this shared reference.

This increments the strong reference count of the object. Dropping the object will decrement it again.

1.6.0 ยท sourceยง

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
sourceยง

impl Debug for CellRendererToggle

sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
sourceยง

impl Default for CellRendererToggle

sourceยง

fn default() -> Self

Returns the โ€œdefault valueโ€ for a type. Read more
sourceยง

impl HasParamSpec for CellRendererToggle

sourceยง

type ParamSpec = ParamSpecObject

sourceยง

type SetValue = CellRendererToggle

Preferred value to be used as setter for the associated ParamSpec.
sourceยง

type BuilderFn = fn(_: &str) -> ParamSpecObjectBuilder<'_, CellRendererToggle>

sourceยง

fn param_spec_builder() -> Self::BuilderFn

sourceยง

impl Hash for CellRendererToggle

sourceยง

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Hashes the memory address of this object.

1.6.0 ยท sourceยง

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
sourceยง

impl Ord for CellRendererToggle

sourceยง

fn cmp(&self, other: &Self) -> Ordering

Comparison for two GObjects.

Compares the memory addresses of the provided objects.

1.21.0 ยท sourceยง

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 ยท sourceยง

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 ยท sourceยง

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
sourceยง

impl ParentClassIs for CellRendererToggle

sourceยง

impl<OT: ObjectType> PartialEq<OT> for CellRendererToggle

sourceยง

fn eq(&self, other: &OT) -> bool

Equality for two GObjects.

Two GObjects are equal if their memory addresses are equal.

1.6.0 ยท sourceยง

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
sourceยง

impl<OT: ObjectType> PartialOrd<OT> for CellRendererToggle

sourceยง

fn partial_cmp(&self, other: &OT) -> Option<Ordering>

Partial comparison for two GObjects.

Compares the memory addresses of the provided objects.

1.6.0 ยท sourceยง

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.6.0 ยท sourceยง

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.6.0 ยท sourceยง

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.6.0 ยท sourceยง

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
sourceยง

impl StaticType for CellRendererToggle

sourceยง

fn static_type() -> Type

Returns the type identifier of Self.
sourceยง

impl Eq for CellRendererToggle

sourceยง

impl IsA<CellRenderer> for CellRendererToggle

Auto Trait Implementationsยง

Blanket Implementationsยง

sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
sourceยง

impl<T> Cast for T
where T: ObjectType,

sourceยง

fn upcast<T>(self) -> T
where T: ObjectType, Self: IsA<T>,

Upcasts an object to a superclass or interface T. Read more
sourceยง

fn upcast_ref<T>(&self) -> &T
where T: ObjectType, Self: IsA<T>,

Upcasts an object to a reference of its superclass or interface T. Read more
sourceยง

fn downcast<T>(self) -> Result<T, Self>
where T: ObjectType, Self: MayDowncastTo<T>,

Tries to downcast to a subclass or interface implementor T. Read more
sourceยง

fn downcast_ref<T>(&self) -> Option<&T>
where T: ObjectType, Self: MayDowncastTo<T>,

Tries to downcast to a reference of its subclass or interface implementor T. Read more
sourceยง

fn dynamic_cast<T>(self) -> Result<T, Self>
where T: ObjectType,

Tries to cast to an object of type T. This handles upcasting, downcasting and casting between interface and interface implementors. All checks are performed at runtime, while upcast will do many checks at compile-time already. downcast will perform the same checks at runtime as dynamic_cast, but will also ensure some amount of compile-time safety. Read more
sourceยง

fn dynamic_cast_ref<T>(&self) -> Option<&T>
where T: ObjectType,

Tries to cast to reference to an object of type T. This handles upcasting, downcasting and casting between interface and interface implementors. All checks are performed at runtime, while downcast and upcast will do many checks at compile-time already. Read more
sourceยง

unsafe fn unsafe_cast<T>(self) -> T
where T: ObjectType,

Casts to T unconditionally. Read more
sourceยง

unsafe fn unsafe_cast_ref<T>(&self) -> &T
where T: ObjectType,

Casts to &T unconditionally. Read more
sourceยง

impl<O> CellRendererExt for O
where O: IsA<CellRenderer>,

sourceยง

fn activate( &self, event: impl AsRef<Event>, widget: &impl IsA<Widget>, path: &str, background_area: &Rectangle, cell_area: &Rectangle, flags: CellRendererState, ) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn aligned_area( &self, widget: &impl IsA<Widget>, flags: CellRendererState, cell_area: &Rectangle, ) -> Rectangle

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn alignment(&self) -> (f32, f32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn fixed_size(&self) -> (i32, i32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn is_expanded(&self) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn is_expander(&self) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn padding(&self) -> (i32, i32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn preferred_height(&self, widget: &impl IsA<Widget>) -> (i32, i32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn preferred_height_for_width( &self, widget: &impl IsA<Widget>, width: i32, ) -> (i32, i32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn preferred_size( &self, widget: &impl IsA<Widget>, ) -> (Requisition, Requisition)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn preferred_width(&self, widget: &impl IsA<Widget>) -> (i32, i32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn preferred_width_for_height( &self, widget: &impl IsA<Widget>, height: i32, ) -> (i32, i32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn request_mode(&self) -> SizeRequestMode

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn is_sensitive(&self) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn state( &self, widget: Option<&impl IsA<Widget>>, cell_state: CellRendererState, ) -> StateFlags

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn is_visible(&self) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn is_activatable(&self) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_alignment(&self, xalign: f32, yalign: f32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_fixed_size(&self, width: i32, height: i32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_is_expanded(&self, is_expanded: bool)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_is_expander(&self, is_expander: bool)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_padding(&self, xpad: i32, ypad: i32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_sensitive(&self, sensitive: bool)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_visible(&self, visible: bool)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn snapshot( &self, snapshot: &impl IsA<Snapshot>, widget: &impl IsA<Widget>, background_area: &Rectangle, cell_area: &Rectangle, flags: CellRendererState, )

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn start_editing( &self, event: Option<impl AsRef<Event>>, widget: &impl IsA<Widget>, path: &str, background_area: &Rectangle, cell_area: &Rectangle, flags: CellRendererState, ) -> Option<CellEditable>

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn stop_editing(&self, canceled: bool)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_cell_background(&self, cell_background: Option<&str>)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn cell_background_rgba(&self) -> Option<RGBA>

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_cell_background_rgba(&self, cell_background_rgba: Option<&RGBA>)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn is_cell_background_set(&self) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn is_editing(&self) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn height(&self) -> i32

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_height(&self, height: i32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn mode(&self) -> CellRendererMode

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_mode(&self, mode: CellRendererMode)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn width(&self) -> i32

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_width(&self, width: i32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn xalign(&self) -> f32

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_xalign(&self, xalign: f32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn xpad(&self) -> u32

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_xpad(&self, xpad: u32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn yalign(&self) -> f32

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_yalign(&self, yalign: f32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn ypad(&self) -> u32

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn set_ypad(&self, ypad: u32)

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_editing_canceled<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_editing_started<F: Fn(&Self, &CellEditable, TreePath) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_cell_background_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_cell_background_rgba_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_cell_background_set_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_editing_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_height_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_is_expanded_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_is_expander_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_mode_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_sensitive_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_visible_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_width_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_xalign_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_xpad_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_yalign_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

fn connect_ypad_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

๐Ÿ‘ŽDeprecated: Since 4.10
sourceยง

impl<T> CloneToUninit for T
where T: Clone,

sourceยง

unsafe fn clone_to_uninit(&self, dst: *mut T)

๐Ÿ”ฌThis is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
sourceยง

impl<T> From<T> for T

sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

sourceยง

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

sourceยง

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

sourceยง

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

sourceยง

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

sourceยง

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

sourceยง

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

sourceยง

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

sourceยง

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

sourceยง

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

sourceยง

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

sourceยง

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

sourceยง

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

sourceยง

impl<O> GObjectPropertyExpressionExt for O
where O: IsA<Object>,

sourceยง

fn property_expression(&self, property_name: &str) -> PropertyExpression

Create an expression looking up an objectโ€™s property.
sourceยง

fn property_expression_weak(&self, property_name: &str) -> PropertyExpression

Create an expression looking up an objectโ€™s property with a weak reference.
sourceยง

fn this_expression(property_name: &str) -> PropertyExpression

Create an expression looking up a property in the bound this object.
sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

sourceยง

impl<T> IntoClosureReturnValue for T
where T: Into<Value>,

sourceยง

impl<U> IsSubclassableExt for U

sourceยง

impl<T> ObjectExt for T
where T: ObjectType,

sourceยง

fn is<U>(&self) -> bool
where U: StaticType,

Returns true if the object is an instance of (can be cast to) T.
sourceยง

fn type_(&self) -> Type

Returns the type of the object.
sourceยง

fn object_class(&self) -> &Class<Object>

Returns the ObjectClass of the object. Read more
sourceยง

fn class(&self) -> &Class<T>
where T: IsClass,

Returns the class of the object.
sourceยง

fn class_of<U>(&self) -> Option<&Class<U>>
where U: IsClass,

Returns the class of the object in the given type T. Read more
sourceยง

fn interface<U>(&self) -> Option<InterfaceRef<'_, U>>
where U: IsInterface,

Returns the interface T of the object. Read more
sourceยง

fn set_property(&self, property_name: &str, value: impl Into<Value>)

Sets the property property_name of the object to value value. Read more
sourceยง

fn set_property_from_value(&self, property_name: &str, value: &Value)

Sets the property property_name of the object to value value. Read more
sourceยง

fn set_properties(&self, property_values: &[(&str, &dyn ToValue)])

Sets multiple properties of the object at once. Read more
sourceยง

fn set_properties_from_value(&self, property_values: &[(&str, Value)])

Sets multiple properties of the object at once. Read more
sourceยง

fn property<V>(&self, property_name: &str) -> V
where V: for<'b> FromValue<'b> + 'static,

Gets the property property_name of the object and cast it to the type V. Read more
sourceยง

fn property_value(&self, property_name: &str) -> Value

Gets the property property_name of the object. Read more
sourceยง

fn has_property(&self, property_name: &str, type_: Option<Type>) -> bool

Check if the object has a property property_name of the given type_. Read more
sourceยง

fn property_type(&self, property_name: &str) -> Option<Type>

Get the type of the property property_name of this object. Read more
sourceยง

fn find_property(&self, property_name: &str) -> Option<ParamSpec>

Get the ParamSpec of the property property_name of this object.
sourceยง

fn list_properties(&self) -> PtrSlice<ParamSpec>

Return all ParamSpec of the properties of this object.
sourceยง

fn freeze_notify(&self) -> PropertyNotificationFreezeGuard

Freeze all property notifications until the return guard object is dropped. Read more
sourceยง

unsafe fn set_qdata<QD>(&self, key: Quark, value: QD)
where QD: 'static,

Set arbitrary data on this object with the given key. Read more
sourceยง

unsafe fn qdata<QD>(&self, key: Quark) -> Option<NonNull<QD>>
where QD: 'static,

Return previously set arbitrary data of this object with the given key. Read more
sourceยง

unsafe fn steal_qdata<QD>(&self, key: Quark) -> Option<QD>
where QD: 'static,

Retrieve previously set arbitrary data of this object with the given key. Read more
sourceยง

unsafe fn set_data<QD>(&self, key: &str, value: QD)
where QD: 'static,

Set arbitrary data on this object with the given key. Read more
sourceยง

unsafe fn data<QD>(&self, key: &str) -> Option<NonNull<QD>>
where QD: 'static,

Return previously set arbitrary data of this object with the given key. Read more
sourceยง

unsafe fn steal_data<QD>(&self, key: &str) -> Option<QD>
where QD: 'static,

Retrieve previously set arbitrary data of this object with the given key. Read more
sourceยง

fn block_signal(&self, handler_id: &SignalHandlerId)

Block a given signal handler. Read more
sourceยง

fn unblock_signal(&self, handler_id: &SignalHandlerId)

Unblock a given signal handler.
sourceยง

fn stop_signal_emission(&self, signal_id: SignalId, detail: Option<Quark>)

Stop emission of the currently emitted signal.
sourceยง

fn stop_signal_emission_by_name(&self, signal_name: &str)

Stop emission of the currently emitted signal by the (possibly detailed) signal name.
sourceยง

fn connect<F>( &self, signal_name: &str, after: bool, callback: F, ) -> SignalHandlerId
where F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,

Connect to the signal signal_name on this object. Read more
sourceยง

fn connect_id<F>( &self, signal_id: SignalId, details: Option<Quark>, after: bool, callback: F, ) -> SignalHandlerId
where F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,

Connect to the signal signal_id on this object. Read more
sourceยง

fn connect_local<F>( &self, signal_name: &str, after: bool, callback: F, ) -> SignalHandlerId
where F: Fn(&[Value]) -> Option<Value> + 'static,

Connect to the signal signal_name on this object. Read more
sourceยง

fn connect_local_id<F>( &self, signal_id: SignalId, details: Option<Quark>, after: bool, callback: F, ) -> SignalHandlerId
where F: Fn(&[Value]) -> Option<Value> + 'static,

Connect to the signal signal_id on this object. Read more
sourceยง

unsafe fn connect_unsafe<F>( &self, signal_name: &str, after: bool, callback: F, ) -> SignalHandlerId
where F: Fn(&[Value]) -> Option<Value>,

Connect to the signal signal_name on this object. Read more
sourceยง

unsafe fn connect_unsafe_id<F>( &self, signal_id: SignalId, details: Option<Quark>, after: bool, callback: F, ) -> SignalHandlerId
where F: Fn(&[Value]) -> Option<Value>,

Connect to the signal signal_id on this object. Read more
sourceยง

fn connect_closure( &self, signal_name: &str, after: bool, closure: RustClosure, ) -> SignalHandlerId

Connect a closure to the signal signal_name on this object. Read more
sourceยง

fn connect_closure_id( &self, signal_id: SignalId, details: Option<Quark>, after: bool, closure: RustClosure, ) -> SignalHandlerId

Connect a closure to the signal signal_id on this object. Read more
sourceยง

fn watch_closure(&self, closure: &impl AsRef<Closure>)

Limits the lifetime of closure to the lifetime of the object. When the objectโ€™s reference count drops to zero, the closure will be invalidated. An invalidated closure will ignore any calls to invoke_with_values, or invoke when using Rust closures.
sourceยง

fn emit<R>(&self, signal_id: SignalId, args: &[&dyn ToValue]) -> R

Emit signal by signal id. Read more
sourceยง

fn emit_with_values(&self, signal_id: SignalId, args: &[Value]) -> Option<Value>

Same as Self::emit but takes Value for the arguments.
sourceยง

fn emit_by_name<R>(&self, signal_name: &str, args: &[&dyn ToValue]) -> R

Emit signal by its name. Read more
sourceยง

fn emit_by_name_with_values( &self, signal_name: &str, args: &[Value], ) -> Option<Value>

Emit signal by its name. Read more
sourceยง

fn emit_by_name_with_details<R>( &self, signal_name: &str, details: Quark, args: &[&dyn ToValue], ) -> R

Emit signal by its name with details. Read more
sourceยง

fn emit_by_name_with_details_and_values( &self, signal_name: &str, details: Quark, args: &[Value], ) -> Option<Value>

Emit signal by its name with details. Read more
sourceยง

fn emit_with_details<R>( &self, signal_id: SignalId, details: Quark, args: &[&dyn ToValue], ) -> R

Emit signal by signal id with details. Read more
sourceยง

fn emit_with_details_and_values( &self, signal_id: SignalId, details: Quark, args: &[Value], ) -> Option<Value>

Emit signal by signal id with details. Read more
sourceยง

fn disconnect(&self, handler_id: SignalHandlerId)

Disconnect a previously connected signal handler.
sourceยง

fn connect_notify<F>(&self, name: Option<&str>, f: F) -> SignalHandlerId
where F: Fn(&T, &ParamSpec) + Send + Sync + 'static,

Connect to the notify signal of the object. Read more
sourceยง

fn connect_notify_local<F>(&self, name: Option<&str>, f: F) -> SignalHandlerId
where F: Fn(&T, &ParamSpec) + 'static,

Connect to the notify signal of the object. Read more
sourceยง

unsafe fn connect_notify_unsafe<F>( &self, name: Option<&str>, f: F, ) -> SignalHandlerId
where F: Fn(&T, &ParamSpec),

Connect to the notify signal of the object. Read more
sourceยง

fn notify(&self, property_name: &str)

Notify that the given property has changed its value. Read more
sourceยง

fn notify_by_pspec(&self, pspec: &ParamSpec)

Notify that the given property has changed its value. Read more
sourceยง

fn downgrade(&self) -> WeakRef<T>

Downgrade this object to a weak reference.
sourceยง

fn add_weak_ref_notify<F>(&self, f: F) -> WeakRefNotify<T>
where F: FnOnce() + Send + 'static,

Add a callback to be notified when the Object is disposed.
sourceยง

fn add_weak_ref_notify_local<F>(&self, f: F) -> WeakRefNotify<T>
where F: FnOnce() + 'static,

Add a callback to be notified when the Object is disposed. Read more
sourceยง

fn bind_property<'a, 'f, 't, O>( &'a self, source_property: &'a str, target: &'a O, target_property: &'a str, ) -> BindingBuilder<'a, 'f, 't>
where O: ObjectType,

Bind property source_property on this object to the target_property on the target object. Read more
sourceยง

fn ref_count(&self) -> u32

Returns the strong reference count of this object.
sourceยง

unsafe fn run_dispose(&self)

Runs the dispose mechanism of the object. Read more
sourceยง

impl<T> Property for T
where T: HasParamSpec,

sourceยง

impl<T> PropertyGet for T
where T: HasParamSpec,

sourceยง

type Value = T

sourceยง

fn get<R, F>(&self, f: F) -> R
where F: Fn(&<T as PropertyGet>::Value) -> R,

sourceยง

impl<T> StaticTypeExt for T
where T: StaticType,

sourceยง

fn ensure_type()

Ensures that the type has been registered with the type system.
sourceยง

impl<T> ToOwned for T
where T: Clone,

sourceยง

type Owned = T

The resulting type after obtaining ownership.
sourceยง

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
sourceยง

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
sourceยง

impl<T> TransparentType for T

sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
sourceยง

impl<T> TryFromClosureReturnValue for T
where T: for<'a> FromValue<'a> + StaticType + 'static,

sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

sourceยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
sourceยง

impl<'a, T, C, E> FromValueOptional<'a> for T
where T: FromValue<'a, Checker = C>, C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError<E>>, E: Error + Send + 'static,

sourceยง

impl<Super, Sub> MayDowncastTo<Sub> for Super
where Super: IsA<Super>, Sub: IsA<Super>,