* Select a widget as current widget and draw its exterior. * @param index %Widget number to select. * @return Index of the previous selected widget. */
| 971 | * @return Index of the previous selected widget. |
| 972 | */ |
| 973 | uint16 Widget_SetAndPaintCurrentWidget(uint16 index) |
| 974 | { |
| 975 | index = Widget_SetCurrentWidget(index); |
| 976 | |
| 977 | Widget_PaintCurrentWidget(); |
| 978 | |
| 979 | return index; |
| 980 | } |
| 981 | |
| 982 | /** |
| 983 | * Draw the exterior of the currently selected widget. |
no test coverage detected