1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
use UIWindowsAndMessaging as winmsg;
/// `E.7` CBN_CLOSEUP
///
/// sent when the list box of a combo box is about to be hidden
pub use CBN_CLOSEUP;
/// `E.8` CBN_DBLCLCK
///
/// sent to the parent window when the user double-clicks a string in the list
/// box of a combo box
pub use CBN_DBLCLK;
/// `E.9` CBN_DROPDOWN
///
/// sent when the list box of a combo box is about to be dropped down
pub use CBN_DROPDOWN;
/// `E.10` CBN_EDITCHANGE
///
/// sent after the user has altered the text in the edit-control portion of a
/// combo box
pub use CBN_EDITCHANGE;
/// `E.11` CBN_EDITUPDATE
///
/// sent to the parent window when the edit-control portion of a combo box is
/// about to display altered text
pub use CBN_EDITUPDATE;
/// `E.12` CBN_ERRSPACE
///
/// sent to the parent window when a combo box cannot allocate enough memory to
/// process a request
pub use CBN_ERRSPACE;
/// `E.13` CBN_KILLFOCUS
///
/// sent to the parent window when a combo box loses the input focus
pub use CBN_KILLFOCUS;
/// `E.14` CBN_SELCHANGE
///
/// sent to the parent window when the selection in the list box of a combo box
/// is about to be changed as a result of the user either clicking in the list
/// box or changing the selection by using the arrow keys
pub use CBN_SELCHANGE;
/// `E.15` CBN_SELENDCANCEL
///
/// sent to the parent window when the user clicks an item, then clicks
/// somewhere else and the list box of a combo box gets hidden
pub use CBN_SELENDCANCEL;
/// `E.16` CBN_SELENDOK
///
/// sent to the parent window when the user selects an item and then presses the
/// ENTER or the DOWN ARROW key to hide the list box of a combo box
pub use CBN_SELENDOK;
/// `E.17` CBN_SETFOCUS
///
/// sent to the parent window when a combo box receives the input focus
pub use CBN_SETFOCUS;