0.3.0
Loading...
Searching...
No Matches
PlotItemStyle.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include <string>
17#include <imgui.h>
18#include <implot.h>
19
20#include "util/Json.hpp"
24
25namespace NAV
26{
27
30{
32 enum class LineType : uint8_t
33 {
34 Scatter,
35 Line,
36 };
37
39 std::string legendName;
41 std::string legendNameGui;
45 ImVec4 color = IMPLOT_AUTO_COL;
47 std::pair<ColormapMaskType, int64_t> colormapMask = { ColormapMaskType::None, -1 };
51 float thickness = 1.0F;
53 std::optional<ImPlotLineFlags> lineFlags;
54
56 int stride = 0;
57
59 std::pair<ColormapMaskType, int64_t> markerColormapMask = { ColormapMaskType::None, -1 };
63 bool markers = false;
65 ImPlotMarker markerStyle = ImPlotMarker_Cross;
67 float markerSize = 1.0F;
69 float markerWeight = 1.0F;
71 ImVec4 markerFillColor = IMPLOT_AUTO_COL;
73 ImVec4 markerOutlineColor = IMPLOT_AUTO_COL;
74
76 bool errorBoundsEnabled = false;
80 float errorBoundsAlpha = 0.25F;
85
87 bool eventsEnabled = false;
89 ImPlotMarker eventMarkerStyle = ImPlotMarker_Cross;
91 float eventMarkerSize = 6.0F;
93 float eventMarkerWeight = 2.0F;
95 ImVec4 eventMarkerFillColor = ImVec4(1.0, 0.0, 0.0, 1.0);
97 ImVec4 eventMarkerOutlineColor = ImVec4(1.0, 0.0, 0.0, 1.0);
100
103 {
104 bool changed = false;
106 };
107
122 const char* displayTitle,
123 int plotDataBufferSize,
124 int plotElementIdx,
125 const char* nameId,
126 ImPlotLineFlags plotLineFlags = ImPlotLineFlags_NoClip | ImPlotLineFlags_SkipNaN,
127 ScrollingBuffer<ImU32>* colormapMaskColors = nullptr,
128 ScrollingBuffer<ImU32>* markerColormapMaskColors = nullptr,
129 const std::function<bool(size_t&, const char*)>& ShowDataReferenceChooser = nullptr,
130 ScrollingBuffer<double>* eventMarker = nullptr,
131 std::vector<std::tuple<double, double, PlotEventTooltip>>* eventTooltips = nullptr);
132
143 void plotData(const char* plotName,
144 const ScrollingBuffer<double>& xData,
145 const ScrollingBuffer<double>& yData,
146 int plotElementIdx,
147 int defaultStride = 1,
148 ImPlotLineFlags plotLineFlags = ImPlotLineFlags_NoClip | ImPlotLineFlags_SkipNaN,
149 ScrollingBuffer<ImU32>* colormapMaskColors = nullptr,
150 ScrollingBuffer<ImU32>* markerColormapMaskColors = nullptr,
151 const std::array<ScrollingBuffer<double>, 2>* yErrorData = nullptr) const;
152};
153
157void to_json(json& j, const PlotItemStyle& style);
161void from_json(const json& j, PlotItemStyle& style);
162
163} // namespace NAV
Colormap.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Defines how to save certain datatypes to json.
Tooltips for a plot events.
A buffer which is overwriting itself from the start when full.
A buffer which is overwriting itself from the start when full.
Definition ScrollingBuffer.hpp:29
Legend popup return type.
Definition PlotItemStyle.hpp:103
bool changed
Some setting changed.
Definition PlotItemStyle.hpp:104
bool errorBoundsReCalcNeeded
Settings of the error bounds changed and needs to be recalculated.
Definition PlotItemStyle.hpp:105
Specifying the look of a certain line in the plot.
Definition PlotItemStyle.hpp:30
float eventMarkerSize
Size of the markers (makes the marker smaller/bigger)
Definition PlotItemStyle.hpp:91
float errorBoundsAlpha
Alpha value for the error bounds.
Definition PlotItemStyle.hpp:80
std::string legendNameGui
Legend name which gets changed in the gui.
Definition PlotItemStyle.hpp:41
float thickness
Line thickness.
Definition PlotItemStyle.hpp:51
ImVec4 eventMarkerFillColor
Fill color for markers.
Definition PlotItemStyle.hpp:95
bool eventsEnabled
Show events on this data.
Definition PlotItemStyle.hpp:87
void plotData(const char *plotName, const ScrollingBuffer< double > &xData, const ScrollingBuffer< double > &yData, int plotElementIdx, int defaultStride=1, ImPlotLineFlags plotLineFlags=ImPlotLineFlags_NoClip|ImPlotLineFlags_SkipNaN, ScrollingBuffer< ImU32 > *colormapMaskColors=nullptr, ScrollingBuffer< ImU32 > *markerColormapMaskColors=nullptr, const std::array< ScrollingBuffer< double >, 2 > *yErrorData=nullptr) const
Plots the data with the style.
std::string eventTooltipFilterRegex
Tooltip search regex.
Definition PlotItemStyle.hpp:99
ImVec4 color
Line Color.
Definition PlotItemStyle.hpp:45
ImPlotMarker markerStyle
Style of the marker to display.
Definition PlotItemStyle.hpp:65
float markerWeight
Weight of the markers (increases thickness of marker lines)
Definition PlotItemStyle.hpp:69
int stride
Amount of points to skip for plotting.
Definition PlotItemStyle.hpp:56
std::optional< ImPlotLineFlags > lineFlags
Line Flags (overrides the plot selection)
Definition PlotItemStyle.hpp:53
float markerSize
Size of the markers (makes the marker smaller/bigger)
Definition PlotItemStyle.hpp:67
size_t markerColormapMaskDataCmpIdx
Index of the plot data to compare for the color.
Definition PlotItemStyle.hpp:61
std::string errorBoundsModifierExpression
Expression to modify the error bounds with.
Definition PlotItemStyle.hpp:82
ImVec4 eventMarkerOutlineColor
Outline/Border color for markers.
Definition PlotItemStyle.hpp:97
LineType
Possible line types.
Definition PlotItemStyle.hpp:33
@ Scatter
Scatter plot (only markers)
ImVec4 markerFillColor
Fill color for markers.
Definition PlotItemStyle.hpp:71
LegendPopupReturn showLegendPopup(const char *id, const char *displayTitle, int plotDataBufferSize, int plotElementIdx, const char *nameId, ImPlotLineFlags plotLineFlags=ImPlotLineFlags_NoClip|ImPlotLineFlags_SkipNaN, ScrollingBuffer< ImU32 > *colormapMaskColors=nullptr, ScrollingBuffer< ImU32 > *markerColormapMaskColors=nullptr, const std::function< bool(size_t &, const char *)> &ShowDataReferenceChooser=nullptr, ScrollingBuffer< double > *eventMarker=nullptr, std::vector< std::tuple< double, double, PlotEventTooltip > > *eventTooltips=nullptr)
Shows a legend popup for plot items.
std::string errorBoundsModifierExpressionTemp
Expression to modify the error bounds with (temporary GUI variable, till it is a valid expression)
Definition PlotItemStyle.hpp:84
size_t errorBoundsDataIdx
Index of the plot data to use for error bounds.
Definition PlotItemStyle.hpp:78
float eventMarkerWeight
Weight of the markers (increases thickness of marker lines)
Definition PlotItemStyle.hpp:93
ImPlotMarker eventMarkerStyle
Style of the marker to display.
Definition PlotItemStyle.hpp:89
ImVec4 markerOutlineColor
Outline/Border color for markers.
Definition PlotItemStyle.hpp:73
bool errorBoundsEnabled
Wether to plot the error bounds.
Definition PlotItemStyle.hpp:76
size_t colormapMaskDataCmpIdx
Index of the plot data to compare for the color.
Definition PlotItemStyle.hpp:49
LineType lineType
Line type.
Definition PlotItemStyle.hpp:43
std::pair< ColormapMaskType, int64_t > markerColormapMask
Colormap mask (pair: type and id)
Definition PlotItemStyle.hpp:59
bool markers
Display markers for the line plot (no effect for scatter type)
Definition PlotItemStyle.hpp:63
std::string legendName
Display name in the legend (if not set falls back to PlotData::displayName)
Definition PlotItemStyle.hpp:39
std::pair< ColormapMaskType, int64_t > colormapMask
Colormap mask (pair: type and id)
Definition PlotItemStyle.hpp:47