Files
Upsilon/apps/graph/list/function_name_view.h
Émilie Feral 47a02344c2 [apps/graph/list] Modify the controller of functions to use a table view instead of a list view
Change-Id: I3767de865ef07761eb80310cfe80d6eb60821bb0
2016-09-30 17:12:32 +02:00

18 lines
334 B
C++

#ifndef GRAPH_FUNCTION_NAME_VIEW_H
#define GRAPH_FUNCTION_NAME_VIEW_H
#include <escher.h>
#include "function_cell.h"
class FunctionNameView : public FunctionCell {
public:
FunctionNameView();
void drawRect(KDContext * ctx, KDRect rect) const override;
private:
constexpr static int k_colorIndicatorThickness = 4;
};
#endif