Plot Tooltips on hover.
More...
Go to the source code of this file.
|
bool | NAV::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.
|
|
void | NAV::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.
|
|
◆ ShowPlotTooltip()
bool NAV::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.
- Parameters
-
[in,out] | tooltips | Tooltip vector to show |
[in] | plotItemIdx | Plot item index |
[in] | plotName | Name of the plot item |
[in] | axis | Axis to check for |
[in] | xData | X axis data |
[in] | yData | Y axis data |
[in] | otherHoverTooltipsShown | Whether other hover tooltips are already shown |
[in] | showTooltipCallback | Called inside the tooltip. Argument is the data index for which the tooltip is shown |
- Returns
- True if a tooltip is shown
◆ ShowPlotTooltipWindows()
void NAV::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.
- Parameters
-
[in,out] | tooltips | Tooltip vector to show |
[in] | plotItemIdx | Plot item index |
[in] | plotName | Name of the plot item |
[in] | uid | Unique id for the window |
[in] | parentWindows | Parent windows to stay on top of |
[in] | getInsTime | Callback to get the time associated with the tooltip |
[in] | showTooltipCallback | Called inside the tooltip. Argument is the data index and the unique id for which the tooltip is shown |