X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fcontrol-depth-index-ranges.h;h=d0f4187e897db828c67589863ab66302334a714d;hb=62f4bf2995acd0c3a386975f4c38f95cbdd507e3;hp=e9fc76ad1d56324b89c8192bb4e47d272db33945;hpb=31df2b9472ccbe0ae460a958535be8ef790c96f2;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/controls/control-depth-index-ranges.h b/dali-toolkit/public-api/controls/control-depth-index-ranges.h index e9fc76a..d0f4187 100644 --- a/dali-toolkit/public-api/controls/control-depth-index-ranges.h +++ b/dali-toolkit/public-api/controls/control-depth-index-ranges.h @@ -2,7 +2,7 @@ #define __DALI_TOOLKIT_CONTROL_DEPTH_INDEX_RANGES_H__ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,20 +18,35 @@ * */ +// EXTERNAL INCLUDES +#include + namespace Dali { namespace Toolkit { -enum ControlDepthIndexRanges +/** + * @addtogroup dali_toolkit_controls + * @{ + */ + +/** + * @deprecated DALi 1.1.16 + * + * @brief These depth indices should not be used. + */ +enum DepthIndexRanges { - BACKGROUND_DEPTH_INDEX = -10000000, - CONTENT_DEPTH_INDEX = 0, - DECORATION_DEPTH_INDEX = 10000000 + BACKGROUND_DEPTH_INDEX = static_cast( -Dali::Layer::TREE_DEPTH_MULTIPLIER * 0.1f ), ///< @deprecated DALi 1.1.16 + CONTENT_DEPTH_INDEX = 0, ///< @deprecated DALi 1.1.16 + DECORATION_DEPTH_INDEX = static_cast( Dali::Layer::TREE_DEPTH_MULTIPLIER * 0.1f ) ///< @deprecated DALi 1.1.16 }; +/** + * @} + */ } } - #endif