isHighLight method
Implementation
bool isHighLight(TSelectionEntity item) {
if (item.isInLastLevel()) {
if (item.isUnLimit()) {
return isCurrentFocused;
} else {
return item.isSelected;
}
} else {
return isCurrentFocused;
}
}