mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
24 lines
655 B
C++
24 lines
655 B
C++
#ifndef SETTINGS_CONTRIBUTORS_CONTROLLER_H
|
|
#define SETTINGS_CONTRIBUTORS_CONTROLLER_H
|
|
|
|
#include "generic_sub_controller.h"
|
|
#include <escher.h>
|
|
|
|
namespace Settings {
|
|
|
|
class ContributorsController : public GenericSubController {
|
|
public:
|
|
ContributorsController(Responder * parentResponder);
|
|
bool handleEvent(Ion::Events::Event event) override;
|
|
HighlightCell * reusableCell(int index, int type) override;
|
|
int reusableCellCount(int type) override;
|
|
void willDisplayCellForIndex(HighlightCell * cell, int index) override;
|
|
private:
|
|
constexpr static int k_totalNumberOfCell = 7;
|
|
MessageTableCellWithBuffer m_cells[k_totalNumberOfCell];
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|