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
use UIWindowsAndMessaging as winmsg;
/// Creates a check box button that can be either checked, unchecked or grayed
pub use BS_3STATE;
/// Same as `BS_3STATE`, except each time the user clicks on it the state
/// changes to the next state in the cycle: checked, grayed, or unchecked
pub use BS_AUTO3STATE;
/// This check box alternates between being checked and unchecked each time the
/// user clicks it
pub use BS_AUTOCHECKBOX;
/// This button highlights itself when a user clicks it and causes any other
/// button in the same group to become unhighlighted
pub use BS_AUTORADIOBUTTON;
/// Creates a small square that can have an "X" within it, indicating that it is
/// selected
pub use BS_CHECKBOX;
/// Causes the button to have a heavy border and is automatically pushed if the
/// user presses the ENTER key
pub use BS_DEFPUSHBUTTON;
/// Creates a rectangle to group other buttons
pub use BS_GROUPBOX;
/// Causes text to be placed on the left side of a radio button or check box
pub use BS_LEFTTEXT;
/// Creates an owner-drawn button
pub use BS_OWNERDRAW;
/// Creates a rounded rectangle push button
pub use BS_PUSHBUTTON;
/// Creates a radio button that is a small circle with text displayed to the
/// right or left of the circle
pub use BS_RADIOBUTTON;