Macros | |
#define | D4D_ComboBoxGetItemCount(pThis) |
Function gets the count of combo box items. More... | |
#define | D4D_ComboBoxFindUserDataItem(pThis, pUser) |
Function finds the index of items with specified user data. More... | |
#define | D4D_ComboBoxGetItemUserData(pThis) |
Function gets the selected item user data. More... | |
#define | D4D_ComboBoxGetItemText(pThis) |
Function gets the selected item text. More... | |
#define | D4D_ComboBoxGetItemTextIx(pThis, ix) |
Function gets the text of item choosed by item index. More... | |
#define | D4D_ComboBoxEnsureVisible(pThis) |
Function ensure that the selected item in list will be scrolled to visible area. More... | |
#define | D4D_ComboBoxChangeItemList(pThis, pItems) |
Function change the items list using by combo box. More... | |
#define | D4D_ComboBoxGetItemList(pThis) |
Function gets the current using item list. More... | |
This section specifies the exact usage for each API function.
#define D4D_ComboBoxChangeItemList | ( | pThis, | |
pItems | |||
) |
Function change the items list using by combo box.
pThis | - pointer to the combo box object |
pItems | - pointer to the new item list |
Definition at line 461 of file d4d_combo_box.h.
#define D4D_ComboBoxEnsureVisible | ( | pThis | ) |
Function ensure that the selected item in list will be scrolled to visible area.
pThis | - pointer to the combo box object |
Definition at line 452 of file d4d_combo_box.h.
#define D4D_ComboBoxFindUserDataItem | ( | pThis, | |
pUser | |||
) |
Function finds the index of items with specified user data.
pThis | - pointer to the combo box object |
pUser | - user data that is used to look for the item index (must match) |
Definition at line 419 of file d4d_combo_box.h.
#define D4D_ComboBoxGetItemCount | ( | pThis | ) |
Function gets the count of combo box items.
pThis | - pointer to the combo box object |
Definition at line 410 of file d4d_combo_box.h.
#define D4D_ComboBoxGetItemList | ( | pThis | ) |
Function gets the current using item list.
pThis | - pointer to the combo box object |
Definition at line 469 of file d4d_combo_box.h.
#define D4D_ComboBoxGetItemText | ( | pThis | ) |
Function gets the selected item text.
pThis | - pointer to the combo box object |
Definition at line 435 of file d4d_combo_box.h.
#define D4D_ComboBoxGetItemTextIx | ( | pThis, | |
ix | |||
) |
Function gets the text of item choosed by item index.
pThis | - pointer to the combo box object |
ix | - index to item array |
Definition at line 444 of file d4d_combo_box.h.
#define D4D_ComboBoxGetItemUserData | ( | pThis | ) |
Function gets the selected item user data.
pThis | - pointer to the combo box object |
Definition at line 427 of file d4d_combo_box.h.