Trait glib::subclass::interface::ObjectInterface[][src]

pub unsafe trait ObjectInterface: ObjectInterfaceType + Sized + 'static {
    type Prerequisites: PrerequisiteList;

    const NAME: &'static str;
    fn type_init(_type_: &mut InitializingType<Self>) { ... }
fn interface_init(&mut self) { ... }
fn properties() -> &'static [ParamSpec] { ... }
fn signals() -> &'static [Signal] { ... } }
Expand description

The central trait for defining a GObject interface.

Links together the type name and the interface struct for type registration and allows to hook into various steps of the type registration and initialization.

This must only be implemented on #[repr(C)] structs and have gobject_ffi::GTypeInterface as the first field.

See register_interface for registering an implementation of this trait with the type system.

Associated Types

Prerequisites for this interface.

Any implementer of the interface must be a subclass of the prerequisites or implement them in case of interfaces.

Associated Constants

GObject type name.

This must be unique in the whole process.

Provided methods

Additional type initialization.

This is called right after the type was registered and allows interfaces to do additional type-specific initialization.

Optional

Interface initialization.

This is called after type_init and before the first implementor of the interface is created. Interfaces can use this to do interface- specific initialization, e.g. for installing signals on the interface, and for setting default implementations of interface functions.

Optional

Properties installed for this interface.

All implementors of the interface must provide these properties.

Signals installed for this interface.

Implementors