pub trait IMMulticontextExt: 'static {
    fn context_id(&self) -> Option<GString>;
    fn set_context_id(&self, context_id: &str);
}
Expand description

Trait containing all IMMulticontext methods.

Implementors

IMMulticontext

Required Methods

Gets the id of the currently active slave of the self.

Returns

the id of the currently active slave

Sets the context id for self.

This causes the currently active slave of self to be replaced by the slave corresponding to the new context id.

context_id

the id to use

Implementors