0.3.0
Loading...
Searching...
No Matches
PlotTooltip.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 <cstddef>
17#include <optional>
18#include <functional>
19
20#include <imgui.h>
21#include <implot.h>
22
25
26namespace NAV
27{
28
31{
38
39 size_t plotItemIdx = 0;
40 size_t dataIdx = 0;
41 std::optional<ImVec2> startPos;
42};
43
54bool ShowPlotTooltip(std::vector<PlotTooltip>& tooltips,
55 size_t plotItemIdx,
56 const std::string& plotName,
57 ImAxis axis,
58 const ScrollingBuffer<double>& xData,
59 const ScrollingBuffer<double>& yData,
60 bool otherHoverTooltipsShown,
61 const std::function<void(size_t)>& showTooltipCallback);
62
71void ShowPlotTooltipWindows(std::vector<PlotTooltip>& tooltips,
72 size_t plotItemIdx,
73 const std::string& plotName,
74 const std::string& uid,
75 const std::vector<int*>& parentWindows,
76 const std::function<InsTime(size_t)>& getInsTime,
77 const std::function<void(size_t, const char*)>& showTooltipCallback);
78
79} // namespace NAV
The class is responsible for all time-related tasks.
void ShowPlotTooltipWindows(std::vector< PlotTooltip > &tooltips, size_t plotItemIdx, const std::string &plotName, const std::string &uid, const std::vector< int * > &parentWindows, const std::function< InsTime(size_t)> &getInsTime, const std::function< void(size_t, const char *)> &showTooltipCallback)
Shows all tooltip windows in the vector.
bool ShowPlotTooltip(std::vector< PlotTooltip > &tooltips, size_t plotItemIdx, const std::string &plotName, ImAxis axis, const ScrollingBuffer< double > &xData, const ScrollingBuffer< double > &yData, bool otherHoverTooltipsShown, const std::function< void(size_t)> &showTooltipCallback)
Shows a tooltip if the plot is hovered.
A buffer which is overwriting itself from the start when full.
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
A buffer which is overwriting itself from the start when full.
Definition ScrollingBuffer.hpp:29
Plot Tooltip windows to show.
Definition PlotTooltip.hpp:31
std::optional< ImVec2 > startPos
Initial start position of the tooltip window.
Definition PlotTooltip.hpp:41
PlotTooltip(size_t plotItemIdx, size_t dataIdx, const ImVec2 &startPos)
Constructor.
Definition PlotTooltip.hpp:36
size_t plotItemIdx
The plot item index the tooltip belongs to.
Definition PlotTooltip.hpp:39
size_t dataIdx
The data index the tooltip belongs to.
Definition PlotTooltip.hpp:40