02e977b73c4e27b352b39a1560478c3ebc9b21ff
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / visual-factory / devel-visual-properties.h
1 #ifndef DALI_TOOLKIT_DEVEL_VISUAL_PROPERTIES_H
2 #define DALI_TOOLKIT_DEVEL_VISUAL_PROPERTIES_H
3
4 /*
5  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
6  *
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
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
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 // INTERNAL INCLUDES
22 #include <dali-toolkit/public-api/toolkit-property-index-ranges.h>
23 #include <dali-toolkit/public-api/visuals/visual-properties.h>
24
25 namespace Dali
26 {
27
28 namespace Toolkit
29 {
30
31 namespace Visual
32 {
33
34 // Mirror of public API Property namespace with addition of enums that are not yet
35 // public. A namespace alias is used below to reduce implementation cruft.
36
37 namespace DevelProperty
38 {
39
40 enum Type
41 {
42   TYPE   = Dali::Toolkit::Visual::Property::TYPE,
43   SHADER = Dali::Toolkit::Visual::Property::SHADER,
44
45   /**
46    * @brief The transform used by the visual.
47    * @details Name "transform", type Property::Map.
48
49    * @note Optional.
50    * @see Transform::Property
51    */
52   TRANSFORM = SHADER+1//Dali::Toolkit::Visual::Property::SHADER+1
53 };
54
55 } // namespace DevelProperty
56
57 } // namespace Visual
58
59 namespace VisualProperty = Visual::DevelProperty;
60
61 } // namespace Toolkit
62
63 } // namespace Dali
64
65
66 #endif // DALI_TOOLKIT_DEVEL_VISUAL_PROPERTIES_H