[escher] Rework of timers and bigger text in toolboxes

This commit is contained in:
Laury
2022-06-24 22:35:36 +02:00
parent 391fd5e243
commit 0b2a581177
74 changed files with 407 additions and 208 deletions

View File

@@ -37,7 +37,7 @@ int ListBookController::reusableCellCount() const {
}
void ListBookController::willDisplayCellForIndex(HighlightCell * cell, int index) {
MessageTableCell* myTextCell = static_cast<MessageTableCell*>(cell);
MessageTableCell<> * myTextCell = static_cast<MessageTableCell<> *>(cell);
MessageTextView* textView = static_cast<MessageTextView*>(myTextCell->labelView());
textView->setText(m_files[index].name);
myTextCell->setMessageFont(KDFont::LargeFont); //TODO set cell font at building ?

View File

@@ -34,7 +34,7 @@ private:
int m_txtFilesNumber;
int m_urtFilesNumber;
static const int k_cellsNumber = 6;
MessageTableCellWithChevron m_cells[k_cellsNumber];
MessageTableCellWithChevron<> m_cells[k_cellsNumber];
ReadBookController m_readBookController;
};