-------------------------------------------- LISTBOX & COMBOBOX ------------------------------------------- ----------------------- IS LIST -----------------
| 579 | // -------------------------------------------- LISTBOX & COMBOBOX ------------------------------------------- |
| 580 | // ----------------------- IS LIST ----------------- |
| 581 | bool dialog::isList() const |
| 582 | { |
| 583 | if ( !this ) |
| 584 | return false; |
| 585 | |
| 586 | u16 wCtrl = this->wCtrlType; |
| 587 | return wCtrl == ctrls::cCOMBO || wCtrl == ctrls::cLIST; |
| 588 | } |
| 589 | // --------------- GET SELECTED INDEX -------------- |
| 590 | u8 dialog::getSelectedIndex() const |
| 591 | { |
no outgoing calls
no test coverage detected