Merge "Fix for Text::Controller::RepositionSelectionHandles()" into devel/master
[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) 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 // 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/devel-api/align-enums.h>
28
29 namespace Dali
30 {
31
32 namespace Toolkit
33 {
34
35 namespace Internal
36 {
37
38 namespace Visual
39 {
40
41 struct Base::Impl
42 {
43   /**
44    * Constructor
45    */
46   Impl();
47
48   /**
49    * Destructor
50    */
51   ~Impl();
52
53   enum Flags
54   {
55     IS_ON_STAGE = 1,
56     IS_ATLASING_APPLIED = 1<<1,
57     IS_PREMULTIPLIED_ALPHA = 1 << 2,
58     IS_SYNCHRONOUS_RESOURCE_LOADING = 1 << 3
59   };
60
61   struct CustomShader
62   {
63     CustomShader( const Property::Map& map );
64     void SetPropertyMap( const Property::Map& map );
65     void CreatePropertyMap( Property::Map& map ) const;
66
67     std::string mVertexShader;
68     std::string mFragmentShader;
69     Dali::ImageDimensions mGridSize;
70     Dali::Shader::Hint::Value mHints; //(bitfield) values from enum Shader::Hint
71   };
72
73   struct Transform
74   {
75     /**
76      * Default constructor ensures the visual fills the control
77      */
78     Transform();
79
80     /**
81      * Use the property map to set zero or more of the transform
82      * attributes, and sets the remaining attributes to their default
83      * values.
84      */
85     void SetPropertyMap( const Property::Map& map );
86
87     /**
88      * Add the transform attributes to the map (using integer keys)
89      */
90     void GetPropertyMap( Property::Map& map ) const;
91
92     /**
93      * Update zero or more attributes from the property map.
94      */
95     void UpdatePropertyMap( const Property::Map& map );
96
97     /**
98      * Register or set the uniform properties onto the renderer
99      */
100     void RegisterUniforms( Renderer renderer, Toolkit::Direction::Type direction );
101
102     /**
103      * Convert the control size and the transform attributes into the actual
104      * size of the visual.
105      */
106     Vector2 GetVisualSize( const Vector2& controlSize );
107
108     Vector2 mOffset;
109     Vector2 mSize;
110     Vector4 mOffsetSizeMode;
111     Toolkit::Align::Type mOrigin;
112     Toolkit::Align::Type mAnchorPoint;
113   };
114
115   Renderer        mRenderer;
116   CustomShader*   mCustomShader;
117   SlotDelegate<Visual::Base>* mBlendSlotDelegate; ///< Used to own mix color animation connection
118   std::string     mName;
119   Transform       mTransform;
120   Vector4         mMixColor;
121   Size            mControlSize;
122   float           mDepthIndex;
123   Property::Index mMixColorIndex;
124   Property::Index mOpacityIndex;
125   int             mFlags;
126 };
127
128 } // namespace Visual
129
130 } // namespace Internal
131
132 } // namespace Toolkit
133
134 } // namespace Dali
135
136 #endif // DALI_TOOLKIT_INTERNAL_VISUAL_BASE_DATA_IMPL_H