X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fcontrol-depth-index-ranges.h;h=87ab0ca23bb66efe1bb60fcd3613cafd8fb5e30c;hp=ff5732cf00992639e301f936e8190f0ff445f599;hb=502a6996c58f8b8de2dd530235852d53d01d2ac0;hpb=07bbc876b9b069903dd4ed86c9dd5f2f66fc3b86 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 ff5732c..87ab0ca 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,21 +18,29 @@ * */ +// EXTERNAL INCLUDES #include + namespace Dali { namespace Toolkit { /** - * @addtogroup dali-toolkit-controls + * @addtogroup dali_toolkit_controls * @{ */ -enum ControlDepthIndexRanges +/** + * @deprecated DALi 1.1.16 + * + * @brief These depth indices should not be used. + * @SINCE_1_0.0 + */ +enum DepthIndexRanges { - BACKGROUND_DEPTH_INDEX = static_cast( -Dali::Layer::TREE_DEPTH_MULTIPLIER * 0.1f ), - CONTENT_DEPTH_INDEX = 0, - DECORATION_DEPTH_INDEX = static_cast( Dali::Layer::TREE_DEPTH_MULTIPLIER * 0.1f ) + BACKGROUND_DEPTH_INDEX = static_cast( -Dali::Layer::TREE_DEPTH_MULTIPLIER * 0.1f ), ///< @deprecated DALi 1.1.16 @SINCE_1_0.0 + CONTENT_DEPTH_INDEX = 0, ///< @deprecated DALi 1.1.16 @SINCE_1_0.0 + DECORATION_DEPTH_INDEX = static_cast( Dali::Layer::TREE_DEPTH_MULTIPLIER * 0.1f ) ///< @deprecated DALi 1.1.16 @SINCE_1_0.0 }; /** @@ -42,5 +50,4 @@ enum ControlDepthIndexRanges } - #endif