[escher] Make table view accept only table view cell

Change-Id: I393375d0887e692a85747198d5b42d26d207dc83
This commit is contained in:
Émilie Feral
2016-10-24 18:17:14 +02:00
parent 9ffb74fcca
commit f809d089d6
42 changed files with 132 additions and 121 deletions

View File

@@ -21,9 +21,9 @@ public:
virtual int numberOfColumns() override;
virtual KDCoordinate cellHeight() override;
virtual KDCoordinate cellWidth() override;
virtual View * reusableCell(int index) override;
virtual TableViewCell * reusableCell(int index) override;
virtual int reusableCellCount() override;
void willDisplayCellAtLocation(View * cell, int i, int j) override;
void willDisplayCellAtLocation(TableViewCell * cell, int i, int j) override;
private:
int numberOfIcons();
void setActiveIndex(int index);