Support rounded corners for Visual
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / visual-base-data-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_VISUAL_BASE_DATA_IMPL_H
2 #define DALI_TOOLKIT_INTERNAL_VISUAL_BASE_DATA_IMPL_H
3
4 /*
5  * Copyright (c) 2018 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 // EXTERNAL INCLUDES
22 #include <dali/public-api/math/vector2.h>
23 #include <dali/public-api/rendering/renderer.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/visuals/visual-base-impl.h>
27 #include <dali-toolkit/internal/visuals/visual-event-observer.h>
28 #include <dali-toolkit/public-api/align-enumerations.h>
29 #include <dali-toolkit/public-api/visuals/visual-properties.h>
30 #include <dali-toolkit/devel-api/visuals/visual-properties-devel.h>
31
32 namespace Dali
33 {
34
35 namespace Toolkit
36 {
37
38 namespace Internal
39 {
40
41 namespace Visual
42 {
43
44 struct Base::Impl
45 {
46   /**
47    * Constructor
48    * @param [in] fittingMode that the derived class prefers
49    */
50   Impl(FittingMode fittingMode);
51
52   /**
53    * Destructor
54    */
55   ~Impl();
56
57   enum Flags
58   {
59     IS_ON_STAGE = 1,
60     IS_ATLASING_APPLIED = 1<<1,
61     IS_PREMULTIPLIED_ALPHA = 1 << 2,
62     IS_SYNCHRONOUS_RESOURCE_LOADING = 1 << 3
63   };
64
65   struct CustomShader
66   {
67     CustomShader( const Property::Map& map );
68     void SetPropertyMap( const Property::Map& map );
69     void CreatePropertyMap( Property::Map& map ) const;
70
71     std::string mVertexShader;
72     std::string mFragmentShader;
73     Dali::ImageDimensions mGridSize;
74     Dali::Shader::Hint::Value mHints; //(bitfield) values from enum Shader::Hint
75   };
76
77   struct Transform
78   {
79     /**
80      * Default constructor ensures the visual fills the control
81      */
82     Transform();
83
84     /**
85      * Use the property map to set zero or more of the transform
86      * attributes, and sets the remaining attributes to their default
87      * values.
88      */
89     void SetPropertyMap( const Property::Map& map );
90
91     /**
92      * Add the transform attributes to the map (using integer keys)
93      */
94     void GetPropertyMap( Property::Map& map ) const;
95
96     /**
97      * Update zero or more attributes from the property map.
98      */
99     void UpdatePropertyMap( const Property::Map& map );
100
101     /**
102      * Register or set the uniform properties onto the renderer
103      */
104     void RegisterUniforms( Renderer renderer, Toolkit::Direction::Type direction );
105
106     /**
107      * Convert the control size and the transform attributes into the actual
108      * size of the visual.
109      */
110     Vector2 GetVisualSize( const Vector2& controlSize );
111
112     Vector2 mOffset;
113     Vector2 mSize;
114     Vector4 mOffsetSizeMode;
115     Toolkit::Align::Type mOrigin;
116     Toolkit::Align::Type mAnchorPoint;
117   };
118
119   Renderer        mRenderer;
120   CustomShader*   mCustomShader;
121   SlotDelegate<Visual::Base>* mBlendSlotDelegate; ///< Used to own mix color animation connection
122   EventObserver*  mEventObserver;  ///< Allows controls to observe when the visual has events to notify
123   std::string     mName;
124   Transform       mTransform;
125   Vector4         mMixColor;
126   Size            mControlSize;
127   float           mCornerRadius;
128   int             mDepthIndex;
129   Property::Index mMixColorIndex;
130   Property::Index mCornerRadiusIndex;
131   FittingMode     mFittingMode;  //< How the contents should fit the view
132   int             mFlags;
133   Toolkit::Visual::ResourceStatus  mResourceStatus;
134 };
135
136 } // namespace Visual
137
138 } // namespace Internal
139
140 } // namespace Toolkit
141
142 } // namespace Dali
143
144 #endif // DALI_TOOLKIT_INTERNAL_VISUAL_BASE_DATA_IMPL_H