mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 09:17:23 +01:00
22 lines
640 B
C++
22 lines
640 B
C++
#ifndef GRAPH_GRAPH_CONTROLLER_HELPER_H
|
|
#define GRAPH_GRAPH_CONTROLLER_HELPER_H
|
|
|
|
#include "banner_view.h"
|
|
#include "../../shared/curve_view_cursor.h"
|
|
#include "../../shared/interactive_curve_view_range.h"
|
|
|
|
namespace Graph {
|
|
|
|
class App;
|
|
|
|
class GraphControllerHelper {
|
|
protected:
|
|
bool privateMoveCursorHorizontally(Shared::CurveViewCursor * cursor, int direction, Shared::InteractiveCurveViewRange * range, int numberOfStepsInGradUnit, Ion::Storage::Record record);
|
|
void reloadDerivativeInBannerViewForCursorOnFunction(Shared::CurveViewCursor * cursor, Ion::Storage::Record record);
|
|
virtual BannerView * bannerView() = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|