1 #ifndef __DALI_TOOLKIT_ENUMS_H__
2 #define __DALI_TOOLKIT_ENUMS_H__
5 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
22 #include <dali/public-api/common/dali-common.h>
27 * @brief DALi Toolkit namespace.
33 * @addtogroup dali_toolkit_controls
38 * @brief Control Orientation namespace.
41 namespace ControlOrientation
45 * @brief The internal orientation of a control.
50 Up, ///< The contents of control are in a vertical layout, from top to bottom @SINCE_1_0.0
51 Left, ///< The contents of control are in a horizontal layout, from left to right @SINCE_1_0.0
52 Down, ///< The contents of control are in a vertical layout, from bottom to top @SINCE_1_0.0
53 Right ///< The contents of control are in a horizontal layout, from right to left @SINCE_1_0.0
56 } // namespace ControlOrientation
59 * @brief Query whether an orientation is vertical.
61 * @param[in] orientation The orientation.
62 * @return True if the orientation is vertical.
64 DALI_IMPORT_API bool IsVertical(ControlOrientation::Type orientation);
67 * @brief Query whether an orientation is horizontal.
70 * @param[in] orientation The orientation.
71 * @return True if the orientation is horizontal.
73 DALI_IMPORT_API bool IsHorizontal(ControlOrientation::Type orientation);
78 } // namespace Toolkit
82 #endif // __DALI_TOOLKIT_ENUMS_H__