pub struct PadControllerBuilder { /* private fields */ }Expand description
A builder-pattern type to construct PadController objects.
Implementations§
Source§impl PadControllerBuilder
impl PadControllerBuilder
pub fn action_group(self, action_group: &impl IsA<ActionGroup>) -> Self
pub fn pad(self, pad: &Device) -> Self
Sourcepub fn propagation_phase(self, propagation_phase: PropagationPhase) -> Self
pub fn propagation_phase(self, propagation_phase: PropagationPhase) -> Self
The propagation phase at which this controller will handle events.
Sourcepub fn widget(self, widget: &impl IsA<Widget>) -> Self
pub fn widget(self, widget: &impl IsA<Widget>) -> Self
The widget receiving the GdkEvents that the controller will handle.
Sourcepub fn build(self) -> PadController
pub fn build(self) -> PadController
Build the PadController.
Auto Trait Implementations§
impl !Send for PadControllerBuilder
impl !Sync for PadControllerBuilder
impl Freeze for PadControllerBuilder
impl RefUnwindSafe for PadControllerBuilder
impl Unpin for PadControllerBuilder
impl UnsafeUnpin for PadControllerBuilder
impl UnwindSafe for PadControllerBuilder
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