mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 14:50:44 +01:00
30 lines
1.0 KiB
C++
30 lines
1.0 KiB
C++
#ifndef GRAPH_GRAPH_VIEW_H
|
|
#define GRAPH_GRAPH_VIEW_H
|
|
|
|
#include "../../shared/storage_function_graph_view.h"
|
|
#include "../storage_cartesian_function_store.h"
|
|
|
|
namespace Graph {
|
|
|
|
class GraphView : public Shared::StorageFunctionGraphView {
|
|
public:
|
|
|
|
GraphView(StorageCartesianFunctionStore * functionStore, Shared::InteractiveCurveViewRange * graphRange,
|
|
Shared::CurveViewCursor * cursor, Shared::BannerView * bannerView, View * cursorView);
|
|
void reload() override;
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
void drawTangent(bool tangent) { m_tangent = tangent; }
|
|
/* We override setAreaHighlightColor to make it reload nothing as the
|
|
* highlightColor and the non-highlightColor are identical in the graph view
|
|
* of the application graph. We thereby avoid to uselessly reload some part
|
|
* of the graph where the area under the curve is colored. */
|
|
void setAreaHighlightColor(bool highlightColor) override {};
|
|
private:
|
|
StorageCartesianFunctionStore * m_functionStore;
|
|
bool m_tangent;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|