6b221de0cea845f65817a450360af3bae307817e
[platform/core/uifw/dali-toolkit.git] / capi / dali-toolkit / public-api / enums.h
1 #ifndef __DALI_TOOLKIT_ENUMS_H__
2 #define __DALI_TOOLKIT_ENUMS_H__
3
4 //
5 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
6 //
7 // Licensed under the Flora License, Version 1.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
10 //
11 //     http://floralicense.org/license/
12 //
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.
18 //
19
20 /**
21  * @addtogroup CAPI_DALI_TOOLKIT_MODULE
22  * @{
23  */
24
25 // INTERNAL INCLUDES
26 #include <dali/public-api/common/dali-common.h>
27
28 namespace Dali DALI_IMPORT_API
29 {
30
31 /**
32  * @brief DALi Toolkit namespace.
33  */
34 namespace Toolkit
35 {
36
37 /**
38  * @brief Control Orientation namespace.
39  */
40 namespace ControlOrientation
41 {
42
43 /**
44  * @brief The internal orientation of a control.
45  */
46 enum Type
47 {
48   Up,   ///< The contents of control are in a vertical layout, from top to bottom
49   Left, ///< The contents of control are in a horizontal layout, from left to right
50   Down, ///< The contents of control are in a vertical layout, from bottom to top
51   Right ///< The contents of control are in a horizontal layout, from right to left
52 };
53
54 } // namespace ControlOrientation
55
56 /**
57  * @brief Query whether an orientation is vertical.
58  *
59  * @param[in] orientation The orientation.
60  * @return True if the orientation is vertical.
61  */
62 bool IsVertical(ControlOrientation::Type orientation);
63
64 /**
65  * @brief Query whether an orientation is horizontal.
66  *
67  * @param[in] orientation The orientation.
68  * @return True if the orientation is horizontal.
69  */
70 bool IsHorizontal(ControlOrientation::Type orientation);
71
72 } // namespace Toolkit
73
74 } // namespace Dali
75
76 /**
77  * @}
78  */
79 #endif // __DALI_TOOLKIT_ENUMS_H__