Merge "C# control dashboard demo" into devel/master
[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    * @param[in] properties A Property::Map containing settings for this visual
57    * @return A smart-pointer to the newly allocated visual.
58    */
59   static ColorVisualPtr New( VisualFactoryCache& factoryCache, const Property::Map& properties );
60
61 public:  // from Visual
62
63   /**
64    * @copydoc Visual::Base::CreatePropertyMap
65    */
66   virtual void DoCreatePropertyMap( Property::Map& map ) const;
67
68 protected:
69
70   /**
71    * @brief Constructor.
72    *
73    * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object
74    */
75   ColorVisual( VisualFactoryCache& factoryCache );
76
77   /**
78    * @brief A reference counted object may only be deleted by calling Unreference().
79    */
80   virtual ~ColorVisual();
81
82   /**
83    * @copydoc Visual::Base::DoSetProperties
84    */
85   virtual void DoSetProperties( const Property::Map& propertyMap );
86
87   /**
88    * @copydoc Visual::Base::DoSetOnStage
89    */
90   virtual void DoSetOnStage( Actor& actor );
91
92   /**
93    * @copydoc Visual::Base::OnSetTransform
94    */
95   virtual void OnSetTransform();
96
97 public:
98
99   /**
100    * Set the color for rendering.
101    * @param[in] color The color to be rendered.
102    */
103   void SetColor( const Vector4& color );
104
105 private:
106   /**
107    * @brief Initialize the renderer with the geometry and shader from the cache, if not available, create and save to the cache for sharing.
108    */
109   void InitializeRenderer();
110
111 private:
112
113   // Undefined
114   ColorVisual( const ColorVisual& colorRenderer );
115
116   // Undefined
117   ColorVisual& operator=( const ColorVisual& colorRenderer );
118
119 private:
120
121   Vector4 mMixColor;
122   Property::Index mMixColorIndex;
123
124 };
125
126 } // namespace Internal
127
128 } // namespace Toolkit
129
130 } // namespace Dali
131
132 #endif /* DALI_TOOLKIT_INTERNAL_COLOR_VISUAL_H */