class ViewDescriptor
Defined at line 372 of file fidling/gen/sdk/fidl/fuchsia.ui.observation.geometry/fuchsia.ui.observation.geometry/cpp/fidl/fuchsia.ui.observation.geometry/cpp/natural_types.h
Data for a particular view: identifier, position, and children.
Public Methods
void ViewDescriptor ()
Defined at line 378 of file fidling/gen/sdk/fidl/fuchsia.ui.observation.geometry/fuchsia.ui.observation.geometry/cpp/fidl/fuchsia.ui.observation.geometry/cpp/natural_types.h
void ViewDescriptor (ViewDescriptor && )
Defined at line 379 of file fidling/gen/sdk/fidl/fuchsia.ui.observation.geometry/fuchsia.ui.observation.geometry/cpp/fidl/fuchsia.ui.observation.geometry/cpp/natural_types.h
void ViewDescriptor (Storage_ storage)
void ViewDescriptor (const ViewDescriptor & other)
ViewDescriptor & operator= (const ViewDescriptor & other)
bool operator== (const ViewDescriptor & other)
bool operator!= (const ViewDescriptor & other)
bool IsEmpty ()
const std::optional<uint64_t> & view_ref_koid ()
This view's fuchsia.ui.views.ViewRef koid.
::std::optional<uint64_t> & view_ref_koid ()
This view's fuchsia.ui.views.ViewRef koid.
ViewDescriptor & view_ref_koid (std::optional<uint64_t> value)
This view's fuchsia.ui.views.ViewRef koid.
const std::optional< ::fuchsia_ui_observation_geometry::Layout> & layout ()
This view's origin, logical size, pixel scale, and inset data, in the view's
own coordinate system.
Limitations. Data consistency between server and client depend on the
specific graphics API. Some APIs provide weak consistency, where the
server-side data (this data) and the client-side data (in the view's UI
client) are allowed to diverge for some time.
::std::optional< ::fuchsia_ui_observation_geometry::Layout> & layout ()
This view's origin, logical size, pixel scale, and inset data, in the view's
own coordinate system.
Limitations. Data consistency between server and client depend on the
specific graphics API. Some APIs provide weak consistency, where the
server-side data (this data) and the client-side data (in the view's UI
client) are allowed to diverge for some time.
ViewDescriptor & layout (std::optional< ::fuchsia_ui_observation_geometry::Layout> value)
This view's origin, logical size, pixel scale, and inset data, in the view's
own coordinate system.
Limitations. Data consistency between server and client depend on the
specific graphics API. Some APIs provide weak consistency, where the
server-side data (this data) and the client-side data (in the view's UI
client) are allowed to diverge for some time.
const std::optional< ::fuchsia_ui_observation_geometry::RotatableExtent> & extent_in_context ()
This view's extent, in the context view's coordinate system.
It does NOT describe the child view's logical size.
This describes the "ground truth" position of this view within the context
view, regardless of view tree depth, or specific layout state of
intermediate views.
Limitations. It does NOT describe whether the view is "visible" (e.g.,
whether the view has opacity applied, or is not occluded by another view),
and it does NOT describe whether the view is "hittable" (e.g., whether the
view is positioned fully inside of every ancestor view's bounding box).
::std::optional< ::fuchsia_ui_observation_geometry::RotatableExtent> & extent_in_context ()
This view's extent, in the context view's coordinate system.
It does NOT describe the child view's logical size.
This describes the "ground truth" position of this view within the context
view, regardless of view tree depth, or specific layout state of
intermediate views.
Limitations. It does NOT describe whether the view is "visible" (e.g.,
whether the view has opacity applied, or is not occluded by another view),
and it does NOT describe whether the view is "hittable" (e.g., whether the
view is positioned fully inside of every ancestor view's bounding box).
ViewDescriptor & extent_in_context (std::optional< ::fuchsia_ui_observation_geometry::RotatableExtent> value)
This view's extent, in the context view's coordinate system.
It does NOT describe the child view's logical size.
This describes the "ground truth" position of this view within the context
view, regardless of view tree depth, or specific layout state of
intermediate views.
Limitations. It does NOT describe whether the view is "visible" (e.g.,
whether the view has opacity applied, or is not occluded by another view),
and it does NOT describe whether the view is "hittable" (e.g., whether the
view is positioned fully inside of every ancestor view's bounding box).
const std::optional< ::fuchsia_ui_observation_geometry::RotatableExtent> & extent_in_parent ()
The space occupied within the parent view's coordinate system.
It does NOT describe the child view's logical size.
::std::optional< ::fuchsia_ui_observation_geometry::RotatableExtent> & extent_in_parent ()
The space occupied within the parent view's coordinate system.
It does NOT describe the child view's logical size.
ViewDescriptor & extent_in_parent (std::optional< ::fuchsia_ui_observation_geometry::RotatableExtent> value)
The space occupied within the parent view's coordinate system.
It does NOT describe the child view's logical size.
const std::optional< ::std::vector<uint32_t>> & children ()
The list of child views, in the order known to the graphics API.
Each integer in this vector refers to the child's position in the
|views| or |incomplete| vector that the parent is in.
The identity, position, and size of each child view. Position and size are
described by the extent of the child view within the parent view's
coordinate system.
The view tree topology is reliable. A child placed here is equivalent to
the parent view receiving a "child view connected" signal.
Limitations. A child's view boundary is described in the parent view's
coordinate system, which is subject to weak consistency (depending on the
graphics API). That is, when a parent view has a change in size or metrics,
the context view may observe a "jump" as the parent view incorporates those
data. In such cases, a new ViewTreeSnapshot is issued to describe the
change in position, relative to the context view.
::std::optional< ::std::vector<uint32_t>> & children ()
The list of child views, in the order known to the graphics API.
Each integer in this vector refers to the child's position in the
|views| or |incomplete| vector that the parent is in.
The identity, position, and size of each child view. Position and size are
described by the extent of the child view within the parent view's
coordinate system.
The view tree topology is reliable. A child placed here is equivalent to
the parent view receiving a "child view connected" signal.
Limitations. A child's view boundary is described in the parent view's
coordinate system, which is subject to weak consistency (depending on the
graphics API). That is, when a parent view has a change in size or metrics,
the context view may observe a "jump" as the parent view incorporates those
data. In such cases, a new ViewTreeSnapshot is issued to describe the
change in position, relative to the context view.
ViewDescriptor & children (std::optional< ::std::vector<uint32_t>> value)
The list of child views, in the order known to the graphics API.
Each integer in this vector refers to the child's position in the
|views| or |incomplete| vector that the parent is in.
The identity, position, and size of each child view. Position and size are
described by the extent of the child view within the parent view's
coordinate system.
The view tree topology is reliable. A child placed here is equivalent to
the parent view receiving a "child view connected" signal.
Limitations. A child's view boundary is described in the parent view's
coordinate system, which is subject to weak consistency (depending on the
graphics API). That is, when a parent view has a change in size or metrics,
the context view may observe a "jump" as the parent view incorporates those
data. In such cases, a new ViewTreeSnapshot is issued to describe the
change in position, relative to the context view.
void ViewDescriptor (::fidl::internal::DefaultConstructPossiblyInvalidObjectTag )
ViewDescriptor & operator= (ViewDescriptor && )
Defined at line 380 of file fidling/gen/sdk/fidl/fuchsia.ui.observation.geometry/fuchsia.ui.observation.geometry/cpp/fidl/fuchsia.ui.observation.geometry/cpp/natural_types.h
Friends
class MemberVisitor
class NaturalTableCodingTraits