pub struct ListBoxEvents(/* private fields */);
Available on crate feature
gui
only.Expand description
Exposes list box control notifications.
These event methods are just proxies to the
WindowEvents
of the parent window, who
is the real responsible for the child event handling.
You cannot directly instantiate this object, it is created internally by the control.
Implementations§
Source§impl ListBoxEvents
impl ListBoxEvents
Sourcepub fn lbn_dbl_clk<F>(&self, func: F) -> &Self
pub fn lbn_dbl_clk<F>(&self, func: F) -> &Self
LBN_DBLCLK
command notification.
Sourcepub fn lbn_err_space<F>(&self, func: F) -> &Self
pub fn lbn_err_space<F>(&self, func: F) -> &Self
LBN_ERRSPACE
command notification.
Sourcepub fn lbn_kill_focus<F>(&self, func: F) -> &Self
pub fn lbn_kill_focus<F>(&self, func: F) -> &Self
LBN_KILLFOCUS
command notification.
Sourcepub fn lbn_sel_cancel<F>(&self, func: F) -> &Self
pub fn lbn_sel_cancel<F>(&self, func: F) -> &Self
LBN_SELCANCEL
command notification.
Sourcepub fn lbn_sel_change<F>(&self, func: F) -> &Self
pub fn lbn_sel_change<F>(&self, func: F) -> &Self
LBN_SELCHANGE
command notification.
Sourcepub fn lbn_set_focus<F>(&self, func: F) -> &Self
pub fn lbn_set_focus<F>(&self, func: F) -> &Self
LBN_SETFOCUS
command notification.
Auto Trait Implementations§
impl Freeze for ListBoxEvents
impl !RefUnwindSafe for ListBoxEvents
impl !Send for ListBoxEvents
impl !Sync for ListBoxEvents
impl Unpin for ListBoxEvents
impl !UnwindSafe for ListBoxEvents
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