mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
table view data source & selectable table view delegate Change-Id: I90fbd61e271db3754c13bd0069b95c2026de6814
19 lines
607 B
C++
19 lines
607 B
C++
#ifndef CALCULATION_SELECTABLE_TABLE_VIEW_H
|
|
#define CALCULATION_SELECTABLE_TABLE_VIEW_H
|
|
|
|
#include <escher.h>
|
|
#include "history_view_cell.h"
|
|
namespace Calculation {
|
|
|
|
class CalculationSelectableTableView : public ::SelectableTableView {
|
|
public:
|
|
CalculationSelectableTableView(Responder * parentResponder, TableViewDataSource * dataSource,
|
|
SelectableTableViewDataSource * selectionDataSource, SelectableTableViewDelegate * delegate = nullptr);
|
|
void scrollToCell(int i, int j) override;
|
|
void scrollToSubviewOfTypeOfCellAtLocation(HistoryViewCell::SubviewType subviewType, int i, int j);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|