f34fae854a
Readd samples, samples-dev, tools/testing/bin, third_party removed by cleanup (no history, sorry) Add DEPS file which will replace the old all.deps and standalone.deps Add tools/deps/dartium.deps replacing the old dartium.deps (but now editable from a normal checkout) Fixup tools/utils.py to use the new archiving schema (git count for be, version number for dev/stable Fix codereview.settings
70 lines
1.6 KiB
Dart
70 lines
1.6 KiB
Dart
part of swarmlib;
|
|
|
|
/**
|
|
* An iterator that allows the user to move forward and backward though
|
|
* a set of items. (Bi-directional)
|
|
*/
|
|
class BiIterator<E> {
|
|
|
|
/**
|
|
* Provides forward and backward iterator functionality to keep track
|
|
* which item is currently selected.
|
|
*/
|
|
ObservableValue<int> currentIndex;
|
|
|
|
/**
|
|
* The collection of items we will be iterating through.
|
|
*/
|
|
List<E> list;
|
|
|
|
BiIterator(this.list, [List<ChangeListener> oldListeners = null])
|
|
: currentIndex = new ObservableValue<int>(0) {
|
|
if (oldListeners != null) {
|
|
currentIndex.listeners = oldListeners;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the next section from the sections, given the current
|
|
* position. Returns the last source if there is no next section.
|
|
*/
|
|
E next() {
|
|
if (currentIndex.value < list.length - 1) {
|
|
currentIndex.value += 1;
|
|
}
|
|
return list[currentIndex.value];
|
|
}
|
|
|
|
/**
|
|
* Returns the current Section (page in the UI) that the user is
|
|
* looking at.
|
|
*/
|
|
E get current {
|
|
return list[currentIndex.value];
|
|
}
|
|
|
|
/**
|
|
* Returns the previous section from the sections, given the current
|
|
* position. Returns the front section if we are already at the front of
|
|
* the list.
|
|
*/
|
|
E previous() {
|
|
if (currentIndex.value > 0) {
|
|
currentIndex.value -= 1;
|
|
}
|
|
return list[currentIndex.value];
|
|
}
|
|
|
|
/**
|
|
* Move the iterator pointer over so that it points to a given list item.
|
|
*/
|
|
void jumpToValue(E val) {
|
|
for (int i = 0; i < list.length; i++) {
|
|
if (identical(list[i], val)) {
|
|
currentIndex.value = i;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|