X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fcontrol%2Fcontrol-data-impl.h;h=1afa0a2cb4d02a0d7d85495ebf9e1392784fcb5a;hp=d2eb48e3e1de025cfc352a3b69736c30bedd3faa;hb=57974024e1401e657866df3afabf53676a5892b6;hpb=d2db3f27c61198d52ae7095f80a48ffedf859b65 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