Merge "Modified dali.i and dali-toolkit.i files to add support for the changes made...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / color / color-visual.h
1 #ifndef DALI_TOOLKIT_INTERNAL_COLOR_VISUAL_H
2 #define DALI_TOOLKIT_INTERNAL_COLOR_VISUAL_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/common/intrusive-ptr.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/internal/visuals/visual-base-impl.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 namespace Internal
34 {
35
36 class ColorVisual;
37 typedef IntrusivePtr< ColorVisual > ColorVisualPtr;
38
39 /**
40  * The visual which renders a solid color to the control's quad
41  *
42  * The following properties are required for create a ColorRender
43  *
44  * | %Property Name  | Type        |
45  * |-----------------|-------------|
46  * | mixColor        | VECTOR4     |
47  */
48 class ColorVisual: public Visual::Base
49 {
50 public:
51
52   /**
53    * @brief Create a new color visual.
54    *
55    * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object
56    * @return A smart-pointer to the newly allocated visual.
57    */
58   static ColorVisualPtr New( VisualFactoryCache& factoryCache );
59
60 public:  // from Visual
61
62   /**
63    * @copydoc Visual::Base::CreatePropertyMap
64    */
65   virtual void DoCreatePropertyMap( Property::Map& map ) const;
66
67 protected:
68
69   /**
70    * @brief Constructor.
71    *
72    * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object
73    */
74   ColorVisual( VisualFactoryCache& factoryCache );
75
76   /**
77    * @brief A reference counted object may only be deleted by calling Unreference().
78    */
79   virtual ~ColorVisual();
80
81   /**
82    * @copydoc Visual::Base::DoSetProperties
83    */
84   virtual void DoSetProperties( const Property::Map& propertyMap );
85
86   /**
87    * @copydoc Visual::Base::DoSetOnStage
88    */
89   virtual void DoSetOnStage( Actor& actor );
90
91   /**
92    * @copydoc Visual::Base::OnSetTransform
93    */
94   virtual void OnSetTransform();
95
96 public:
97
98   /**
99    * Set the color for rendering.
100    * @param[in] color The color to be rendered.
101    */
102   void SetColor( const Vector4& color );
103
104 private:
105   /**
106    * @brief Initialize the renderer with the geometry and shader from the cache, if not available, create and save to the cache for sharing.
107    */
108   void InitializeRenderer();
109
110 private:
111
112   // Undefined
113   ColorVisual( const ColorVisual& colorRenderer );
114
115   // Undefined
116   ColorVisual& operator=( const ColorVisual& colorRenderer );
117
118 private:
119
120   Vector4 mMixColor;
121   Property::Index mMixColorIndex;
122
123 };
124
125 } // namespace Internal
126
127 } // namespace Toolkit
128
129 } // namespace Dali
130
131 #endif /* DALI_TOOLKIT_INTERNAL_COLOR_VISUAL_H */