Introduce separators in drawList

This commit is contained in:
jpirnay
2026-04-09 16:49:28 +02:00
parent 64b6818eeb
commit c4424dfe1c
7 changed files with 169 additions and 3 deletions
+82
View File
@@ -73,6 +73,26 @@ bool ButtonNavigator::shouldNavigateContinuously() const {
return buttonHeldLongEnough && navigationIntervalElapsed;
}
void ButtonNavigator::setSelectablePredicate(std::function<bool(int)> selectablePredicate, int totalItems) {
this->selectablePredicate = std::move(selectablePredicate);
this->selectableTotalItems = totalItems;
}
void ButtonNavigator::clearSelectablePredicate() {
selectablePredicate = nullptr;
selectableTotalItems = 0;
}
int ButtonNavigator::nextIndex(int currentIndex) const {
if (!selectablePredicate || selectableTotalItems <= 0) return currentIndex;
return nextIndex(currentIndex, selectableTotalItems, selectablePredicate);
}
int ButtonNavigator::previousIndex(int currentIndex) const {
if (!selectablePredicate || selectableTotalItems <= 0) return currentIndex;
return previousIndex(currentIndex, selectableTotalItems, selectablePredicate);
}
int ButtonNavigator::nextIndex(const int currentIndex, const int totalItems) {
if (totalItems <= 0) return 0;
@@ -87,6 +107,68 @@ int ButtonNavigator::previousIndex(const int currentIndex, const int totalItems)
return (currentIndex + totalItems - 1) % totalItems;
}
int ButtonNavigator::nextIndex(const int currentIndex, const std::vector<bool>& selectable) {
const int totalItems = static_cast<int>(selectable.size());
if (totalItems <= 0) return 0;
int index = nextIndex(currentIndex, totalItems);
for (int i = 0; i < totalItems; ++i) {
if (selectable[index]) {
return index;
}
index = nextIndex(index, totalItems);
}
return currentIndex;
}
int ButtonNavigator::previousIndex(const int currentIndex, const std::vector<bool>& selectable) {
const int totalItems = static_cast<int>(selectable.size());
if (totalItems <= 0) return 0;
int index = previousIndex(currentIndex, totalItems);
for (int i = 0; i < totalItems; ++i) {
if (selectable[index]) {
return index;
}
index = previousIndex(index, totalItems);
}
return currentIndex;
}
int ButtonNavigator::nextIndex(const int currentIndex, const int totalItems,
const std::function<bool(int index)>& isSelectable) {
if (totalItems <= 0) return 0;
if (!isSelectable) return nextIndex(currentIndex, totalItems);
int index = nextIndex(currentIndex, totalItems);
for (int i = 0; i < totalItems; ++i) {
if (isSelectable(index)) {
return index;
}
index = nextIndex(index, totalItems);
}
return currentIndex;
}
int ButtonNavigator::previousIndex(const int currentIndex, const int totalItems,
const std::function<bool(int index)>& isSelectable) {
if (totalItems <= 0) return 0;
if (!isSelectable) return previousIndex(currentIndex, totalItems);
int index = previousIndex(currentIndex, totalItems);
for (int i = 0; i < totalItems; ++i) {
if (isSelectable(index)) {
return index;
}
index = previousIndex(index, totalItems);
}
return currentIndex;
}
int ButtonNavigator::nextPageIndex(const int currentIndex, const int totalItems, const int itemsPerPage) {
if (totalItems <= 0 || itemsPerPage <= 0) return 0;