[shared] Clean unused classes

This commit is contained in:
Émilie Feral
2019-03-11 17:19:06 +01:00
parent 58f9a59d6e
commit 3ce406fde1
39 changed files with 5 additions and 2600 deletions

View File

@@ -1,35 +0,0 @@
#ifndef SHARED_VALUES_FUNCTION_PARAM_CONTROLLER_H
#define SHARED_VALUES_FUNCTION_PARAM_CONTROLLER_H
#include <escher.h>
#include "function.h"
#include <apps/i18n.h>
namespace Shared {
class ValuesFunctionParameterController : public ViewController, public SimpleListViewDataSource, public SelectableTableViewDataSource {
public:
ValuesFunctionParameterController(char symbol);
View * view() override;
const char * title() override;
void didBecomeFirstResponder() override;
virtual int numberOfRows() override;
KDCoordinate cellHeight() override;
virtual HighlightCell * reusableCell(int index) override;
virtual int reusableCellCount() override;
virtual void setFunction(Function * function);
protected:
MessageTableCellWithChevron m_copyColumn;
SelectableTableView m_selectableTableView;
private:
constexpr static int k_maxNumberOfCharsInTitle = 16;
char m_pageTitle[k_maxNumberOfCharsInTitle];
Function * m_function;
char m_symbol;
};
}
#endif