mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 14:50:44 +01:00
21 lines
403 B
C++
21 lines
403 B
C++
#ifndef GRAPH_FUNCTION_CELL_H
|
|
#define GRAPH_FUNCTION_CELL_H
|
|
|
|
#include <escher.h>
|
|
#include "../function.h"
|
|
#include "../even_odd_cell.h"
|
|
|
|
class FunctionCell : public EvenOddCell {
|
|
public:
|
|
FunctionCell();
|
|
void setFunction(Graph::Function * f);
|
|
Graph::Function * function();
|
|
|
|
static constexpr KDColor k_desactiveTextColor = KDColor(0x646464);
|
|
|
|
protected:
|
|
Graph::Function * m_function;
|
|
};
|
|
|
|
#endif
|