Files
Upsilon/escher/src/list_view_data_source.cpp
Émilie Feral 2e16365100 [escher] Reorganize all cells'name and factorize their layouts
Change-Id: I69900ee98ff6a6868f96d70a0e335a589ef16c3f
2017-02-20 10:54:02 +01:00

29 lines
625 B
C++

#include <escher/list_view_data_source.h>
KDCoordinate ListViewDataSource::cellWidth() {
return 0;
}
KDCoordinate ListViewDataSource::columnWidth(int i) {
return cellWidth();
}
int ListViewDataSource::numberOfColumns() {
return 1;
}
void ListViewDataSource::willDisplayCellAtLocation(HighlightCell * cell, int x, int y) {
willDisplayCellForIndex(cell, y);
}
void ListViewDataSource::willDisplayCellForIndex(HighlightCell * cell, int index) {
}
KDCoordinate ListViewDataSource::cumulatedWidthFromIndex(int i) {
return 0;
}
int ListViewDataSource::indexFromCumulatedWidth(KDCoordinate offsetX) {
return 0;
}