Tizen Native API
5.5
|
Actor is the primary object for interaction in DALi applications.
Classes | |
class | Dali::Actor |
Actor is the primary object with which Dali applications interact. More... | |
class | Dali::CameraActor |
CameraActor controls a camera. More... | |
class | Dali::CustomActorImpl |
CustomActorImpl is an abstract base class for custom control implementations. More... | |
class | Dali::CustomActor |
CustomActor is a base class for custom UI controls. More... | |
class | Dali::Layer |
Layers provide a mechanism for overlaying groups of actors on top of each other. More... | |
Functions | |
void | Dali::UnparentAndReset (Actor &actor) |
Helper for discarding an actor handle. | |
Namespaces | |
namespace | Dali::Dimension |
Enumeration for layout Dimensions. | |
namespace | Dali::ResizePolicy |
Enumeration for size negotiation resize policies. | |
namespace | Dali::SizeScalePolicy |
Enumeration for policies to determine how an actor should resize itself when having its size set in size negotiation. | |
namespace | Dali::HorizontalAlignment |
Enumeration for horizontal alignment types. | |
namespace | Dali::VerticalAlignment |
Enumeration for vertical alignment types. | |
namespace | Dali::ClippingMode |
Enumeration for ClippingMode describing how this Actor's children will be clipped against it. | |
namespace | Dali::LayoutDirection |
Enumeration for the direction of the layout. | |
namespace | Dali::Camera |
Enumeration for camera. | |
namespace | Dali::DrawMode |
DrawMode to determine how the Actor and its children will be drawn. | |
namespace | Dali::WrapMode |
WrapMode for textures. | |
Enumerations | |
enum | Dali::ColorMode |
Enumeration for Actor color mode. More... | |
Typedefs | |
typedef Rect< float > | Dali::Padding |
Padding definition. | |
typedef IntrusivePtr < CustomActorImpl > | Dali::CustomActorImplPtr |
Pointer to Dali::CustomActorImpl object. | |
typedef Rect< int32_t > | Dali::ClippingBox |
Rectangle describing area on screen that a layer can draw to. |
typedef Rect<int32_t> Dali::ClippingBox |
Rectangle describing area on screen that a layer can draw to.
typedef IntrusivePtr<CustomActorImpl> Dali::CustomActorImplPtr |
Pointer to Dali::CustomActorImpl object.
typedef Rect<float> Dali::Padding |
Padding definition.
enum Dali::ColorMode |
Enumeration for Actor color mode.
USE_OWN_COLOR |
Actor will use its own color.
|
USE_PARENT_COLOR |
Actor will use its parent color.
|
USE_OWN_MULTIPLY_PARENT_COLOR |
Actor will blend its color with its parents color.
|
USE_OWN_MULTIPLY_PARENT_ALPHA |
Actor will blend its alpha with its parents alpha. This means when parent fades in or out child does as well. This is the default.
|
void Dali::UnparentAndReset | ( | Actor & | actor | ) |
Helper for discarding an actor handle.
If the handle is empty, this method does nothing. Otherwise Actor::Unparent() will be called, followed by Actor::Reset().
[in,out] | actor | A handle to an actor, or an empty handle |