X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=optional%2Fdali-toolkit%2Finternal%2Fcontrols%2Ftool-bar%2Ftool-bar-impl.h;h=2b2fa6d6712713ff41de6ce240427230d979039a;hb=refs%2Fchanges%2F49%2F34949%2F3;hp=db2ea12be2422a5bf2494e5288384593507bc7a1;hpb=e58197b2ce320f167a24865cdd048f0cc0c05e45;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/optional/dali-toolkit/internal/controls/tool-bar/tool-bar-impl.h b/optional/dali-toolkit/internal/controls/tool-bar/tool-bar-impl.h index db2ea12..2b2fa6d 100644 --- a/optional/dali-toolkit/internal/controls/tool-bar/tool-bar-impl.h +++ b/optional/dali-toolkit/internal/controls/tool-bar/tool-bar-impl.h @@ -19,7 +19,6 @@ */ // EXTERNAL INCLUDES -#include #include // INTERNAL INCLUDES @@ -89,6 +88,12 @@ private: // From Control */ virtual void OnRelaidOut( Vector2 size, ActorSizeContainer& container ); + /** + * + * @copydoc Toolkit::Control::OnControlSizeSet( const Vector3& targetSize ) + */ + virtual void OnControlSizeSet( const Vector3& targetSize ); + private: /** */ @@ -137,6 +142,8 @@ private: float mRightRelativeSpace; ///< Relative space between center and right groups of controls. float mAccumulatedRelativeSpace; ///< Stores the total percentage space used by controls. bool mInitializing; ///< Allows the use of Actor's API to add controls. + Vector3 mToolBarSize; ///< The size of tool bar + Actor mBackground; ///< The background of the tool bar std::map mControls; ///< Stores a relationship between controls and their alignments used to place them inside the table view. };