mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-22 23:30:37 +01:00
19 lines
317 B
C++
19 lines
317 B
C++
#ifndef GRAPH_VALUE_CELL_H
|
|
#define GRAPH_VALUE_CELL_H
|
|
|
|
#include <escher.h>
|
|
#include "../even_odd_cell.h"
|
|
|
|
class ValueCell : public EvenOddCell {
|
|
public:
|
|
ValueCell();
|
|
void setFloat(float f);
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
|
|
protected:
|
|
float m_float;
|
|
char m_buffer[14];
|
|
};
|
|
|
|
#endif
|