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
use UIWindowsAndMessaging as winmsg;
/// Shows a disabled vertical scroll bar for the list box when the box does not
/// contain enough items to scroll
pub use LBS_DISABLENOSCROLL;
/// Allows multiple items to be selected by using the SHIFT key and the mouse,
/// or special key combinations
pub use LBS_EXTENDEDSEL;
/// Specifies that a list box contains items consisting of strings
pub use LBS_HASSTRINGS;
/// Specifies a multicolumn list box that is scrolled horizontally
pub use LBS_MULTICOLUMN;
/// This list box style allows for the selection of any number of strings
pub use LBS_MULTIPLESEL;
/// This list box style prevents the height of a list box from being adjusted so
/// that partial items are not displayed
pub use LBS_NOINTEGRALHEIGHT;
/// This list box style suppresses screen updates when changes are made
pub use LBS_NOREDRAW;
/// This list box style enables the notification of the parent window when a
/// string in the list box is clicked or double-clicked
pub use LBS_NOTIFY;
/// This list box style specifies that the application is responsible for
/// drawing the list box and that all the items have the same height
pub use LBS_OWNERDRAWFIXED;
/// This list box style specifies that the application is responsible for
/// drawing the list box and that the items in the list box vary in height
pub use LBS_OWNERDRAWVARIABLE;
/// This list box style causes the list box strings to be sorted alphabetically
pub use LBS_SORT;
/// This list box style combines the `LBS_NOTIFY` and `LBS_SORT` list box styles
/// with the windows styles `WS_BORDER` and `WS_VSCROLL`
pub use LBS_STANDARD;
/// This list box style expands tab characters within its content strings
pub use LBS_USETABSTOPS;
/// This list box style indicates that the owner receives `WM_VKEYTOITEM` or
/// `WM_CHARTOITEM` messages when the list box has input focus and the user
/// presses a key
pub use LBS_WANTKEYBOARDINPUT;