mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
28 lines
929 B
C++
28 lines
929 B
C++
#ifndef SHARED_FUNCTION_GRAPH_VIEW_H
|
|
#define SHARED_FUNCTION_GRAPH_VIEW_H
|
|
|
|
#include <escher.h>
|
|
#include "curve_view.h"
|
|
#include "../constant.h"
|
|
#include "interactive_curve_view_range.h"
|
|
|
|
namespace Shared {
|
|
|
|
class FunctionGraphView : public CurveView {
|
|
public:
|
|
FunctionGraphView(InteractiveCurveViewRange * graphRange, CurveViewCursor * cursor,
|
|
BannerView * bannerView, View * cursorView);
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
void setContext(Poincare::Context * context);
|
|
Poincare::Context * context() const;
|
|
private:
|
|
char * label(Axis axis, int index) const override;
|
|
char m_xLabels[k_maxNumberOfXLabels][Poincare::PrintFloat::bufferSizeForFloatsWithPrecision(Constant::ShortNumberOfSignificantDigits)];
|
|
char m_yLabels[k_maxNumberOfYLabels][Poincare::PrintFloat::bufferSizeForFloatsWithPrecision(Constant::ShortNumberOfSignificantDigits)];
|
|
Poincare::Context * m_context;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|