ControlType
From LIVECHAT Developer Zone Wiki
Represent the type of preferences dialog's control.
typedef enum ControlType{
PREFERENCES_TITLE = 0,
PREFERENCES_SUBTITLE = 1,
PREFERENCES_SEPARATOR = 2,
PREFERENCES_CHECKBOX = 3,
PREFERENCES_RADIO = 4,
PREFERENCES_COMBO = 5,
PREFERENCES_EDIT = 6,
PREFERENCES_EDIT_DIGITS = 7,
PREFERENCES_EDIT_PASSWORD = 8,
PREFERENCES_TIME = 9,
PREFERENCES_LINK = 10,
PREFERENCES_NO_CONTROL = 11
} ControlType;
- Members
- PREFERENCES_TITLE
- title static control
- PREFERENCES_SUBTITLE
- subtitle static control
- PREFERENCES_SEPARATOR
- horisontal line
- PREFERENCES_CHECKBOX
- checkbox control
- PREFERENCES_RADIO
- multiple radio buttons control with caption
- PREFERENCES_COMBO
- combo box control
- PREFERENCES_EDIT
- edit control
- PREFERENCES_EDIT_DIGITS
- edit control containing only digits
- PREFERENCES_EDIT_PASSWORD
- edit control replacing letters with asterisks
- PREFERENCES_TIME
- edit control that contains time in mm:ss format
- PREFERENCES_LINK
- hyperlink
- PREFERENCES_NO_CONTROL
- control that is not displayed
