6#include "../../blueprint/components/auto_layout.hpp"
7#include "../../blueprint/components/auto_views.hpp"
8#include "../../blueprint/components/root_container.hpp"
9#include "../../blueprint/components/view_maximized.hpp"
10#include "../../blueprint/components/viewer_recommendation_hash.hpp"
11#include "../../collection.hpp"
12#include "../../component_batch.hpp"
13#include "../../component_column.hpp"
14#include "../../indicator_component.hpp"
15#include "../../result.hpp"
22namespace rerun::blueprint::archetypes {
53 static constexpr const char IndicatorComponentName[] =
54 "rerun.blueprint.components.ViewportBlueprintIndicator";
60 "rerun.blueprint.archetypes.ViewportBlueprint";
111 return std::move(*
this);
120 return std::move(*
this);
132 return std::move(*
this);
144 return std::move(*
this);
155 _past_viewer_recommendations
158 _past_viewer_recommendations,
162 return std::move(*
this);
186 template <
typename T>
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
A class for representing either a usable value, or an error.
Definition result.hpp:14
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
static Result< ComponentBatch > from_loggable(const rerun::Collection< T > &components, const ComponentDescriptor &descriptor=rerun::Loggable< T >::Descriptor)
Creates a new component batch from a collection of component instances.
Definition component_batch.hpp:46
A ComponentDescriptor fully describes the semantics of a column of data.
Definition component_descriptor.hpp:14
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Archetype: The top-level description of the viewport.
Definition viewport_blueprint.hpp:24
ViewportBlueprint with_past_viewer_recommendations(const Collection< rerun::blueprint::components::ViewerRecommendationHash > &_past_viewer_recommendations) &&
Hashes of all recommended views the viewer has already added and that should not be added again.
Definition viewport_blueprint.hpp:153
static constexpr auto Descriptor_root_container
ComponentDescriptor for the root_container field.
Definition viewport_blueprint.hpp:63
std::optional< ComponentBatch > auto_layout
Whether the viewport layout is determined automatically.
Definition viewport_blueprint.hpp:35
std::optional< ComponentBatch > past_viewer_recommendations
Hashes of all recommended views the viewer has already added and that should not be added again.
Definition viewport_blueprint.hpp:50
ViewportBlueprint with_auto_views(const rerun::blueprint::components::AutoViews &_auto_views) &&
Whether or not views should be created automatically.
Definition viewport_blueprint.hpp:140
std::optional< ComponentBatch > root_container
The layout of the views.
Definition viewport_blueprint.hpp:26
static constexpr auto Descriptor_past_viewer_recommendations
ComponentDescriptor for the past_viewer_recommendations field.
Definition viewport_blueprint.hpp:83
std::optional< ComponentBatch > auto_views
Whether or not views should be created automatically.
Definition viewport_blueprint.hpp:42
static ViewportBlueprint clear_fields()
Clear all the fields of a ViewportBlueprint.
static constexpr auto Descriptor_auto_views
ComponentDescriptor for the auto_views field.
Definition viewport_blueprint.hpp:78
ViewportBlueprint with_auto_layout(const rerun::blueprint::components::AutoLayout &_auto_layout) &&
Whether the viewport layout is determined automatically.
Definition viewport_blueprint.hpp:127
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
std::optional< ComponentBatch > maximized
Show one tab as maximized?
Definition viewport_blueprint.hpp:29
static ViewportBlueprint update_fields()
Update only some specific fields of a ViewportBlueprint.
Definition viewport_blueprint.hpp:97
static constexpr auto Descriptor_auto_layout
ComponentDescriptor for the auto_layout field.
Definition viewport_blueprint.hpp:73
ViewportBlueprint with_maximized(const rerun::blueprint::components::ViewMaximized &_maximized) &&
Show one tab as maximized?
Definition viewport_blueprint.hpp:115
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition viewport_blueprint.hpp:59
ViewportBlueprint with_root_container(const rerun::blueprint::components::RootContainer &_root_container) &&
The layout of the views.
Definition viewport_blueprint.hpp:105
static constexpr auto Descriptor_maximized
ComponentDescriptor for the maximized field.
Definition viewport_blueprint.hpp:68
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
Component: Whether the viewport layout is determined automatically.
Definition auto_layout.hpp:15
Component: Whether or not views should be created automatically.
Definition auto_views.hpp:15
Component: The container that sits at the root of a viewport.
Definition root_container.hpp:16
Component: Whether a view is maximized.
Definition view_maximized.hpp:16
Indicator component used by archetypes when converting them to component lists.
Definition indicator_component.hpp:32