This commit is contained in:
parent
efd1d32801
commit
120eb5baaf
14 changed files with 405 additions and 44 deletions
|
|
@ -41,6 +41,23 @@ MwInline const char* MwComboBoxGet(MwWidget handle, int index) {
|
|||
return text;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Deletes the entry from combobox
|
||||
* @param handle Widget
|
||||
* @param index Index
|
||||
*/
|
||||
MwInline void MwComboBoxDelete(MwWidget handle, int index) {
|
||||
MwVaWidgetExecute(handle, "mwComboBoxDelete", NULL, index);
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Resets the combobox
|
||||
* @param handle Widget
|
||||
*/
|
||||
MwInline void MwComboBoxReset(MwWidget handle) {
|
||||
MwVaWidgetExecute(handle, "mwComboBoxReset", NULL);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue