Rerun C++ SDK
Loading...
Searching...
No Matches
tooltip_mode.hpp
1// DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/cpp/mod.rs
2// Based on "crates/build/re_type_definitions/rerun/blueprint/components/tooltip_mode.def.rs".
3
4#pragma once
5
6#include "../../result.hpp"
7
8#include <cstdint>
9#include <memory>
10
11namespace arrow {
12 /// \private
13 template <typename T>
14 class NumericBuilder;
15
16 class Array;
17 class DataType;
18 class UInt8Type;
19 using UInt8Builder = NumericBuilder<UInt8Type>;
20} // namespace arrow
21
22namespace rerun::blueprint::components {
23 /// **Component**: Controls how the plot tooltip behaves when hovering over data.
24 ///
25 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
26 ///
27 enum class TooltipMode : uint8_t {
28
29 /// Show only the nearest data point to the cursor.
30 Nearest = 1,
31
32 /// Show values of all visible series at the hovered time.
33 All = 2,
34 };
35} // namespace rerun::blueprint::components
36
37namespace rerun {
38 template <typename T>
39 struct Loggable;
40
41 /// \private
42 template <>
43 struct Loggable<blueprint::components::TooltipMode> {
44 static constexpr std::string_view ComponentType = "rerun.blueprint.components.TooltipMode";
45
46 /// Returns the arrow data type this type corresponds to.
47 static const std::shared_ptr<arrow::DataType>& arrow_data_type();
48
49 /// Serializes an array of `rerun::blueprint:: components::TooltipMode` into an arrow array.
50 static Result<std::shared_ptr<arrow::Array>> to_arrow(
51 const blueprint::components::TooltipMode* instances, size_t num_instances
52 );
53
54 /// Fills an arrow array builder with an array of this type.
55 static rerun::Error fill_arrow_array_builder(
56 arrow::UInt8Builder* builder, const blueprint::components::TooltipMode* elements,
57 size_t num_elements
58 );
59 };
60} // namespace rerun
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:103
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:26