X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fcontrol%2Fcontrol-data-impl.h;h=1afa0a2cb4d02a0d7d85495ebf9e1392784fcb5a;hb=88164ac28facfc414392d99ff5d1cbcd4f9e9d2c;hp=d2eb48e3e1de025cfc352a3b69736c30bedd3faa;hpb=e054aaf534cb25fae7c3219b1d8e3724ebc2a038;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/controls/control/control-data-impl.h b/dali-toolkit/internal/controls/control/control-data-impl.h index d2eb48e..1afa0a2 100755 --- a/dali-toolkit/internal/controls/control/control-data-impl.h +++ b/dali-toolkit/internal/controls/control/control-data-impl.h @@ -345,6 +345,16 @@ public: */ void RemoveLayout(); + /** + * @copydoc DevelControl::SetLayoutingRequired + */ + void SetLayoutingRequired( bool layoutingRequired ); + + /** + * @copydoc DevelControl::IsLayoutingRequired() + */ + bool IsLayoutingRequired(); + private: /** @@ -423,6 +433,7 @@ public: ControlBehaviour mFlags : CONTROL_BEHAVIOUR_FLAG_COUNT; ///< Flags passed in from constructor. bool mIsKeyboardNavigationSupported :1; ///< Stores whether keyboard navigation is supported by the control. bool mIsKeyboardFocusGroup :1; ///< Stores whether the control is a focus group. + bool mIsLayoutingRequired :1; ///< Stores whether the control needs to be Layout RegisteredVisualContainer mRemoveVisuals; ///< List of visuals that are being replaced by another visual once ready