Files
Upsilon/apps/graph/list/function_name_view.h
Émilie Feral 96a9ac3a9c [apps/graph] Wrap in namespace Graph
Change-Id: I08b37438f42749ff86e105770cd5aa566f84a237
2016-10-14 11:47:19 +02:00

23 lines
487 B
C++

#ifndef GRAPH_FUNCTION_NAME_VIEW_H
#define GRAPH_FUNCTION_NAME_VIEW_H
#include <escher.h>
#include "function_cell.h"
namespace Graph {
class FunctionNameView : public FunctionCell {
public:
FunctionNameView();
void drawRect(KDContext * ctx, KDRect rect) const override;
private:
constexpr static KDCoordinate k_colorIndicatorThickness = 2;
constexpr static KDCoordinate k_separatorThickness = 1;
constexpr static KDColor k_separatorColor = KDColor(0xEFF2F4);
};
}
#endif