Files
Upsilon/apps/graph/values/function_title_cell.h
Émilie Feral 5a6ffa412b [apps/graph/values] Add a class function title cell inheriting from
title cell

Change-Id: I2c88477a1508a102c7d469f35bef4a811cbc93b7
2016-10-18 09:50:21 +02:00

20 lines
397 B
C++

#ifndef GRAPH_FUNCTION_TITLE_CELL_H
#define GRAPH_FUNCTION_TITLE_CELL_H
#include <escher.h>
#include "title_cell.h"
namespace Graph {
class FunctionTitleCell : public TitleCell {
public:
void setColor(KDColor color);
void drawRect(KDContext * ctx, KDRect rect) const override;
private:
constexpr static KDCoordinate k_colorIndicatorThickness = 2;
KDColor m_functionColor;
};
}
#endif