1 #ifndef __DALI_INTERNAL_ACTOR_H__
2 #define __DALI_INTERNAL_ACTOR_H__
5 * Copyright (c) 2016 Samsung Electronics Co., Ltd.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
25 #include <dali/public-api/actors/actor.h>
26 #include <dali/public-api/common/vector-wrapper.h>
27 #include <dali/public-api/common/dali-common.h>
28 #include <dali/public-api/events/gesture.h>
29 #include <dali/public-api/math/viewport.h>
30 #include <dali/public-api/object/ref-object.h>
31 #include <dali/public-api/size-negotiation/relayout-container.h>
32 #include <dali/internal/event/actors/actor-declarations.h>
33 #include <dali/internal/event/common/object-impl.h>
34 #include <dali/internal/event/common/stage-def.h>
35 #include <dali/internal/event/rendering/renderer-impl.h>
36 #include <dali/internal/update/nodes/node-declarations.h>
50 class ActorGestureData;
55 typedef std::vector< ActorPtr > ActorContainer;
56 typedef ActorContainer::iterator ActorIter;
57 typedef ActorContainer::const_iterator ActorConstIter;
59 typedef std::vector< RendererPtr > RendererContainer;
60 typedef RendererContainer::iterator RendererIter;
63 * Actor is the primary object which Dali applications interact with.
64 * UI controls can be built by combining multiple actors.
65 * Multi-Touch events are received through signals emitted by the actor tree.
67 * An Actor is a proxy for a Node in the scene graph.
68 * When an Actor is added to the Stage, it creates a node and connects it to the scene graph.
69 * The scene-graph can be updated in a separate thread, so the connection is done using an asynchronous message.
70 * When a tree of Actors is detached from the Stage, a message is sent to destroy the associated nodes.
72 class Actor : public Object
77 * @brief Struct to hold an actor and a dimension
79 struct ActorDimensionPair
84 * @param[in] newActor The actor to assign
85 * @param[in] newDimension The dimension to assign
87 ActorDimensionPair( Actor* newActor, Dimension::Type newDimension )
89 dimension( newDimension )
94 * @brief Equality operator
96 * @param[in] lhs The left hand side argument
97 * @param[in] rhs The right hand side argument
99 bool operator== ( const ActorDimensionPair& rhs )
101 return ( actor == rhs.actor ) && ( dimension == rhs.dimension );
104 Actor* actor; ///< The actor to hold
105 Dimension::Type dimension; ///< The dimension to hold
108 typedef std::vector< ActorDimensionPair > ActorDimensionStack;
113 * Create a new actor.
114 * @return A smart-pointer to the newly allocated Actor.
116 static ActorPtr New();
119 * Retrieve the name of the actor.
122 const std::string& GetName() const;
125 * Set the name of the actor.
126 * @param[in] name The new name.
128 void SetName( const std::string& name );
131 * @copydoc Dali::Actor::GetId
133 unsigned int GetId() const;
138 * Query whether an actor is the root actor, which is owned by the Stage.
139 * @return True if the actor is a root actor.
147 * Query whether the actor is connected to the Stage.
149 bool OnStage() const;
152 * Query whether the actor has any renderers.
153 * @return True if the actor is renderable.
155 bool IsRenderable() const
157 // inlined as this is called a lot in hit testing
158 return mRenderers && !mRenderers->empty();
162 * Query whether the actor is of class Dali::Layer
163 * @return True if the actor is a layer.
167 // inlined as this is called a lot in hit testing
172 * Gets the layer in which the actor is present
173 * @return The layer, which will be uninitialized if the actor is off-stage.
175 Dali::Layer GetLayer();
178 * Adds a child Actor to this Actor.
179 * @pre The child actor is not the same as the parent actor.
180 * @pre The child actor does not already have a parent.
181 * @param [in] child The child.
182 * @post The child will be referenced by its parent.
184 void Add( Actor& child );
187 * Removes a child Actor from this Actor.
188 * @param [in] child The child.
189 * @post The child will be unreferenced.
191 void Remove( Actor& child );
194 * @copydoc Dali::Actor::Unparent
199 * Retrieve the number of children held by the actor.
200 * @return The number of children
202 unsigned int GetChildCount() const;
205 * @copydoc Dali::Actor::GetChildAt
207 ActorPtr GetChildAt( unsigned int index ) const;
210 * Retrieve a reference to Actor's children.
211 * @note Not for public use.
212 * @return A reference to the container of children.
214 ActorContainer& GetChildrenInternal()
220 * @copydoc Dali::Actor::FindChildByName
222 ActorPtr FindChildByName( const std::string& actorName );
225 * @copydoc Dali::Actor::FindChildById
227 ActorPtr FindChildById( const unsigned int id );
230 * Retrieve the parent of an Actor.
231 * @return The parent actor, or NULL if the Actor does not have a parent.
233 Actor* GetParent() const
239 * Sets the size of an actor.
240 * This does not interfere with the actors scale factor.
241 * @param [in] width The new width.
242 * @param [in] height The new height.
244 void SetSize( float width, float height );
247 * Sets the size of an actor.
248 * This does not interfere with the actors scale factor.
249 * @param [in] width The size of the actor along the x-axis.
250 * @param [in] height The size of the actor along the y-axis.
251 * @param [in] depth The size of the actor along the z-axis.
253 void SetSize( float width, float height, float depth );
256 * Sets the size of an actor.
257 * This does not interfere with the actors scale factor.
258 * @param [in] size The new size.
260 void SetSize( const Vector2& size );
263 * Sets the update size for an actor.
265 * @param[in] size The size to set.
267 void SetSizeInternal( const Vector2& size );
270 * Sets the size of an actor.
271 * This does not interfere with the actors scale factor.
272 * @param [in] size The new size.
274 void SetSize( const Vector3& size );
277 * Sets the update size for an actor.
279 * @param[in] size The size to set.
281 void SetSizeInternal( const Vector3& size );
284 * Set the width component of the Actor's size.
285 * @param [in] width The new width component.
287 void SetWidth( float width );
290 * Set the height component of the Actor's size.
291 * @param [in] height The new height component.
293 void SetHeight( float height );
296 * Set the depth component of the Actor's size.
297 * @param [in] depth The new depth component.
299 void SetDepth( float depth );
302 * Retrieve the Actor's size from event side.
303 * This size will be the size set or if animating then the target size.
304 * @return The Actor's size.
306 const Vector3& GetTargetSize() const;
309 * Retrieve the Actor's size from update side.
310 * This size will be the size set or animating but will be a frame behind.
311 * @return The Actor's size.
313 const Vector3& GetCurrentSize() const;
316 * Return the natural size of the actor
318 * @return The actor's natural size
320 virtual Vector3 GetNaturalSize() const;
323 * Set the origin of an actor, within its parent's area.
324 * This is expressed in 2D unit coordinates, such that (0.0, 0.0, 0.5) is the top-left corner of the parent,
325 * and (1.0, 1.0, 0.5) is the bottom-right corner.
326 * The default parent-origin is top-left (0.0, 0.0, 0.5).
327 * An actor position is the distance between this origin, and the actors anchor-point.
328 * @param [in] origin The new parent-origin.
330 void SetParentOrigin( const Vector3& origin );
333 * Set the x component of the parent-origin
334 * @param [in] x The new x value.
336 void SetParentOriginX( float x );
339 * Set the y component of the parent-origin
340 * @param [in] y The new y value.
342 void SetParentOriginY( float y );
345 * Set the z component of the parent-origin
346 * @param [in] z The new z value.
348 void SetParentOriginZ( float z );
351 * Retrieve the parent-origin of an actor.
352 * @return The parent-origin.
354 const Vector3& GetCurrentParentOrigin() const;
357 * Set the anchor-point of an actor. This is expressed in 2D unit coordinates, such that
358 * (0.0, 0.0, 0.5) is the top-left corner of the actor, and (1.0, 1.0, 0.5) is the bottom-right corner.
359 * The default anchor point is top-left (0.0, 0.0, 0.5).
360 * An actor position is the distance between its parent-origin, and this anchor-point.
361 * An actor's rotation is centered around its anchor-point.
362 * @param [in] anchorPoint The new anchor-point.
364 void SetAnchorPoint( const Vector3& anchorPoint );
367 * Set the x component of the anchor-point.
368 * @param [in] x The new x value.
370 void SetAnchorPointX( float x );
373 * Set the y component of the anchor-point.
374 * @param [in] y The new y value.
376 void SetAnchorPointY( float y );
379 * Set the z component of the anchor-point.
380 * @param [in] z The new z value.
382 void SetAnchorPointZ( float z );
385 * Retrieve the anchor-point of an actor.
386 * @return The anchor-point.
388 const Vector3& GetCurrentAnchorPoint() const;
391 * Sets the position of the Actor.
392 * The coordinates are relative to the Actor's parent.
393 * The Actor's z position will be set to 0.0f.
394 * @param [in] x The new x position
395 * @param [in] y The new y position
397 void SetPosition( float x, float y );
400 * Sets the position of the Actor.
401 * The coordinates are relative to the Actor's parent.
402 * @param [in] x The new x position
403 * @param [in] y The new y position
404 * @param [in] z The new z position
406 void SetPosition( float x, float y, float z );
409 * Sets the position of the Actor.
410 * The coordinates are relative to the Actor's parent.
411 * @param [in] position The new position.
413 void SetPosition( const Vector3& position );
416 * Set the position of an actor along the X-axis.
417 * @param [in] x The new x position
419 void SetX( float x );
422 * Set the position of an actor along the Y-axis.
423 * @param [in] y The new y position.
425 void SetY( float y );
428 * Set the position of an actor along the Z-axis.
429 * @param [in] z The new z position
431 void SetZ( float z );
434 * Translate an actor relative to its existing position.
435 * @param[in] distance The actor will move by this distance.
437 void TranslateBy( const Vector3& distance );
440 * Retrieve the position of the Actor.
441 * The coordinates are relative to the Actor's parent.
442 * @return the Actor's position.
444 const Vector3& GetCurrentPosition() const;
447 * Retrieve the target position of the Actor.
448 * The coordinates are relative to the Actor's parent.
449 * @return the Actor's position.
451 const Vector3& GetTargetPosition() const;
454 * @copydoc Dali::Actor::GetCurrentWorldPosition()
456 const Vector3& GetCurrentWorldPosition() const;
459 * @copydoc Dali::Actor::SetPositionInheritanceMode()
461 void SetPositionInheritanceMode( PositionInheritanceMode mode );
464 * @copydoc Dali::Actor::GetPositionInheritanceMode()
466 PositionInheritanceMode GetPositionInheritanceMode() const;
469 * @copydoc Dali::Actor::SetInheritPosition()
471 void SetInheritPosition( bool inherit );
474 * @copydoc Dali::Actor::IsPositionInherited()
476 bool IsPositionInherited() const;
479 * Sets the orientation of the Actor.
480 * @param [in] angleRadians The new orientation angle in radians.
481 * @param [in] axis The new axis of orientation.
483 void SetOrientation( const Radian& angleRadians, const Vector3& axis );
486 * Sets the orientation of the Actor.
487 * @param [in] orientation The new orientation.
489 void SetOrientation( const Quaternion& orientation );
492 * Rotate an actor around its existing rotation axis.
493 * @param[in] angleRadians The angle to the rotation to combine with the existing rotation.
494 * @param[in] axis The axis of the rotation to combine with the existing rotation.
496 void RotateBy( const Radian& angleRadians, const Vector3& axis );
499 * Apply a relative rotation to an actor.
500 * @param[in] relativeRotation The rotation to combine with the actors existing rotation.
502 void RotateBy( const Quaternion& relativeRotation );
505 * Retreive the Actor's orientation.
506 * @return the orientation.
508 const Quaternion& GetCurrentOrientation() const;
511 * Set whether a child actor inherits it's parent's orientation. Default is to inherit.
512 * Switching this off means that using SetOrientation() sets the actor's world orientation.
513 * @param[in] inherit - true if the actor should inherit orientation, false otherwise.
515 void SetInheritOrientation( bool inherit );
518 * Returns whether the actor inherit's it's parent's orientation.
519 * @return true if the actor inherit's it's parent orientation, false if it uses world orientation.
521 bool IsOrientationInherited() const;
524 * Sets the factor of the parents size used for the child actor.
525 * Note: Only used if ResizePolicy is ResizePolicy::SIZE_RELATIVE_TO_PARENT or ResizePolicy::SIZE_FIXED_OFFSET_FROM_PARENT.
526 * @param[in] factor The vector to multiply the parents size by to get the childs size.
528 void SetSizeModeFactor( const Vector3& factor );
531 * Gets the factor of the parents size used for the child actor.
532 * Note: Only used if ResizePolicy is ResizePolicy::SIZE_RELATIVE_TO_PARENT or ResizePolicy::SIZE_FIXED_OFFSET_FROM_PARENT.
533 * @return The vector being used to multiply the parents size by to get the childs size.
535 const Vector3& GetSizeModeFactor() const;
538 * @copydoc Dali::Actor::GetCurrentWorldOrientation()
540 const Quaternion& GetCurrentWorldOrientation() const;
543 * Sets a scale factor applied to an actor.
544 * @param [in] scale The scale factor applied on all axes.
546 void SetScale( float scale );
549 * Sets a scale factor applied to an actor.
550 * @param [in] scaleX The scale factor applied along the x-axis.
551 * @param [in] scaleY The scale factor applied along the y-axis.
552 * @param [in] scaleZ The scale factor applied along the z-axis.
554 void SetScale( float scaleX, float scaleY, float scaleZ );
557 * Sets a scale factor applied to an actor.
558 * @param [in] scale A vector representing the scale factor for each axis.
560 void SetScale( const Vector3& scale );
563 * Set the x component of the scale factor.
564 * @param [in] x The new x value.
566 void SetScaleX( float x );
569 * Set the y component of the scale factor.
570 * @param [in] y The new y value.
572 void SetScaleY( float y );
575 * Set the z component of the scale factor.
576 * @param [in] z The new z value.
578 void SetScaleZ( float z );
581 * Apply a relative scale to an actor.
582 * @param[in] relativeScale The scale to combine with the actors existing scale.
584 void ScaleBy( const Vector3& relativeScale );
587 * Retrieve the scale factor applied to an actor.
588 * @return A vector representing the scale factor for each axis.
590 const Vector3& GetCurrentScale() const;
593 * @copydoc Dali::Actor::GetCurrentWorldScale()
595 const Vector3& GetCurrentWorldScale() const;
598 * @copydoc Dali::Actor::SetInheritScale()
600 void SetInheritScale( bool inherit );
603 * @copydoc Dali::Actor::IsScaleInherited()
605 bool IsScaleInherited() const;
608 * @copydoc Dali::Actor::GetCurrentWorldMatrix()
610 Matrix GetCurrentWorldMatrix() const;
615 * Sets the visibility flag of an actor.
616 * @param [in] visible The new visibility flag.
618 void SetVisible( bool visible );
621 * Retrieve the visibility flag of an actor.
622 * @return The visibility flag.
624 bool IsVisible() const;
627 * Sets the opacity of an actor.
628 * @param [in] opacity The new opacity.
630 void SetOpacity( float opacity );
633 * Retrieve the actor's opacity.
634 * @return The actor's opacity.
636 float GetCurrentOpacity() const;
639 * Sets whether an actor should emit touch or hover signals; see SignalTouch() and SignalHover().
640 * An actor is sensitive by default, which means that as soon as an application connects to the SignalTouch(),
641 * the touch event signal will be emitted, and as soon as an application connects to the SignalHover(), the
642 * hover event signal will be emitted.
644 * If the application wishes to temporarily disable the touch or hover event signal emission, then they can do so by calling:
646 * actor.SetSensitive(false);
649 * Then, to re-enable the touch or hover event signal emission, the application should call:
651 * actor.SetSensitive(true);
654 * @see SignalTouch() and SignalHover().
655 * @note If an actor's sensitivity is set to false, then it's children will not emit a touch or hover event signal either.
656 * @param[in] sensitive true to enable emission of the touch or hover event signals, false otherwise.
658 void SetSensitive( bool sensitive )
660 mSensitive = sensitive;
664 * Query whether an actor emits touch or hover event signals.
665 * @see SetSensitive(bool)
666 * @return true, if emission of touch or hover event signals is enabled, false otherwise.
668 bool IsSensitive() const
674 * @copydoc Dali::Actor::SetDrawMode
676 void SetDrawMode( DrawMode::Type drawMode );
679 * @copydoc Dali::Actor::GetDrawMode
681 DrawMode::Type GetDrawMode() const;
684 * @copydoc Dali::Actor::IsOverlay
686 bool IsOverlay() const;
689 * Sets the actor's color. The final color of actor depends on its color mode.
690 * This final color is applied to the drawable elements of an actor.
691 * @param [in] color The new color.
693 void SetColor( const Vector4& color );
696 * Set the red component of the color.
697 * @param [in] red The new red component.
699 void SetColorRed( float red );
702 * Set the green component of the color.
703 * @param [in] green The new green component.
705 void SetColorGreen( float green );
708 * Set the blue component of the scale factor.
709 * @param [in] blue The new blue value.
711 void SetColorBlue( float blue );
714 * Retrieve the actor's color.
717 const Vector4& GetCurrentColor() const;
720 * Sets the actor's color mode.
721 * Color mode specifies whether Actor uses its own color or inherits its parent color
722 * @param [in] colorMode to use.
724 void SetColorMode( ColorMode colorMode );
727 * Returns the actor's color mode.
728 * @return currently used colorMode.
730 ColorMode GetColorMode() const;
733 * @copydoc Dali::Actor::GetCurrentWorldColor()
735 const Vector4& GetCurrentWorldColor() const;
738 * @copydoc Dali::Actor::GetHierarchyDepth()
740 int GetHierarchyDepth() const
744 return static_cast<int>(mDepth);
752 // Size negotiation virtual functions
755 * @brief Called after the size negotiation has been finished for this control.
757 * The control is expected to assign this given size to itself/its children.
759 * Should be overridden by derived classes if they need to layout
760 * actors differently after certain operations like add or remove
761 * actors, resize or after changing specific properties.
763 * Note! As this function is called from inside the size negotiation algorithm, you cannot
764 * call RequestRelayout (the call would just be ignored)
766 * @param[in] size The allocated size.
767 * @param[in,out] container The control should add actors to this container that it is not able
768 * to allocate a size for.
770 virtual void OnRelayout( const Vector2& size, RelayoutContainer& container )
775 * @brief Notification for deriving classes when the resize policy is set
777 * @param[in] policy The policy being set
778 * @param[in] dimension The dimension the policy is being set for
780 virtual void OnSetResizePolicy( ResizePolicy::Type policy, Dimension::Type dimension ) {}
783 * @brief Virtual method to notify deriving classes that relayout dependencies have been
784 * met and the size for this object is about to be calculated for the given dimension
786 * @param dimension The dimension that is about to be calculated
788 virtual void OnCalculateRelayoutSize( Dimension::Type dimension );
791 * @brief Virtual method to notify deriving classes that the size for a dimension
792 * has just been negotiated
794 * @param[in] size The new size for the given dimension
795 * @param[in] dimension The dimension that was just negotiated
797 virtual void OnLayoutNegotiated( float size, Dimension::Type dimension );
800 * @brief Determine if this actor is dependent on it's children for relayout
802 * @param dimension The dimension(s) to check for
803 * @return Return if the actor is dependent on it's children
805 virtual bool RelayoutDependentOnChildren( Dimension::Type dimension = Dimension::ALL_DIMENSIONS );
808 * @brief Determine if this actor is dependent on it's children for relayout.
810 * Called from deriving classes
812 * @param dimension The dimension(s) to check for
813 * @return Return if the actor is dependent on it's children
815 virtual bool RelayoutDependentOnChildrenBase( Dimension::Type dimension = Dimension::ALL_DIMENSIONS );
818 * @brief Calculate the size for a child
820 * @param[in] child The child actor to calculate the size for
821 * @param[in] dimension The dimension to calculate the size for. E.g. width or height.
822 * @return Return the calculated size for the given dimension
824 virtual float CalculateChildSize( const Dali::Actor& child, Dimension::Type dimension );
827 * @brief This method is called during size negotiation when a height is required for a given width.
829 * Derived classes should override this if they wish to customize the height returned.
831 * @param width to use.
832 * @return the height based on the width.
834 virtual float GetHeightForWidth( float width );
837 * @brief This method is called during size negotiation when a width is required for a given height.
839 * Derived classes should override this if they wish to customize the width returned.
841 * @param height to use.
842 * @return the width based on the width.
844 virtual float GetWidthForHeight( float height );
851 * @brief Called by the RelayoutController to negotiate the size of an actor.
853 * The size allocated by the the algorithm is passed in which the
854 * actor must adhere to. A container is passed in as well which
855 * the actor should populate with actors it has not / or does not
856 * need to handle in its size negotiation.
858 * @param[in] size The allocated size.
859 * @param[in,out] container The container that holds actors that are fed back into the
860 * RelayoutController algorithm.
862 void NegotiateSize( const Vector2& size, RelayoutContainer& container );
865 * @copydoc Dali::Actor::SetResizePolicy()
867 void SetResizePolicy( ResizePolicy::Type policy, Dimension::Type dimension = Dimension::ALL_DIMENSIONS );
870 * @copydoc Dali::Actor::GetResizePolicy()
872 ResizePolicy::Type GetResizePolicy( Dimension::Type dimension ) const;
875 * @copydoc Dali::Actor::SetSizeScalePolicy()
877 void SetSizeScalePolicy( SizeScalePolicy::Type policy );
880 * @copydoc Dali::Actor::GetSizeScalePolicy()
882 SizeScalePolicy::Type GetSizeScalePolicy() const;
885 * @copydoc Dali::Actor::SetDimensionDependency()
887 void SetDimensionDependency( Dimension::Type dimension, Dimension::Type dependency );
890 * @copydoc Dali::Actor::GetDimensionDependency()
892 Dimension::Type GetDimensionDependency( Dimension::Type dimension ) const;
895 * @brief Set the size negotiation relayout enabled on this actor
897 * @param[in] relayoutEnabled Boolean to enable or disable relayout
899 void SetRelayoutEnabled( bool relayoutEnabled );
902 * @brief Return if relayout is enabled
904 * @return Return if relayout is enabled or not for this actor
906 bool IsRelayoutEnabled() const;
909 * @brief Mark an actor as having it's layout dirty
911 * @param dirty Whether to mark actor as dirty or not
912 * @param dimension The dimension(s) to mark as dirty
914 void SetLayoutDirty( bool dirty, Dimension::Type dimension = Dimension::ALL_DIMENSIONS );
917 * @brief Return if any of an actor's dimensions are marked as dirty
919 * @param dimension The dimension(s) to check
920 * @return Return if any of the requested dimensions are dirty
922 bool IsLayoutDirty( Dimension::Type dimension = Dimension::ALL_DIMENSIONS ) const;
925 * @brief Returns if relayout is enabled and the actor is not dirty
927 * @return Return if it is possible to relayout the actor
929 bool RelayoutPossible( Dimension::Type dimension = Dimension::ALL_DIMENSIONS ) const;
932 * @brief Returns if relayout is enabled and the actor is dirty
934 * @return Return if it is required to relayout the actor
936 bool RelayoutRequired( Dimension::Type dimension = Dimension::ALL_DIMENSIONS ) const;
939 * @brief Request a relayout, which means performing a size negotiation on this actor, its parent and children (and potentially whole scene)
941 * This method is automatically called from OnStageConnection(), OnChildAdd(),
942 * OnChildRemove(), SetSizePolicy(), SetMinimumSize() and SetMaximumSize().
944 * This method can also be called from a derived class every time it needs a different size.
945 * At the end of event processing, the relayout process starts and
946 * all controls which requested Relayout will have their sizes (re)negotiated.
948 * @note RelayoutRequest() can be called multiple times; the size negotiation is still
949 * only performed once, i.e. there is no need to keep track of this in the calling side.
951 void RelayoutRequest( Dimension::Type dimension = Dimension::ALL_DIMENSIONS );
954 * @brief Determine if this actor is dependent on it's parent for relayout
956 * @param dimension The dimension(s) to check for
957 * @return Return if the actor is dependent on it's parent
959 bool RelayoutDependentOnParent( Dimension::Type dimension = Dimension::ALL_DIMENSIONS );
962 * @brief Determine if this actor has another dimension depedent on the specified one
964 * @param dimension The dimension to check for
965 * @param dependentDimension The dimension to check for dependency with
966 * @return Return if the actor is dependent on this dimension
968 bool RelayoutDependentOnDimension( Dimension::Type dimension, Dimension::Type dependentDimension );
971 * Negotiate sizes for a control in all dimensions
973 * @param[in] allocatedSize The size constraint that the control must respect
975 void NegotiateDimensions( const Vector2& allocatedSize );
978 * Negotiate size for a specific dimension
980 * The algorithm adopts a recursive dependency checking approach. Meaning, that wherever dependencies
981 * are found, e.g. an actor dependent on its parent, the dependency will be calculated first with NegotiatedDimension and
982 * LayoutDimensionNegotiated flags being filled in on the actor.
984 * @post All actors that exist in the dependency chain connected to the given actor will have had their NegotiatedDimensions
985 * calculated and set as well as the LayoutDimensionNegotiated flags.
987 * @param[in] dimension The dimension to negotiate on
988 * @param[in] allocatedSize The size constraint that the actor must respect
990 void NegotiateDimension( Dimension::Type dimension, const Vector2& allocatedSize, ActorDimensionStack& recursionStack );
993 * @brief Calculate the size of a dimension
995 * @param[in] dimension The dimension to calculate the size for
996 * @param[in] maximumSize The upper bounds on the size
997 * @return Return the calculated size for the dimension
999 float CalculateSize( Dimension::Type dimension, const Vector2& maximumSize );
1002 * @brief Clamp a dimension given the relayout constraints on this actor
1004 * @param[in] size The size to constrain
1005 * @param[in] dimension The dimension the size exists in
1006 * @return Return the clamped size
1008 float ClampDimension( float size, Dimension::Type dimension );
1011 * Negotiate a dimension based on the size of the parent
1013 * @param[in] dimension The dimension to negotiate on
1014 * @return Return the negotiated size
1016 float NegotiateFromParent( Dimension::Type dimension );
1019 * Negotiate a dimension based on the size of the parent. Fitting inside.
1021 * @param[in] dimension The dimension to negotiate on
1022 * @return Return the negotiated size
1024 float NegotiateFromParentFit( Dimension::Type dimension );
1027 * Negotiate a dimension based on the size of the parent. Flooding the whole space.
1029 * @param[in] dimension The dimension to negotiate on
1030 * @return Return the negotiated size
1032 float NegotiateFromParentFlood( Dimension::Type dimension );
1035 * @brief Negotiate a dimension based on the size of the children
1037 * @param[in] dimension The dimension to negotiate on
1038 * @return Return the negotiated size
1040 float NegotiateFromChildren( Dimension::Type dimension );
1043 * Set the negotiated dimension value for the given dimension(s)
1045 * @param negotiatedDimension The value to set
1046 * @param dimension The dimension(s) to set the value for
1048 void SetNegotiatedDimension( float negotiatedDimension, Dimension::Type dimension = Dimension::ALL_DIMENSIONS );
1051 * Return the value of negotiated dimension for the given dimension
1053 * @param dimension The dimension to retrieve
1054 * @return Return the value of the negotiated dimension
1056 float GetNegotiatedDimension( Dimension::Type dimension ) const;
1059 * @brief Set the padding for a dimension
1061 * @param[in] padding Padding for the dimension. X = start (e.g. left, bottom), y = end (e.g. right, top)
1062 * @param[in] dimension The dimension to set
1064 void SetPadding( const Vector2& padding, Dimension::Type dimension );
1067 * Return the value of padding for the given dimension
1069 * @param dimension The dimension to retrieve
1070 * @return Return the value of padding for the dimension
1072 Vector2 GetPadding( Dimension::Type dimension ) const;
1075 * Return the actor size for a given dimension
1077 * @param[in] dimension The dimension to retrieve the size for
1078 * @return Return the size for the given dimension
1080 float GetSize( Dimension::Type dimension ) const;
1083 * Return the natural size of the actor for a given dimension
1085 * @param[in] dimension The dimension to retrieve the size for
1086 * @return Return the natural size for the given dimension
1088 float GetNaturalSize( Dimension::Type dimension ) const;
1091 * @brief Return the amount of size allocated for relayout
1093 * May include padding
1095 * @param[in] dimension The dimension to retrieve
1096 * @return Return the size
1098 float GetRelayoutSize( Dimension::Type dimension ) const;
1101 * @brief If the size has been negotiated return that else return normal size
1103 * @param[in] dimension The dimension to retrieve
1104 * @return Return the size
1106 float GetLatestSize( Dimension::Type dimension ) const;
1109 * Apply the negotiated size to the actor
1111 * @param[in] container The container to fill with actors that require further relayout
1113 void SetNegotiatedSize( RelayoutContainer& container );
1116 * @brief Flag the actor as having it's layout dimension negotiated.
1118 * @param[in] negotiated The status of the flag to set.
1119 * @param[in] dimension The dimension to set the flag for
1121 void SetLayoutNegotiated( bool negotiated, Dimension::Type dimension = Dimension::ALL_DIMENSIONS );
1124 * @brief Test whether the layout dimension for this actor has been negotiated or not.
1126 * @param[in] dimension The dimension to determine the value of the flag for
1127 * @return Return if the layout dimension is negotiated or not.
1129 bool IsLayoutNegotiated( Dimension::Type dimension = Dimension::ALL_DIMENSIONS ) const;
1132 * @brief provides the Actor implementation of GetHeightForWidth
1133 * @param width to use.
1134 * @return the height based on the width.
1136 float GetHeightForWidthBase( float width );
1139 * @brief provides the Actor implementation of GetWidthForHeight
1140 * @param height to use.
1141 * @return the width based on the height.
1143 float GetWidthForHeightBase( float height );
1146 * @brief Calculate the size for a child
1148 * @param[in] child The child actor to calculate the size for
1149 * @param[in] dimension The dimension to calculate the size for. E.g. width or height.
1150 * @return Return the calculated size for the given dimension
1152 float CalculateChildSizeBase( const Dali::Actor& child, Dimension::Type dimension );
1155 * @brief Set the preferred size for size negotiation
1157 * @param[in] size The preferred size to set
1159 void SetPreferredSize( const Vector2& size );
1162 * @brief Return the preferred size used for size negotiation
1164 * @return Return the preferred size
1166 Vector2 GetPreferredSize() const;
1169 * @copydoc Dali::Actor::SetMinimumSize
1171 void SetMinimumSize( float size, Dimension::Type dimension = Dimension::ALL_DIMENSIONS );
1174 * @copydoc Dali::Actor::GetMinimumSize
1176 float GetMinimumSize( Dimension::Type dimension ) const;
1179 * @copydoc Dali::Actor::SetMaximumSize
1181 void SetMaximumSize( float size, Dimension::Type dimension = Dimension::ALL_DIMENSIONS );
1184 * @copydoc Dali::Actor::GetMaximumSize
1186 float GetMaximumSize( Dimension::Type dimension ) const;
1189 * @copydoc Dali::Actor::AddRenderer()
1191 unsigned int AddRenderer( Renderer& renderer );
1194 * @copydoc Dali::Actor::GetRendererCount()
1196 unsigned int GetRendererCount() const;
1199 * @copydoc Dali::Actor::GetRendererAt()
1201 RendererPtr GetRendererAt( unsigned int index );
1204 * @copydoc Dali::Actor::RemoveRenderer()
1206 void RemoveRenderer( Renderer& renderer );
1209 * @copydoc Dali::Actor::RemoveRenderer()
1211 void RemoveRenderer( unsigned int index );
1216 * Converts screen coordinates into the actor's coordinate system.
1217 * @note The actor coordinates are relative to the top-left (0.0, 0.0, 0.5)
1218 * @param[out] localX On return, the X-coordinate relative to the actor.
1219 * @param[out] localY On return, the Y-coordinate relative to the actor.
1220 * @param[in] screenX The screen X-coordinate.
1221 * @param[in] screenY The screen Y-coordinate.
1222 * @return True if the conversion succeeded.
1224 bool ScreenToLocal( float& localX, float& localY, float screenX, float screenY ) const;
1227 * Converts screen coordinates into the actor's coordinate system.
1228 * @note The actor coordinates are relative to the top-left (0.0, 0.0, 0.5)
1229 * @param[in] renderTask The render-task used to display the actor.
1230 * @param[out] localX On return, the X-coordinate relative to the actor.
1231 * @param[out] localY On return, the Y-coordinate relative to the actor.
1232 * @param[in] screenX The screen X-coordinate.
1233 * @param[in] screenY The screen Y-coordinate.
1234 * @return True if the conversion succeeded.
1236 bool ScreenToLocal( const RenderTask& renderTask, float& localX, float& localY, float screenX, float screenY ) const;
1239 * Converts from the actor's coordinate system to screen coordinates.
1240 * @note The actor coordinates are relative to the top-left (0.0, 0.0, 0.5)
1241 * @param[in] viewMatrix The view-matrix
1242 * @param[in] projectionMatrix The projection-matrix
1243 * @param[in] viewport The view-port
1244 * @param[out] localX On return, the X-coordinate relative to the actor.
1245 * @param[out] localY On return, the Y-coordinate relative to the actor.
1246 * @param[in] screenX The screen X-coordinate.
1247 * @param[in] screenY The screen Y-coordinate.
1248 * @return True if the conversion succeeded.
1250 bool ScreenToLocal( const Matrix& viewMatrix,
1251 const Matrix& projectionMatrix,
1252 const Viewport& viewport,
1256 float screenY ) const;
1259 * Performs a ray-sphere test with the given pick-ray and the actor's bounding sphere.
1260 * @note The actor coordinates are relative to the top-left (0.0, 0.0, 0.5)
1261 * @param[in] rayOrigin The ray origin in the world's reference system.
1262 * @param[in] rayDir The ray director vector in the world's reference system.
1263 * @return True if the ray intersects the actor's bounding sphere.
1265 bool RaySphereTest( const Vector4& rayOrigin, const Vector4& rayDir ) const;
1268 * Performs a ray-actor test with the given pick-ray and the actor's geometry.
1269 * @note The actor coordinates are relative to the top-left (0.0, 0.0, 0.5)
1270 * @param[in] rayOrigin The ray origin in the world's reference system.
1271 * @param[in] rayDir The ray director vector in the world's reference system.
1272 * @param[out] hitPointLocal The hit point in the Actor's local reference system.
1273 * @param[out] distance The distance from the hit point to the camera.
1274 * @return True if the ray intersects the actor's geometry.
1276 bool RayActorTest( const Vector4& rayOrigin,
1277 const Vector4& rayDir,
1278 Vector4& hitPointLocal,
1279 float& distance ) const;
1282 * Sets whether the actor should receive a notification when touch or hover motion events leave
1283 * the boundary of the actor.
1285 * @note By default, this is set to false as most actors do not require this.
1286 * @note Need to connect to the SignalTouch or SignalHover to actually receive this event.
1288 * @param[in] required Should be set to true if a Leave event is required
1290 void SetLeaveRequired( bool required );
1293 * This returns whether the actor requires touch or hover events whenever touch or hover motion events leave
1294 * the boundary of the actor.
1295 * @return true if a Leave event is required, false otherwise.
1297 bool GetLeaveRequired() const;
1300 * @copydoc Dali::Actor::SetKeyboardFocusable()
1302 void SetKeyboardFocusable( bool focusable );
1305 * @copydoc Dali::Actor::IsKeyboardFocusable()
1307 bool IsKeyboardFocusable() const;
1310 * Query whether the application or derived actor type requires touch events.
1311 * @return True if touch events are required.
1313 bool GetTouchRequired() const;
1316 * Query whether the application or derived actor type requires hover events.
1317 * @return True if hover events are required.
1319 bool GetHoverRequired() const;
1322 * Query whether the application or derived actor type requires wheel events.
1323 * @return True if wheel events are required.
1325 bool GetWheelEventRequired() const;
1328 * Query whether the actor is actually hittable. This method checks whether the actor is
1329 * sensitive, has the visibility flag set to true and is not fully transparent.
1330 * @return true, if it can be hit, false otherwise.
1332 bool IsHittable() const;
1337 * Retrieve the gesture data associated with this actor. The first call to this method will
1338 * allocate space for the ActorGestureData so this should only be called if an actor really does
1340 * @return Reference to the ActorGestureData for this actor.
1341 * @note Once the gesture-data is created for an actor it is likely that gestures are required
1342 * throughout the actor's lifetime so it will only be deleted when the actor is destroyed.
1344 ActorGestureData& GetGestureData();
1347 * Queries whether the actor requires the gesture type.
1348 * @param[in] type The gesture type.
1350 bool IsGestureRequred( Gesture::Type type ) const;
1355 * Used by the EventProcessor to emit touch event signals.
1356 * @param[in] event The touch event (Old API).
1357 * @param[in] touch The touch data.
1358 * @return True if the event was consumed.
1360 bool EmitTouchEventSignal( const TouchEvent& event, const Dali::TouchData& touch );
1363 * Used by the EventProcessor to emit hover event signals.
1364 * @param[in] event The hover event.
1365 * @return True if the event was consumed.
1367 bool EmitHoverEventSignal( const HoverEvent& event );
1370 * Used by the EventProcessor to emit wheel event signals.
1371 * @param[in] event The wheel event.
1372 * @return True if the event was consumed.
1374 bool EmitWheelEventSignal( const WheelEvent& event );
1377 * @copydoc Dali::Actor::TouchedSignal()
1379 Dali::Actor::TouchSignalType& TouchedSignal();
1382 * @copydoc Dali::Actor::TouchEventSignal()
1384 Dali::Actor::TouchDataSignalType& TouchSignal();
1387 * @copydoc Dali::Actor::HoveredSignal()
1389 Dali::Actor::HoverSignalType& HoveredSignal();
1392 * @copydoc Dali::Actor::WheelEventSignal()
1394 Dali::Actor::WheelEventSignalType& WheelEventSignal();
1397 * @copydoc Dali::Actor::OnStageSignal()
1399 Dali::Actor::OnStageSignalType& OnStageSignal();
1402 * @copydoc Dali::Actor::OffStageSignal()
1404 Dali::Actor::OffStageSignalType& OffStageSignal();
1407 * @copydoc Dali::Actor::OnRelayoutSignal()
1409 Dali::Actor::OnRelayoutSignalType& OnRelayoutSignal();
1412 * Connects a callback function with the object's signals.
1413 * @param[in] object The object providing the signal.
1414 * @param[in] tracker Used to disconnect the signal.
1415 * @param[in] signalName The signal to connect to.
1416 * @param[in] functor A newly allocated FunctorDelegate.
1417 * @return True if the signal was connected.
1418 * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
1420 static bool DoConnectSignal( BaseObject* object,
1421 ConnectionTrackerInterface* tracker,
1422 const std::string& signalName,
1423 FunctorDelegate* functor );
1426 * Performs actions as requested using the action name.
1427 * @param[in] object The object on which to perform the action.
1428 * @param[in] actionName The action to perform.
1429 * @param[in] attributes The attributes with which to perfrom this action.
1430 * @return true if the action was done.
1432 static bool DoAction( BaseObject* object,
1433 const std::string& actionName,
1434 const Property::Map& attributes );
1440 * This should only be called by Animation, when the actors SIZE property is animated.
1442 * @param[in] animation The animation that resized the actor
1443 * @param[in] targetSize The new target size of the actor
1445 void NotifySizeAnimation( Animation& animation, const Vector3& targetSize );
1448 * This should only be called by Animation, when the actors SIZE_WIDTH or SIZE_HEIGHT or SIZE_DEPTH property is animated.
1450 * @param[in] animation The animation that resized the actor
1451 * @param[in] targetSize The new target size of the actor
1452 * @param[in] property The index of the property being animated
1454 void NotifySizeAnimation( Animation& animation, float targetSize, Property::Index property );
1457 * For use in derived classes.
1458 * This should only be called by Animation, when the actor is resized using Animation::Resize().
1460 virtual void OnSizeAnimation( Animation& animation, const Vector3& targetSize )
1465 * This should only be called by Animation, when the actors POSITION property is animated.
1467 * @param[in] animation The animation that repositioned the actor
1468 * @param[in] targetPosition The new target position of the actor
1470 void NotifyPositionAnimation( Animation& animation, const Vector3& targetPosition );
1473 * This should only be called by Animation, when the actors POSITION_X or POSITION_Y or POSITION_Z property is animated.
1475 * @param[in] animation The animation that repositioned the actor
1476 * @param[in] targetPosition The new target position of the actor
1477 * @param[in] property The index of the property being animated
1479 void NotifyPositionAnimation( Animation& animation, float targetPosition, Property::Index property );
1485 BASIC, LAYER, ROOT_LAYER
1489 * Protected Constructor. See Actor::New().
1490 * The second-phase construction Initialize() member should be called immediately after this.
1491 * @param[in] derivedType The derived type of actor (if any).
1493 Actor( DerivedType derivedType );
1496 * Second-phase constructor. Must be called immediately after creating a new Actor;
1498 void Initialize( void );
1501 * A reference counted object may only be deleted by calling Unreference()
1506 * Called on a child during Add() when the parent actor is connected to the Stage.
1507 * @param[in] parentDepth The depth of the parent in the hierarchy.
1509 void ConnectToStage( unsigned int parentDepth );
1512 * Helper for ConnectToStage, to recursively connect a tree of actors.
1513 * This is atomic i.e. not interrupted by user callbacks.
1514 * @param[in] depth The depth in the hierarchy of the actor
1515 * @param[out] connectionList On return, the list of connected actors which require notification.
1517 void RecursiveConnectToStage( ActorContainer& connectionList, unsigned int depth );
1520 * Connect the Node associated with this Actor to the scene-graph.
1522 void ConnectToSceneGraph();
1525 * Helper for ConnectToStage, to notify a connected actor through the public API.
1527 void NotifyStageConnection();
1530 * Called on a child during Remove() when the actor was previously on the Stage.
1532 void DisconnectFromStage();
1535 * Helper for DisconnectFromStage, to recursively disconnect a tree of actors.
1536 * This is atomic i.e. not interrupted by user callbacks.
1537 * @param[out] disconnectionList On return, the list of disconnected actors which require notification.
1539 void RecursiveDisconnectFromStage( ActorContainer& disconnectionList );
1542 * Disconnect the Node associated with this Actor from the scene-graph.
1544 void DisconnectFromSceneGraph();
1547 * Helper for DisconnectFromStage, to notify a disconnected actor through the public API.
1549 void NotifyStageDisconnection();
1552 * When the Actor is OnStage, checks whether the corresponding Node is connected to the scene graph.
1553 * @return True if the Actor is OnStage & has a Node connected to the scene graph.
1555 bool IsNodeConnected() const;
1559 // Default property extensions from Object
1562 * @copydoc Dali::Internal::Object::GetDefaultPropertyCount()
1564 virtual unsigned int GetDefaultPropertyCount() const;
1567 * @copydoc Dali::Internal::Object::GetDefaultPropertyIndices()
1569 virtual void GetDefaultPropertyIndices( Property::IndexContainer& indices ) const;
1572 * @copydoc Dali::Internal::Object::GetDefaultPropertyName()
1574 virtual const char* GetDefaultPropertyName( Property::Index index ) const;
1577 * @copydoc Dali::Internal::Object::GetDefaultPropertyIndex()
1579 virtual Property::Index GetDefaultPropertyIndex( const std::string& name ) const;
1582 * @copydoc Dali::Internal::Object::IsDefaultPropertyWritable()
1584 virtual bool IsDefaultPropertyWritable( Property::Index index ) const;
1587 * @copydoc Dali::Internal::Object::IsDefaultPropertyAnimatable()
1589 virtual bool IsDefaultPropertyAnimatable( Property::Index index ) const;
1592 * @copydoc Dali::Internal::Object::IsDefaultPropertyAConstraintInput()
1594 virtual bool IsDefaultPropertyAConstraintInput( Property::Index index ) const;
1597 * @copydoc Dali::Internal::Object::GetDefaultPropertyType()
1599 virtual Property::Type GetDefaultPropertyType( Property::Index index ) const;
1602 * @copydoc Dali::Internal::Object::SetDefaultProperty()
1604 virtual void SetDefaultProperty( Property::Index index, const Property::Value& propertyValue );
1607 * @copydoc Dali::Internal::Object::SetSceneGraphProperty()
1609 virtual void SetSceneGraphProperty( Property::Index index, const PropertyMetadata& entry, const Property::Value& value );
1612 * @copydoc Dali::Internal::Object::GetDefaultProperty()
1614 virtual Property::Value GetDefaultProperty( Property::Index index ) const;
1617 * @copydoc Dali::Internal::Object::GetPropertyOwner()
1619 virtual const SceneGraph::PropertyOwner* GetPropertyOwner() const;
1622 * @copydoc Dali::Internal::Object::GetSceneObject()
1624 virtual const SceneGraph::PropertyOwner* GetSceneObject() const;
1627 * @copydoc Dali::Internal::Object::GetSceneObjectAnimatableProperty()
1629 virtual const SceneGraph::PropertyBase* GetSceneObjectAnimatableProperty( Property::Index index ) const;
1632 * @copydoc Dali::Internal::Object::GetSceneObjectInputProperty()
1634 virtual const PropertyInputImpl* GetSceneObjectInputProperty( Property::Index index ) const;
1637 * @copydoc Dali::Internal::Object::GetPropertyComponentIndex()
1639 virtual int GetPropertyComponentIndex( Property::Index index ) const;
1647 Actor( const Actor& );
1650 Actor& operator=( const Actor& rhs );
1653 * Set the actors parent.
1654 * @param[in] parent The new parent.
1656 void SetParent( Actor* parent );
1659 * Helper to create a Node for this Actor.
1660 * To be overriden in derived classes.
1661 * @return A newly allocated node.
1663 virtual SceneGraph::Node* CreateNode() const;
1666 * For use in derived classes, called after Initialize()
1668 virtual void OnInitialize()
1673 * For use in internal derived classes.
1674 * This is called during ConnectToStage(), after the actor has finished adding its node to the scene-graph.
1675 * The derived class must not modify the actor hierachy (Add/Remove children) during this callback.
1677 virtual void OnStageConnectionInternal()
1682 * For use in internal derived classes.
1683 * This is called during DisconnectFromStage(), before the actor removes its node from the scene-graph.
1684 * The derived class must not modify the actor hierachy (Add/Remove children) during this callback.
1686 virtual void OnStageDisconnectionInternal()
1691 * For use in external (CustomActor) derived classes.
1692 * This is called after the atomic ConnectToStage() traversal has been completed.
1694 virtual void OnStageConnectionExternal( int depth )
1699 * For use in external (CustomActor) derived classes.
1700 * This is called after the atomic DisconnectFromStage() traversal has been completed.
1702 virtual void OnStageDisconnectionExternal()
1707 * For use in derived classes; this is called after Add() has added a child.
1708 * @param[in] child The child that was added.
1710 virtual void OnChildAdd( Actor& child )
1715 * For use in derived classes; this is called after Remove() has attempted to remove a child( regardless of whether it succeeded or not ).
1716 * @param[in] child The child that was removed.
1718 virtual void OnChildRemove( Actor& child )
1723 * For use in derived classes.
1724 * This is called after SizeSet() has been called.
1726 virtual void OnSizeSet( const Vector3& targetSize )
1731 * For use in derived classes.
1732 * This is only called if mDerivedRequiresTouch is true, and the touch-signal was not consumed.
1733 * @param[in] event The touch event.
1734 * @return True if the event should be consumed.
1736 virtual bool OnTouchEvent( const TouchEvent& event )
1742 * For use in derived classes.
1743 * This is only called if mDerivedRequiresHover is true, and the hover-signal was not consumed.
1744 * @param[in] event The hover event.
1745 * @return True if the event should be consumed.
1747 virtual bool OnHoverEvent( const HoverEvent& event )
1753 * For use in derived classes.
1754 * This is only called if the wheel signal was not consumed.
1755 * @param[in] event The wheel event.
1756 * @return True if the event should be consumed.
1758 virtual bool OnWheelEvent( const WheelEvent& event )
1764 * @brief Ensure the relayout data is allocated
1766 void EnsureRelayoutData();
1769 * @brief Apply the size set policy to the input size
1771 * @param[in] size The size to apply the policy to
1772 * @return Return the adjusted size
1774 Vector2 ApplySizeSetPolicy( const Vector2 size );
1777 * Retrieve the parent object of an Actor.
1778 * @return The parent object, or NULL if the Actor does not have a parent.
1780 virtual Object* GetParentObject() const;
1784 Actor* mParent; ///< Each actor (except the root) can have one parent
1785 ActorContainer* mChildren; ///< Container of referenced actors
1786 RendererContainer* mRenderers; ///< Renderer container
1788 const SceneGraph::Node* mNode; ///< Not owned
1789 Vector3* mParentOrigin; ///< NULL means ParentOrigin::DEFAULT. ParentOrigin is non-animatable
1790 Vector3* mAnchorPoint; ///< NULL means AnchorPoint::DEFAULT. AnchorPoint is non-animatable
1792 struct RelayoutData;
1793 RelayoutData* mRelayoutData; ///< Struct to hold optional collection of relayout variables
1795 ActorGestureData* mGestureData; ///< Optional Gesture data. Only created when actor requires gestures
1798 Dali::Actor::TouchSignalType mTouchedSignal;
1799 Dali::Actor::TouchDataSignalType mTouchSignal;
1800 Dali::Actor::HoverSignalType mHoveredSignal;
1801 Dali::Actor::WheelEventSignalType mWheelEventSignal;
1802 Dali::Actor::OnStageSignalType mOnStageSignal;
1803 Dali::Actor::OffStageSignalType mOffStageSignal;
1804 Dali::Actor::OnRelayoutSignalType mOnRelayoutSignal;
1806 Vector3 mTargetSize; ///< Event-side storage for size (not a pointer as most actors will have a size)
1807 Vector3 mTargetPosition; ///< Event-side storage for position (not a pointer as most actors will have a position)
1809 std::string mName; ///< Name of the actor
1810 unsigned int mId; ///< A unique ID to identify the actor starting from 1, and 0 is reserved
1812 unsigned short mDepth :12; ///< Cached: The depth in the hierarchy of the actor. Only 4096 levels of depth are supported
1813 const bool mIsRoot : 1; ///< Flag to identify the root actor
1814 const bool mIsLayer : 1; ///< Flag to identify that this is a layer
1815 bool mIsOnStage : 1; ///< Flag to identify whether the actor is on-stage
1816 bool mSensitive : 1; ///< Whether the actor emits touch event signals
1817 bool mLeaveRequired : 1; ///< Whether a touch event signal is emitted when the a touch leaves the actor's bounds
1818 bool mKeyboardFocusable : 1; ///< Whether the actor should be focusable by keyboard navigation
1819 bool mDerivedRequiresTouch : 1; ///< Whether the derived actor type requires touch event signals
1820 bool mDerivedRequiresHover : 1; ///< Whether the derived actor type requires hover event signals
1821 bool mDerivedRequiresWheelEvent : 1; ///< Whether the derived actor type requires wheel event signals
1822 bool mOnStageSignalled : 1; ///< Set to true before OnStageConnection signal is emitted, and false before OnStageDisconnection
1823 bool mInsideOnSizeSet : 1; ///< Whether we are inside OnSizeSet
1824 bool mInheritPosition : 1; ///< Cached: Whether the parent's position should be inherited.
1825 bool mInheritOrientation : 1; ///< Cached: Whether the parent's orientation should be inherited.
1826 bool mInheritScale : 1; ///< Cached: Whether the parent's scale should be inherited.
1827 DrawMode::Type mDrawMode : 2; ///< Cached: How the actor and its children should be drawn
1828 PositionInheritanceMode mPositionInheritanceMode : 2; ///< Cached: Determines how position is inherited
1829 ColorMode mColorMode : 2; ///< Cached: Determines whether mWorldColor is inherited
1833 static ActorContainer mNullChildren; ///< Empty container (shared by all actors, returned by GetChildren() const)
1834 static unsigned int mActorCounter; ///< A counter to track the actor instance creation
1838 } // namespace Internal
1840 // Helpers for public-api forwarding methods
1842 inline Internal::Actor& GetImplementation( Dali::Actor& actor )
1844 DALI_ASSERT_ALWAYS( actor && "Actor handle is empty" );
1846 BaseObject& handle = actor.GetBaseObject();
1848 return static_cast< Internal::Actor& >( handle );
1851 inline const Internal::Actor& GetImplementation( const Dali::Actor& actor )
1853 DALI_ASSERT_ALWAYS( actor && "Actor handle is empty" );
1855 const BaseObject& handle = actor.GetBaseObject();
1857 return static_cast< const Internal::Actor& >( handle );
1862 #endif // __DALI_INTERNAL_ACTOR_H__