Struct winsafe::gui::events::ComboBoxEvents[][src]

pub struct ComboBoxEvents { /* fields omitted */ }
Expand description

Exposes combo 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

CBN_CLOSEUP notification.

Sent when the list box of a combo box has been closed.

CBN_DBLCLK notification.

Sent when the user double-clicks a string in the list box of a combo box.

CBN_DROPDOWN notification.

Sent when the list box of a combo box is about to be made visible.

CBN_EDITCHANGE notification.

Sent after the user has taken an action that may have altered the text in the edit control portion of a combo box. Unlike the CBN_EDITUPDATE notification code, this notification code is sent after the system updates the screen.

CBN_EDITUPDATE notification.

Sent when the edit control portion of a combo box is about to display altered text. This notification code is sent after the control has formatted the text, but before it displays the text.

CBN_ERRSPACE notification.

Sent when a combo box cannot allocate enough memory to meet a specific request.

CBN_KILLFOCUS notification.

Sent when a combo box loses the keyboard focus.

CBN_SELCHANGE notification.

Sent when the user changes the current selection in the list box of a combo box. The user can change the selection by clicking in the list box or by using the arrow keys.

CBN_SELENDCANCEL notification.

Sent when the user selects an item, but then selects another control or closes the dialog box. It indicates the user’s initial selection is to be ignored.

CBN_SELENDOK notification.

Sent when the user selects a list item, or selects an item and then closes the list. It indicates that the user’s selection is to be processed.

CBN_SETFOCUS notification.

Sent when a combo box receives the keyboard focus.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.